<!--
// copyright 2002 by wag
function fenster(url,text,breit,hoch,color){
var fenster = window.open('url='+url+'','','width='+breit+',height='+hoch+',left=150,top=200,statusbar=no,scrollbars=no,menubar=no,dependent=no')
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()
	}
}
//-->

