//LinkColour code produced for exclusive use on sites by Caygill Design only.
//Copyright © 1999 Nilson Jacques

var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);
var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);

function ChangeIt(death) {
	
	if (IE4) {
	document.all[death].color = "#FF0000";
	}
	else {
	return;
	}
}

function ChangeBack(death2) {

	if (IE4) {
	document.all[death2].color = "#3333FF";
	}
	else {
	return;
	}
}
