<!--
var browserName = navigator.appName;
var browserVer = parseInt(navigator.appVersion);
if((browserName == "Netscape" && browserVer >= 4) || (browserName == "Microsoft Internet Explorer" && browserVer >= 4))
  version = 4;
else
  if((browserName == "Netscape" && browserVer >= 3) || (browserName == "Microsoft Internet Explorer" && browserVer >= 3))
    version = 3;
  else version = 2;
if (version >= 3) {
  iXLogoOn = new Image();
  iXLogoOn.src = "/images/ixlogoon.gif";
  iXLogoOff = new Image();
  iXLogoOff.src = "/images/ixlogooff.gif";
  SubmitOff = new Image();
  SubmitOff.src = "/images/submitoff.gif";
  SubmitOn = new Image();
  SubmitOn.src = "/images/submiton.gif";
  ContinueOff = new Image();
  ContinueOff.src = "/images/continueoff.gif";
  ContinueOn = new Image();
  ContinueOn.src = "/images/continueon.gif";
  CancelOff = new Image();
  CancelOff.src = "/images/canceloff.gif";
  CancelOn = new Image();
  CancelOn.src = "/images/cancelon.gif";
}
function ImgOn(imgName,imgSrc) {
if (version >= 3) {
    document.images[imgName].src=eval(imgSrc+".src");
  }
}
function ImgOff(imgName,imgSrc) {
if (version >= 3) {
    document.images[imgName].src=eval(imgSrc+".src");
  }
}
function swCancel(LOC) {
  document.location=LOC;
}
function swPassword(OP,LOC) {
  var missinginfo="";
  if(document.sForm.tLoginName.value == "")  {
    missinginfo += "\n  Login Name";
    missinginfo += "\n  - Either your Member Alias or eMail";
  }
  if (missinginfo != "") {
    missinginfo="You must provide the following information:\n" +
    "__________________________________\n" +
    missinginfo + "\n__________________________________\n" +
    "\n      Please correct and try again!";
    alert(missinginfo);
    document.sForm.tLoginName.focus();
    return;
  }
  document.sForm.SRC.value=LOC;
  document.sForm.OP.value=OP;
  document.sForm.submit();
}
//-->
