/*  -- Opens a popup window to a specific height and width --  */
function popWindow(thePage,winWidth,winHeight) {
    w1 = window.open(thePage,'w1','width='+winWidth+',height='+winHeight+',status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
    if(window.focus) w1.window.focus();
}