function print(pageURL)
        {
        width=750 ;
        height=550 ;
        xposition=50; yposition=50;
        args = "width=" + width + ","
        + "height=" + height + ","
        + "location=0,"
         + "menubar=1,"
         + "resizable=1,"
         + "scrollbars=1,"
         + "status=0,"
         + "titlebar=0,"
         + "toolbar=0,"
          + "hotkeys=0,"
          + "fullscreen=0,"
           + "left=" + xposition + ","
           + "top=" + yposition;
           aPopup=window.open(pageURL,"Print",args);
        if (parseInt(navigator.appVersion) >= 4) { aPopup.window.focus(); }
        }
