function wopen(url, w_name, w_width, w_height){
gWindow = window.open(url, 'photo_window', "menubar=no,toolbar=no,scrollbars=no,status=no,top=50,left=50,width="+w_width+",height="+w_height);
gWindow.focus();
gWindow.document.open();
gWindow.document.write("<html><title>"+ w_name +"</title><body style='background-color:#FFFFFF; margin:0'><div><a style='cursor:pointer' onClick='javascript:window.close()'><img src="+url+" width="+w_width+" height="+w_height+" border=0 alt=\"кликните на изображение, чтобы закрыть окно\" id='popup' onload=\"ReWin('popup');\"></a></div><SCRIPT LANGUAGE='JavaScript' TYPE='text/javascript'>function ReWin (ImgName){imgW =document.getElementById(ImgName).width;imgH = document.getElementById(ImgName).height; imgW+=10; imgH+=49; window.resizeTo(imgW, imgH);}</SCRIPT></body></html>");
gWindow.document.close();
}
