function makewin (targurl, width, height, winopts) {
    
   allopts = "width=" + width + ",height=" + height + "," + winopts+",scrollbars=no";
   var tempref = window.open(targurl, "popupwindow", allopts);

}
