// JavaScript Document
OpenWindow = null;
function doCloseWin()
{
if (OpenWindow)
{OpenWindow.close();}
}

function zoom(url_img,w,h,zagolovok)
{
//	if (OpenWindow)
//	{OpenWindow.close();}
		
	if (!OpenWindow || (OpenWindow.closed))
	{
	www=""+url_img;
	w=w+50;
	h=h+120;
	OpenWindow=window.open('', 'xxx', 'width='+w+',height='+h+'resizable=yes,scrollbars=no,top=0,left=0');
	OpenWindow.document.write("<HTML>")
	OpenWindow.document.write("<TITLE>")
	OpenWindow.document.write("Русский Музей | ")
	OpenWindow.document.write(zagolovok)
	OpenWindow.document.write("</TITLE>")
	OpenWindow.document.write("<HEAD>")
	OpenWindow.document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8">')
	OpenWindow.document.write("</HEAD>")
	OpenWindow.document.write('<BODY BGCOLOR=#FEF2BB TEXT=#002D4D LINK=#A9832E VLINK=#633621 ALINK=#633621 BGCOLOR="#FFF3BD" TOPMARGIN=0 MARGINHEIGHT=0>')
	OpenWindow.document.write("<br><CENTER>")
	OpenWindow.document.write('<img src="')
	OpenWindow.document.write(url_img)
	OpenWindow.document.write('" alt="')
	OpenWindow.document.write(zagolovok)
	OpenWindow.document.write('" border="0"><br>')
	OpenWindow.document.write('<p>')
	OpenWindow.document.write(zagolovok)
	OpenWindow.document.write('</p><p><a href="" onclick="javascript:window.close()">закрыть окно</a></p>')
	OpenWindow.document.write("</CENTER>")
	OpenWindow.document.write("</BODY>")
	OpenWindow.document.write("</HTML>")
	OpenWindow.document.close()
	}
}


// для английской версии
function zoom_eng(url_img,w,h,zagolovok)
{
//	if (OpenWindow)
//	{OpenWindow.close();}
		
	if (!OpenWindow || (OpenWindow.closed))
	{
	www=""+url_img;
	w=w+50;
	h=h+120;
	OpenWindow=window.open('', 'xxx', 'width='+w+',height='+h+'resizable=yes,scrollbars=no,top=0,left=0');
	OpenWindow.document.write("<HTML>")
	OpenWindow.document.write("<TITLE>")
	OpenWindow.document.write("The State Russian Museum | ")
	OpenWindow.document.write(zagolovok)
	OpenWindow.document.write("</TITLE>")
	OpenWindow.document.write("<HEAD>")
	OpenWindow.document.write('<meta http-equiv="Content-Type" content="text/html; charset=koi8-r">')
	OpenWindow.document.write("</HEAD>")
	OpenWindow.document.write('<BODY BGCOLOR=#FEF2BB TEXT=#002D4D LINK=#A9832E VLINK=#633621 ALINK=#633621 BGCOLOR="#FFF3BD" TOPMARGIN=0 MARGINHEIGHT=0>')
	OpenWindow.document.write("<br><CENTER>")
	OpenWindow.document.write('<img src="')
	OpenWindow.document.write(url_img)
	OpenWindow.document.write('" alt="')
	OpenWindow.document.write(zagolovok)
	OpenWindow.document.write('" border="0"><br>')
	OpenWindow.document.write('<p>')
	OpenWindow.document.write(zagolovok)
	OpenWindow.document.write('</p><p><a href="" onclick="javascript:window.close()">close</a></p>')
	OpenWindow.document.write("</CENTER>")
	OpenWindow.document.write("</BODY>")
	OpenWindow.document.write("</HTML>")
	OpenWindow.document.close()
	}
}
