function showpicture(image, title){
		window.open('../util/showpicture.php?image='+image+'&title='+title,'','Toolbar=0,Location=0,Directories=0,Status=0,Menubar=0,Scrollbars=0,Resizable=0,Width=650,Height=500,left=20, top=20');
	}
	

function imgopen(imgf,w,h,ww,hh,z,c)
{
outf="<html>"
 +"<head>"
 +"<title>Кратон / Каталог продукции</title>"
 +"</head>"
 +"<body bgcolor="+c+" leftmargin="+z+" marginwidth="+z+" topmargin="+z+" marginheight="+z+">"
 +"<p>"
 +"<img src=\""+imgf+"\"width="+ww+" height="+hh+" >"
 +"</p>"
 +"</body>"
 +"</html>";
iwin=window.open(imgf,"1", "width="+ w +",height="+ h +",top=20,left=20,toolbar=no,status=yes");
iwin.document.write(outf);
iwin.resizeTo(w,h);
iwin.focus();
}


navHover = function()
{
	var lis = document.getElementById("navmenu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++)
    {
		lis[i].onmouseover=function()
        {
			this.className+=" iehover";

		}
		lis[i].onmouseout=function()
        {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);

