//Display default status message in IE and Netscape
window.defaultStatus=""
	
	//BROWSER DETECT Decide which CSS to include
if (navigator.appName == "Netscape") {
		document.write("<LINK href='include/able_netscape.css' rel='stylesheet' type='text/css'>")
	}
else if (navigator.appName == "Microsoft Internet Explorer") {
		document.write("<LINK href='include/able_ie.css' rel='stylesheet' type='text/css'>")
}

if (navigator.appName != "Microsoft Internet Explorer" && navigator.appName != "Netscape") {
	document.write("<LINK href='include/able_ie.css' rel='stylesheet' type='text/css'>")
}
//END BROWSER DETECT Decide which CSS to include

//create a window.status rollover
function WindowStatus(string) {
	window.status = string;
}
//END create a window.status rollover

function rollWhite() {
	if (navigator.appName == "Microsoft Internet Explorer") {
		what = window.event.srcElement;
		what.style.color="#ffffff"
	}
}

function rollBlack() {
	if (navigator.appName == "Microsoft Internet Explorer") {
		what = window.event.srcElement;
		what.style.color="#000000"
	}
}

function rollRed() {
	if (navigator.appName == "Microsoft Internet Explorer") {
		what = window.event.srcElement;
		//what.style.color="#003366"
		//what.style.color="#3385AD"
		//what.style.color="#ffcc00"
		what.style.color="ff9900"
	}
}
	
//END Change link colors on left hand side to CSS color on mouseout

//Change link colors on left hand side to CSS color on mouseout
function rollOff() {
	if (navigator.appName == "Microsoft Internet Explorer") {
		what = window.event.srcElement;
		what.style.color=""
	}
}
//END Change link colors on left hand side to CSS color on mouseout









