<!--
browserName = navigator.appName;
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";
}
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 swCompose(OP) {
  document.nForm.OP.value=OP;
  document.nForm.submit();
}
function swShowNew(OP,PG)  {
  document.rForm.OP.value=OP;
  document.rForm.PG.value=PG;
  document.rForm.LOC.value=document.tForm.lLocations.selectedIndex;
  document.rForm.submit();
}
function swShowAds(OP,SC,PG)  {
  document.sForm.OP.value=OP;
  document.sForm.SC.value=SC;
  document.sForm.LOC.value=document.tForm.lLocations.selectedIndex;
  document.sForm.PG.value=PG;
  document.sForm.submit();
}
function swShowCategories(OP,SC) {
  document.tForm.OP.value=OP;
  document.tForm.SC.value=SC;
  document.tForm.LOC.value=document.tForm.lLocations.selectedIndex;
  document.tForm.submit();
}
function swFeedback(OP) {
  var win1 = window.open("/contact/sendmsg.html", "sendMsg", "status=no,toolbar=no,menubar=no,resizable=no,scrollbars=no,width=560,height=400,top=60,left=100")
}
//-->