function zoomImg(img,w,h,title)
{
h1 = h + 25;
zoom = window.open('','_blank','width=' + '800' + ',height=' + '600' + ',toolbar=0,scrollbars=2,menubar=0,resizable=1');
zoom.document.open();
zoom.document.writeln("<html><head>");
zoom.document.writeln("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1251\">");
zoom.document.writeln("<title>" + title + " </title></head>");
zoom.document.writeln("<style> html, p, td { color: white; font: 8pt normal Veranda,sans-serif }");
zoom.document.writeln("a { color: white } a:hover { color: black } a:visited { color: blue } </style>");
zoom.document.writeln("<body bgcolor=\"#C5C5C5\" leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\">");
zoom.document.writeln("<table width=\"100%\" height=\"100%\" align=\"center\" valign=\"center\"><tr><td width=\"100%\" height=\"100%\" align=\"center\" valign=\"center\"><a href=\"javascript:window.close()\"><img src=\"" + img + "\" border=\"0\" alt=\"" + title + "\">");
zoom.document.writeln("<center><div style=\"margin-top: 5px\">закрыть окно</div></a></center>");
zoom.document.writeln("</tr></td></table></body></html>");
zoom.document.close();
}

function wopen () {open('localhost');}
function load() {
parent.location.href= 'http://localhost';
}

