<!--
// copyright 2002 by wag 
function fenster(url,text,breit,hoch,color){ 
var fenster = window.open('url='+url+'','','width='+breit+',status=no,height='+hoch+',left=50,top=50,scrollbars=no,dependent=yes') 
if (fenster!=null){ 
	fenster.document.open() 
	fenster.document.write("<html><head>") 
	fenster.document.write("<title>"+ text + "</title>")
	fenster.document.write('</head><body bgcolor=#'+ color +' leftmargin="0" marginwidth="0" marginheight="0" topmargin="0"><img src='+ url+'></body></html>')
	fenster.document.close() 
	} 
}
//-->
