<!--
function openPrintWin(url)
{
	imgW=800;
	imgH=600;
	myFotWin=open(url,"kia_print","height="+imgH+",width="+imgW+",top=50,left=100,toolbar=no,status=yes,menubar=no,resizable=yes,scrollbars=yes");
}

function popUp(imgPath,imgWeight,imgHeight){
	imgW=imgWeight;
	imgH=imgHeight;
	myFotWin=open("","","height="+imgH+",width="+imgW+",top=50,left=50,toolbar=no,status=yes,menubar=no,resizable=yes,scrollbars=no");
	myFotWin.document.open();
	myFotWin.document.write("<html><head><title>:: Images </title>");
	myFotWin.document.write("<style>a{text-decoration:none; font:bold 11px Verdana,Arial,sans-serif; color:#999999; display:block; text-align:center;} a:hover {text-decoration:underline;}</style>");
	myFotWin.document.write("<script>function getImgSize() {");
	myFotWin.document.write("var a,b; a=document.images['myImg'].width;");
	myFotWin.document.write("b=document.images['myImg'].height; b=b+70; self.resizeTo(a,b);};");
	myFotWin.document.write("</script></head>");
	myFotWin.document.write("<body leftMargin='0' topMargin='0' marginheight='0' marginwidth='0' align=center>");
	myFotWin.document.write('<img src="' + imgPath + '" border=0 name="myImg" align=center onload="getImgSize();"><br>');
	myFotWin.document.write("<a href='javascript:close();' title='закрыть окно'>");
	myFotWin.document.write("<div width=100%>Закрыть окно</div></a>");
	myFotWin.document.write("</body></html>");
	myFotWin.document.close();
}

function change_visible (id)
{
  for(var i=0;i<4;i++){if (id!=('razd'+(i+1))) {document.getElementById('razd'+(i+1)).style.display='none'} else 
  {
  if (document.getElementById(id).style.display!='block')
    document.getElementById(id).style.display='block'
  else
    document.getElementById(id).style.display='none';}
  }
}
function reload_page()
{
for(var i=0;i<4;i++)
{
document.getElementById('razd'+(i+1)).style.display='none'
}
}

-->