var windowW=(screen.width/2)-50
var windowH=screen.height-100
var windowX=(screen.width/2)+50
var windowY=0
s = "scrollbars=yes,width="+windowW+",height="+windowH+",left="+windowX+",top="+windowY;

function openwindow() {
         window.open("../help.htm","help",s);
}

function _reset(){
         document.forms[1].reset();
}

function _submitform(numberofform){
         document.forms[numberofform].submit();
}

function custom_print() {
    if (document.all) {
        if (navigator.appVersion.indexOf("5.0") == -1) {
            var OLECMDID_PRINT = 6;
            var OLECMDEXECOPT_DONTPROMPTUSER = 2;
            var OLECMDEXECOPT_PROMPTUSER = 1;
            var WebBrowser = "<OBJECT ID=\"WebBrowser1\" WIDTH=0 HEIGHT=0 CLASSID=\"CLSID:8856F961-340A-11D0-A96B-00C04FD705A2\"></OBJECT>";
            document.body.insertAdjacentHTML("beforeEnd", WebBrowser);
            WebBrowser1.ExecWB(6, 2);
            WebBrowser1.outerHTML = "";
        } else {
            self.print();
        }
    } else {
        self.print();
    }
}

function skip () { this.blur(); }
function toggleSelect (select) {
  if (!select.disabled) {
    select.disabled = true;
    if (!document.all && !document.getElementById) {
      select.oldOnFocus =
        select.onfocus ? select.onfocus : null;
      select.onfocus = skip;
    }
  }
  else {
    select.disabled = false;
    if (!document.all && !document.getElementById) {
      select.onfocus = select.oldOnFocus;
    }
  }
}
