function wopen(url, w_alt, w_width, w_height){
gWindow = window.open(url,"popup_window","menubar=no,toolbar=no,scrollbars=no,status=yes,width="+w_width+",height="+w_height+",top=20,left=20");
gWindow.focus();
if (gWindow){
gWindow.document.open();
gWindow.document.write("<html><head><title>"+w_alt+"</title></head><body style='background-color:#FFFFFF; margin:0; padding:0;'><a href='javascript:void(0);' onclick='javascript:window.close();'><img src="+url+" id='popup' border='0' alt='"+w_alt+"' onload=\"ReWin('popup');\"></a><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();
}
}
