function popUp(page, width, height) {    
     windowprops = "height="+height+",width="+width+",location=no," + "scrollbars=no,menubars=no,toolbars=no,resizable=no"; 
     window.open(page, "page", windowprops);
}

function popUp2(page, width, height) {    
     windowprops = "height="+height+",width="+width+",location=no," + "scrollbars=no,menubars=no,toolbars=no,resizable=no"; 
     window.open(page, "help", windowprops);
}

