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,top=50,left=50,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_card(url, w_name, w_width, w_height){
menubar    ='no';
scrollbars = 'yes';
gWindow = window.open(url, 'photo_window', "menubar="+menubar+",toolbar=no,scrollbars="+scrollbars+",status=no,top=50,left=50,width="+w_width+",height="+w_height);
gWindow.focus();
}
