var imgUrl="", imgTtl="", winTtl="", imgWidth="", imgHeight="";
function passUrl(imgUrl, imgTtl, winTtl, imgWidth, imgHeight){
	popup = window.open("","","height=''");
	popup.document.title="";
	popup.document.open();
	popup.focus();
	with(popup){
		document.write('<html><head>');
		document.write('<title>'+winTtl+'</title>');
		document.write('<scr' + 'ipt type="text/javascr' + 'ipt" language="JavaScr' + 'ipt">');
		document.write("function blur() { window.close(); } ");
		document.write("function groesse(x,y) { window.resizeTo(x,y) } ");
		document.write('</scr' + 'ipt>');
		document.write('<link rel="stylesheet" href="css/style.css" type="text/css" />');
		document.write('</head>');
		document.write('<body onLoad=groesse('+imgWidth+','+imgHeight+') onBlur=blur() style="margin:0 !important;">');
		document.write('<center>');
		document.write('<img src="'+imgUrl+'" alt="'+imgTtl+'" /><br />');
		document.write('<a href="javascript:blur()">schliessen</a>');
		document.write('<div style="border-top: 1px dotted #b69e7c;"></div>');
		document.write('<div id="copy" class="copypopup">&copy; 2008 - 2009 All Rights Reserved SchnickSchnackSchatz</div>');
		document.write('</center>');
		document.write('</body>');
		document.write('</html>');
	}
	popup.document.close();
}