<!--



//////// I M A G E * S W A P



browserName = navigator.appName;

browserVer = parseInt(navigator.appVersion);

if ((browserName == "Netscape" && browserVer >= 3) || (browserVer >= 4)) 

	canRoll = true;

else

	canRoll = false;



function hiLite(imgID, imgName) {

	if (canRoll) {

		document.images[imgID].src = eval(imgName + ".src");

	}

}





///////// B R O W S E R * C H E C K



function checkBrowser() {

	this.ver=navigator.appVersion

	this.dom=document.getElementById?1:0

	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;

	this.ie4=(document.all && !this.dom)?1:0;

	this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;

	this.ns4=(document.layers && !this.dom)?1:0;

	this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5)

	return this

}

var bw=new checkBrowser()



//////// F R A M E * L O A D I N G



function pathOnly (inString)  {

	lastSlash = inString.lastIndexOf ('/', inString.length - 1)

	outString = inString.substring  (0, lastSlash + 1)

	return (outString);	

}



function loadItem (itemName, itemName2)  {

	var frame1Href = itemName + ".html";

	var frame2Href = itemName2 + ".html";

	

	if (parent.frames['head'].location.href != pathOnly (location.href) + frame1Href) {

		parent.frames['head'].location.href = pathOnly (location.href) + frame1Href;

	}	

	if (parent.frames['cont'].location.href != pathOnly (location.href) + frame2Href) {

		parent.frames['cont'].location.href = pathOnly (location.href) + frame2Href;

	}	

}



//-->
