<!--

// --------------------------------------------------------------
// Image rollover
// --------------------------------------------------------------

function Rollover (strImageName, strFileName) {
	document[strImageName].src = strFileName;
	}

function RolloverCSS (strLayer, strImageName, strFileName) {
	var DOM;

	if (bIsIEPlus) {
		document[strImageName].src = strFileName;
		}
	else if (bIsNavPlus) {
		DOM = eval('document.' + strLayer);
		DOM.document[strImageName].src = strFileName;
		}
	}

function LinkIn(el) {
	if (bIsIEPlus) {
		el.initstyle=el.style.cssText;
		el.style.cssText=el.fprolloverstyle;
		}
	}

function LinkOut(el) {
	if (bIsIEPlus) {
		el.style.cssText=el.initstyle;
		}
	}

//-->
