browser = (((navigator.appName == "Netscape") &&
(parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName ==
"Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 3 )))



// preload universal images:
if (browser){
off1 = new Image(197,36);
off1.src= "../images/button1off.gif";
on1 = new Image(197,36);
on1.src= "../images/button1on.gif";

off2 = new Image(197,36);
off2.src= "../images/button2off.gif";
on2 = new Image(197,36);
on2.src= "../images/button2on.gif";

off3 = new Image(197,36);
off3.src= "../images/button3off.gif";
on3 = new Image(197,36);
on3.src= "../images/button3on.gif";

off4 = new Image(197,36);
off4.src= "../images/button4off.gif";
on4 = new Image(197,36);
on4.src= "../images/button4on.gif";

off5 = new Image(197,35);
off5.src= "../images/button5off.gif";
on5 = new Image(197,35);
on5.src= "../images/button5on.gif";

off6 = new Image(197,37);
off6.src= "../images/button6off.gif";
on6 = new Image(197,37);
on6.src= "../images/button6on.gif";


}



function hiLite(imgDocID,imgObjName) {
// manages mouseOver animations
//   imgDocID - the name or number of the document image to be replaced
//   imgObjName - the name of the image object to be swapped in

if (browser){document.images[imgDocID].src = eval(imgObjName + ".src")
}}

// -->