var total;

function init() {
	
		i = 1;
		document.getElementById("p" + i).style.display = 'block';
		document.getElementById("ph" + i).className = 'act';
	
}

function changeImage(num) {
	for (i = 1; i <= total; i++) {
		if (i == num) {
			document.getElementById("p" + i).style.display = 'block';
			document.getElementById("ph" + i).className = 'act';
		} else {
			document.getElementById("p" + i).style.display = 'none';
			document.getElementById("ph" + i).className = 'noact';
		}
	}
}



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+0;
	h=h+0;
	OpenWindow=window.open('', 'xxx', 'width='+w+',height='+h+'resizable=yes,scrollbars=no,top=0,left=0');
	OpenWindow.document.write("<HTML>")
	OpenWindow.document.write("<HEAD>")
	OpenWindow.document.write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">')
	OpenWindow.document.write("<TITLE>")
	OpenWindow.document.write(zagolovok)
	OpenWindow.document.write("</TITLE>")
	OpenWindow.document.write('<link type="text/css" href="/css/cms/our_style.css" rel="stylesheet">')
	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('">')
	OpenWindow.document.write("</BODY>")
	OpenWindow.document.write("</HTML>")
	OpenWindow.document.close()
	}
}
