﻿// JScript File
// window.history.forward(1);
window.history.go(+1); 

function poponload(URL)
{
    testwindow = window.open (URL,"PersonalInfo",
        "scrollbars=1,width=500,height=250,left=480,top=140");
}

function ClearZeroValue(control)
{
    if (control.value == "0")
    {
        control.value ="";
    }
    
    control.select();
}

function AddZeroValue(control)
{
    if (control.value == "")
    {
        control.value ="0";
    }
}
function PopUpDisclaimer()
{
  window.open('Disclaimer.aspx','Disclaimer','location=no,menubar=0,toolbar=no,status=yes,scrollbars=yes,left=100,top=100,width=300,height=150,resizable=no');
}

function OpenPrintPage()
{
  window.open ("Print.aspx","mywindow","location=no,menubar=0,toolbar=no,status=yes,scrollbars=yes,width=850,height=500"); 
}

function Print()
{
  window.history.forward(1);
  window.print();
}

function PopUpWIA()
{
  window.open('WIA.aspx','WIA','location=no,menubar=0,toolbar=no,status=yes,scrollbars=yes,left=100,top=100,width=350,height=200,resizable=no');
}

function PopUpHCA()
{
  window.open('HCA.aspx','HCA','location=no,menubar=0,toolbar=no,status=yes,scrollbars=yes,left=100,top=100,width=350,height=200,resizable=no');
}

function PopUpHCBS()
{
  window.open('HCBS.aspx','HCBS','location=no,menubar=0,toolbar=no,status=yes,scrollbars=yes,left=100,top=100,width=350,height=200,resizable=no');
}

function PopUpEHS()
{
  window.open('EHS.aspx','EHS','location=no,menubar=0,toolbar=no,status=yes,scrollbars=yes,left=100,top=100,width=350,height=200,resizable=no');
}