// JavaScript Document
OpenWindow = null;
function doCloseWin()
{
if (OpenWindow)
{OpenWindow.close();}
}
function zoom(url_img,wid,heid,zagolovok)
{
	if (OpenWindow)
	{OpenWindow.close();}
		
	if (!OpenWindow || (OpenWindow.closed))
	{
	www=""+url_img;
	OpenWindow=window.open('', 'xxx', 'width='+wid+',height='+heid+'resizable=yes,scrollbars=no,top=50,left=50');
	OpenWindow.document.write("<HTML>")
	OpenWindow.document.write("<TITLE>")
	OpenWindow.document.write(zagolovok)
	OpenWindow.document.write("</TITLE>")
	OpenWindow.document.write('<BODY topmargin="0" leftmargin="0">')
	OpenWindow.document.write("<CENTER>")
	OpenWindow.document.write('<link href="/style.css" type="text/css" rel="stylesheet">')
	OpenWindow.document.write('<img src="')
	OpenWindow.document.write(url_img)
	OpenWindow.document.write('" alt="" border="0">')
	OpenWindow.document.write("</CENTER>")
	OpenWindow.document.write("</BODY>")
	OpenWindow.document.write("</HTML>")
	OpenWindow.document.close()
	}
}

