// ##################
//  Global Functions
// ##################

var ROOT = "/WebWorX/";
var isNS4 = !(document.layers == null);
var isIE4 = !(document.all    == null);
var ItIs4 = (isNS4 || isIE4);
var isMac = (navigator.appVersion.indexOf("Mac") != -1) ?	true:false;
var isMnu = (isNS4 || (isIE4 && !isMac)) ?	true:false;



function handleMouseover() {
	eSrc = window.event.srcElement;
	eSrcTag=eSrc.tagName.toUpperCase();
	if (eSrcTag=="DIV" && eSrc.className.toUpperCase()=="CLSTOCHEAD")	eSrc.style.textDecoration = "underline";
	if (eSrcTag=="LABEL") eSrc.style.color="#FF0000";
}

function handleMouseout() {
	eSrc = window.event.srcElement;
	eSrcTag=eSrc.tagName.toUpperCase();
	if (eSrcTag=="DIV" && eSrc.className.toUpperCase()=="CLSTOCHEAD")	eSrc.style.textDecoration = "";
	if (eSrcTag=="LABEL") eSrc.style.color="";
}

document.onmouseover=handleMouseover;
