function mypopup(mywidth, myheight, picurl, text) {
	mywindow = window.open('', '', 'width='+mywidth+',height='+myheight);
	mywindow.document.open('text/html');
	
	mywindow.document.write('<html>');
	mywindow.document.write('<head>');
	mywindow.document.write('<title>Die Vampire unter den Pflanzen</title>');
	mywindow.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	mywindow.document.write('<link rel="stylesheet" href="style.css">');
	mywindow.document.write('</head>');

	mywindow.document.write('<body bgcolor="#FFFDE8" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
	mywindow.document.write('<center>');
	mywindow.document.write('<a href="javascript:window.close();"><img src="'+picurl+'" border="0"></a>');
	mywindow.document.write('</center>');
	mywindow.document.write(text);
	mywindow.document.write('</body>');
	mywindow.document.write('</html>');
		
	mywindow.document.close();
}