<!--

//  www.vandelayenteprises.com, © Copyright 2000-2002.

browserName = navigator.appName;          
browserVer = parseInt(navigator.appVersion);

hasImageSupport = false;

if (browserName == "Netscape" && browserVer >= 3)
   hasImageSupport = true;
else if (browserVer > 3)
   hasImageSupport = true;

function buttonAction (imgName, isItOn) {   
   if (hasImageSupport) {
      if (isItOn) {
         document[imgName].src = eval(imgName + "_on.src");

      } else {
         document[imgName].src = eval(imgName + "_off.src");
      }
   }
}

function SpamProof(uName, dName, dExt) {
    var spamProofEMail = uName + '@' + dName + '.' + dExt;
    return ('<A HREF="mailto:' + spamProofEMail +
    '">' + spamProofEMail + '</A>');
}


//-->
