// 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+10;
	h=h+10;
	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>')
	OpenWindow.document.write('<img src="')
	OpenWindow.document.write(url_img)
	OpenWindow.document.write('" alt="')
	OpenWindow.document.write(zagolovok)
	OpenWindow.document.write('" border="0">')
	OpenWindow.document.write("</BODY>")
	OpenWindow.document.write("</HTML>")
	OpenWindow.document.close()
	}
}


// для английской версии
function zoom_ukr(url_img,w,h,zagolovok)
{
//	if (OpenWindow)
//	{OpenWindow.close();}
		
	if (!OpenWindow || (OpenWindow.closed))
	{
	www=""+url_img;
	w=w+10;
	h=h+10;
	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=koi8-r">')
	OpenWindow.document.write("</HEAD>")
	OpenWindow.document.write('<BODY>')
	OpenWindow.document.write('<img src="')
	OpenWindow.document.write(url_img)
	OpenWindow.document.write('" alt="')
	OpenWindow.document.write(zagolovok)
	OpenWindow.document.write('" border="0">')
	OpenWindow.document.write("</BODY>")
	OpenWindow.document.write("</HTML>")
	OpenWindow.document.close()
	}
}
