<!--
function popupWindow(url,w,h,bars,rez,name){
    var popup, b = "yes", r = "yes";
    if(bars=="no") b = "no";
    if(rez=="no") r = "no";
    popup = window.open(url,name,"toolbar=no,left=50,top=50,directories=no,status=no,menubar=no,"+"scrollbars="+b+",resizable="+r+",width="+w+",height="+h);
    popup.focus();
}
//-->
