/* Author: Robert Pölzl */
function popupbild(bildsrc,b,h,breite,hoehe,titel) {
var t=((screen.height - hoehe) / 2);
var l=((screen.width - breite) / 2);
var look='width='+breite+',height='+hoehe+',top='+t+',left='+l+',resizable=no,screenY=0,status=yes'
var tit='<TITLE>'+titel+'</TITLE>'
PreView = window.open("", "", look);
PreView.document.open();
PreView.document.write("<HTML><HEAD>");
PreView.document.write(tit);
PreView.document.write("<style>"); 
PreView.document.write("form { font: 12pt Times New Roman; color: black }");
PreView.document.write("</style>"); 
PreView.document.write("</HEAD><BODY BGCOLOR=FFFFFF TEXT=000000>");
PreView.document.write("<FORM><CENTER>");
PreView.document.write("<IMG HSPACE=0 VSPACE=0 " + "SRC='" + bildsrc + "' + width='"+b+"' + height='"+h+"' + alt='"+titel+"' >");
PreView.document.write("</CENTER>");
PreView.document.write("</BODY></HTML>");
PreView.document.close();
}




