// User Login routines
function LogonUser() {
  var sts;
  sts=window.showModalDialog('admin/SISAlogin.asp', ''
   , 'dialogWidth:350px;dialogHeight:200px;center:yes;status:no;');
  if (sts) {
    document.location.reload(true);
    window.open('HomePage.asp','main');
  }
}
function LogoffUser() {
  var sts;
  sts=window.showModalDialog('admin/SISAlogoff.asp', ''
   , 'dialogWidth:350px;dialogHeight:120px;center:yes;status:no;');
  if (sts) {
    document.location.reload(true);
    window.open('HomePage.asp','main');
  }
}