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

// JavaScript ImageViewer by Ostashow K.N.  E-mail me kostja_K_N@mail.ru

	res_x = screen.width;
	res_y = screen.height;
	leftPos = Math.floor(res_x/2 - imageWidth/2); 
	topPos  = Math.floor(res_y/2 - imageHeight/2);

//	topPos  = 30;

	
	alt = alt+" ";
	title = alt;	


	newWindow = window.open("","newWindow","resizable=no,scrollbars=no,width="+imageWidth+",height="+imageHeight+",left="+leftPos+",top="+topPos+"\"");
	newWindow.document.open();

	newWindow.document.write('<html><title>'+title+'</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="white" onClick="self.close()">');  
	newWindow.document.write('<table width='+imageWidth+' border="0" cellspacing="0" cellpadding="0" align="center" height='+imageHeight+' ><tr><td>');
	newWindow.document.write('<a href="javascript:window.close();"><img border=0 src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt=\"Ùåëêíèòå&nbsp;ïî&nbsp;êàðòèíêå,&nbsp;÷òîáû&nbsp;çàêðûòü&nbsp;îêíî\" ></a>'); 
	newWindow.document.write('</td></tr></table></body></html>');

	newWindow.document.close();
	newWindow.focus();
	}


