var myWin = null;
function openWin(url, name, width, height, title) {
myWin=open("", name, ',width=' + width + ',height=' + height);
myWin.document.write("<html><head><meta http-equiv='Content-Type' content='text/html; charset=windows-1251'><title>"+title+"</title></head><body topmargin=0 leftmargin=0 scroll=no>");
myWin.document.write('<img src=' + url + ' alt=\'' + title + '\'></body></html>');
myWin.document.close();  
}

