<!--
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";
  CharCountOff = new Image();
  CharCountOff.src = "/images/charcountoff.gif";
  CharCountOn = new Image();
  CharCountOn.src = "/images/charcounton.gif";
  VerifyOff = new Image();
  VerifyOff.src = "/images/verifyoff.gif";
  VerifyOn = new Image();
  VerifyOn.src = "/images/verifyon.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 CharCount() {
  var charString=document.sForm.tDescription.value;
  alert(charString.length + " Characters.");
  document.sForm.tDescription.focus()
  }
function swCancel(Loc) {
  if(confirm("Confirm Cancel. . ."))
    document.location=Loc;
  return;
  }
function swValidate(OP,ID,SC) {
  var isValid;
  checkOK   ="0123456789.-()";
  var numOK ="0123456789";
  var alphaOK="ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  var missinginfo="";
  if(document.sForm.tSiteUrl.value=="")
    missinginfo += "\n     -  Site URL";
  if(document.sForm.tSiteTitle.value=="")
    missinginfo += "\n     -  Site Title";

  var chkDesc=document.sForm.tDescription.value;
  if(document.sForm.tDescription.value=="")  {
    missinginfo += "\n     -  Site Description";
  }
  if(chkDesc.length>255)  {
    missinginfo += "\n     -  Please limit your Description to 255 Characters.";
  }
  if((document.sForm.teMail.value == "") ||
     (document.sForm.teMail.value.indexOf('@') == -1) ||
     (document.sForm.teMail.value.indexOf('.') == -1)) {
    missinginfo += "\n     -  Contact\'s e-Mail address";
    missinginfo += "\n        -FORM: contact@home.com";
  }
  if (missinginfo != "") {
    missinginfo="You must provide the following information:\n" +
    "__________________________________\n" +
    missinginfo + "\n__________________________________\n" +
    "\n      Please re-enter and submit again!";
    alert(missinginfo);
    return;
  }
  document.sForm.OP.value=OP;
  document.sForm.ID.value=ID;
  document.sForm.submit();
   }
function swFeedback(OP) {
  var win2 = window.open("/contact/sendmsg.html", "sendMsg", "status=no,toolbar=no,menubar=no,resizable=no,scrollbars=no,width=560,height=400,top=60,left=100")
}
//-->
