<!--
function openWin(theURL,winName,features) {
  w=window.open(theURL,winName,features);
  w.focus();
}

function popWindow(url, width, height) {
        var Win = window.open(url,"popWindow",'width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=no,status=no' );
}

//-->
