<!--
// check if the browser is Navigator 3 or higher:
agent = navigator.userAgent;
browserVer = 2;
if (agent.substring(0,7) == "Mozilla")
{
    if (parseInt(agent.substring(8,9)) >= 3) {browserVer = 1;}
}

// preload universal images:
if (browserVer == 1) {
                //total number of images
                total = 5;
        	    mover = new Array();
      		    orig = new Array();
				
                for (i = 1; i < (total+1); i++){

                        mover[1] = new Image();
                        mover[1].src = "images/menu02a.jpg";
                        orig[1] = new Image();
                        orig[1].src = "images/menu02.jpg";
						
                        mover[2] = new Image();
                        mover[2].src = "images/menu02a.jpg";
                        orig[2] = new Image();
                        orig[2].src = "images/menu02r.jpg";
						
						mover[3] = new Image();
						mover[3].src = "../../closeWinOff.gif";
						orig[3] = new Image();
						orig[3].src = "../../closeWinOn.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 (browserVer == 1) {
document.images[imgDocID].src = eval(imgObjName + ".src")
}}
// -->

	function openHelp(helpPage)
	{
	open(helpPage,'HelpPage','width=285,height=305, noscrollbars');
	}
	function openPP(helpPage)
	{
	open(helpPage,'HelpPage','width=285,height=305');
	}