function ShowPic(imageName,imageWidth,imageHeight,alt) {

//	alt=alt+" - Okno zavete klepnutm / Click window to close";
	alt="Copyright by Mistress Adrienne";
	bgcolor="#000000";

	var w = screen.width;
	var h = screen.height;

	var posTop = (scrHeight-imageHeight)/2;
	var posLeft = ((w-imageWidth)/2);
	var scrHeight = imageHeight;
	var scrWidth = imageWidth;
	
	newWindow = window.open("","newWindow","width="+scrWidth+",height="+scrHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor='+bgcolor+' onBlur="self.close()" onClick="self.close()">');  
//	newWindow.document.write('<html><title>'+alt+'</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor='+bgcolor+'>');  
	newWindow.document.write('<table width='+imageWidth+' border="0" cellspacing="0" cellpadding="0" align="center" height='+scrHeight+' ><tr><td>');
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt=\"Click\&nbsp\;screen\&nbsp\;to\&nbsp\;close.\" >'); 
//	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt=\"Copyright\&nbsp\;by\&nbsp\;Mistress\&nbsp\;Adrienne\" >'); 
	newWindow.document.write('</td></tr></table></body></html>');
	newWindow.document.close();
	newWindow.focus();
}
