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



// preload universal images:
if (browser){

off14 = new Image(47,22);
off14.src= "images/button14_off.gif";
on14 = new Image(47,22);
on14.src= "images/button14_on.gif";

off15 = new Image(68,22);
off15.src= "images/button15_off.gif";
on15 = new Image(68,22);
on15.src= "images/button15_on.gif";

off16 = new Image(76,22);
off16.src= "images/button16_off.gif";
on16 = new Image(76,22);
on16.src= "images/button16_on.gif";

off17 = new Image(76,22);
off17.src= "images/button17_off.gif";
on17 = new Image(76,22);
on17.src= "images/button17_on.gif";

off18 = new Image(69,22);
off18.src= "images/button18_off.gif";
on18 = new Image(69,22);
on18.src= "images/button18_on.gif";

off19 = new Image(78,22);
off19.src= "images/button19_off.gif";
on19 = new Image(78,22);
on19.src= "images/button19_on.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")
}}

// -->