
// browser check
IS_DOM = (document.getElementById) ? true : false;
IS_NS4 = (document.layers) ? true : false;
IS_IE = (document.all) ? true : false;
IS_IE4 = IS_IE && !IS_DOM;
IS_Mac = (navigator.appVersion.indexOf("Mac") != -1);
IS_IE50PC = (IS_DOM && IS_IE && !IS_Mac && navigator.userAgent.indexOf("MSIE 5.0")!=-1)


function noClick(sNull) {}

function showHighlight(iID) {

	for (i=1;i<=3;i++) {
	document.getElementById('highlight' + i).style.display = "none";
	}

	document.getElementById('highlight' + iID).style.display = "block";


	for (i=1;i<=3;i++) {
	document.getElementById('highlightLink' + i).style.color = "#676767";
	}

	document.getElementById('highlightLink' + iID).style.color = "#FB7B07";

}


function openGenericWindow(sURL,iWidth,iHeight,sAttributes) {

	var oWindow = window.open(sURL,'oWindow','width='+iWidth+',height='+iHeight+','+sAttributes);
	oWindow.focus();	

}
