<script type="text/javascript">
<!--
function Showpopup(Bild,Titel,Breite,Hoehe,FensterHoehe) {
MarginLeft = (screen.width - Breite ) /2;
MarginTop = (screen.height - FensterHoehe) /2;
Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left='+MarginLeft+',top='+MarginTop+',height='+FensterHoehe+',width='+Breite;
Popup = window.open('','',Optionen)
with (Popup) {
document.writeln('<html><head><title>' + Titel + '</title><style type="text/css"><!-- body {background-color:<?php echo $bgcolor; ?>;} a,a:link,a:visited,a:active {color:<?php echo $fontcolor; ?>;font-family:Arial,Helvetica,sans-serif;text-decoration:underline;} a:hover {color:<?php echo $fontcolor; ?>;font-family:Arial,Helvetica,sans-serif;text-decoration:none;} //--></style></head>');
document.writeln('<body topmargin="0" leftmargin="0" marginwidth=0 marginheight=0><img src="'+Bild+'" alt="'+Titel+'" width="'+Breite+'" height="'+Hoehe+'"><div style="text-align:center"><a href="javascript:window.close()">Fenster schließen</a></div></body></html>')
}
}
//-->
</script>