
function showImage(xx,yy,allpath,alt) {
       var imgwin;
       if (imgwin == null || imgwin.closed) {
	imgwin=window.open('about:blank',Math.floor(Math.random()*100)+1,'width='+xx+',height='+yy+',resizable=yes,toolbar=no,scrollbars=yes,menubar=no');
    } else {
            imgwin.document.clear();
    }
	
	imgwin.document.write("<html><head><title>www.metzavod.ru</title><script language='JavaScript1.2' src='img.js' ></script><LINK href=Style/style.css type=text/css rel=stylesheet></head><body bgcolor=#FFFFFF><center><img src="+allpath+" border=0 alt=''><br></body></html>");
}

