function wopen(url, w_name, w_width, w_height, f_html){
menubar    = (f_html)? 'yes' : 'no';
scrollbars = (f_html)? 'yes' : 'no';
gWindow = window.open(url, 'photo_window', "menubar="+menubar+",toolbar=no,scrollbars="+scrollbars+",status=no,width="+w_width+",height="+w_height);
gWindow.focus();
if (!f_html) {
gWindow.document.open();
gWindow.document.write("<html><title>"+ w_name +"</title><body bgcolor=#ffffff marginheight=0 marginwidth=0 leftmargin=0 topmargin=0><img src="+url+" width="+w_width+" height="+w_height+" border=0 alt=></body></html>");
gWindow.document.close();
}
}

/*


function wopen(url, w_name, w_alt, w_width, w_height, topWin, leftWin, f_html){
menubar    = (f_html)? 'yes' : 'no';
scrollbars = (f_html)? 'yes' : 'no';
gWindow = window.open(url,w_name,"menubar="+menubar+",toolbar=no,scrollbars="+scrollbars+",status=no,width="+w_width+",height="+w_height+",top="+topWin+",left="+leftWin);
gWindow.focus();
if (gWindow){
        gWindow.document.open();
        gWindow.document.write("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN''http://www.w3.org/TR/html4/loose.dtd'><meta name='copyright' Content='Powered by Intercom'><meta name='keywords' content=''><meta name='description' content=''><html><head><title>"+w_alt+"</title></head><body style='background-color:#FFFFFF; margin:0; padding:0; margin-top:20px;'><center><a href='#' onclick='javascript:window.close();'><img src="+url+" id='popup' border='0' alt='Закрыть окно.' onload=\"ReWin('popup');\"></a></center><SCRIPT LANGUAGE='JavaScript' TYPE='text/javascript'>function ReWin (ImgName){imgW =document.getElementById(ImgName).width;imgH = document.getElementById(ImgName).height;imgW+=50;imgH+=70;window.resizeTo(imgW, imgH);}</SCRIPT></body></html>");
        gWindow.document.close();
}
} */
