// Mouseover-preload script Copyright © Bob Farnsworth

bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
if ((bName == "Netscape" && bVer>=3) ||
(bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3";
else br = "n2";
if (br== "n3")

{
img1 = new Image();img1.src = "ctwcomsm.gif";
img2 = new Image();img2.src = "ctwcomhsm.gif";
}
function swap2(imgLocation) {
  if(document.images) {
    document.images[imgLocation].src = eval(imgLocation + "2.src");
  }
}
function swapback(imgLocation) {
  if(document.images) {
    document.images[imgLocation].src = eval(imgLocation + "1.src");
  }
}