function show_img(imageName,imageWidth,imageHeight,title)
	{	// JavaScript ImageViewer by Ostashow K.N.  E-mail me kostja_K_N@mail.ru	// alert (imageWidth+" x "+imageHeight);	frame = 40;	res_x = screen.width;	res_y = screen.height;		leftPos = Math.floor(res_x/2 - (imageWidth/2+frame)); 	topPos  = Math.floor(res_y/2 - (imageHeight/2+frame));	if (navigator.userAgent.indexOf("Opera") != "-1")		{		topPos = 20;		}	winWidth  = imageWidth+frame;	winHeight = imageHeight+frame;//	alert (winWidth+" x "+winHeight);			cell_pad = Math.floor(frame/2);		
	newWindow = window.open("","newWindow","resizable=no,scrollbars=no,width="+winWidth+",height="+winHeight+",left="+leftPos+",top="+topPos);
	newWindow.document.open();

	newWindow.document.write('<html><head><title>'+title+'</title></head>');
	newWindow.document.write('<body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="#666666" onClick="self.close()">');  
	newWindow.document.write('<table width='+imageWidth+' border="0" cellspacing="0" cellpadding="'+cell_pad+'" 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>');

	newWindow.document.write('</body></html>');

	newWindow.document.close();
	newWindow.focus();
	}
