function openWin(_width, _height, _img) 
{
width="width=" + _width;
height="height=" + _height;
myWin= open("", "asdsadsad", width + ',' + height + ',status=no,toolbar=no,menubar=no');
myWin.document.open();
myWin._img = _img;
myWin.document.write("<HTML>");
myWin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">'); 
myWin.document.write("<BODY TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 BGCOLOR=#E1E1E1>");
myWin.document.write("<CENTER><TABLE height=100%><TR><TH>");
myWin.document.write("<script language=JavaScript> {");
myWin.document.write("document.write('<IMG BORDER=1 SRC=' + _img + '>')");
myWin.document.write("} </SCRIPT>"); 
myWin.document.write("</TH></TR></TABLE>");
myWin.document.close();
}