function f5_picster(filename,width,height) {
	var n = 100;
	var windowname = "pic" + Math.round(Math.random()*n);
	height = parseInt(height) -1 ;
	width = parseInt(width) + 17;
	var picster = window.open('',windowname,'width='+width+',height='+height+',toolbar=no,resizable=yes,scrollbars=yes,location=no,status=no,menubar=no');
	picster.document.writeln('<html>')
	picster.document.writeln('<head><title>bellyart - Fotos: © anemel</title><meta name="Robots" content="INDEX">')
	picster.document.writeln('<script src="noclick.js" type="text/javascript"></script></head>')	
	picster.document.writeln('<body onBlur="self.close();" bgcolor="#f8eae4" text="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" link="#CCCCCC" vlink="#CCCCCC" alink="#CCCCCC">')
	picster.document.writeln('<a href="javascript:self.close();"><img src="'+filename+'" border="0" title="Klicken schliesst das Fenster..." alt="Klicken schliesst das Fenster..."></a>')
	picster.document.writeln('</body>')
	picster.document.writeln('</html>')
   picster.focus()
	picster.moveTo(10,10)
}
