var isIE = false;
var isOther = false;
var isNS4 = false;
var isNS6 = false;

if(document.getElementById) {
	if(!document.all) {
		isNS6=true;
	}
	if(document.all) {
		isIE=true;
	}
}
else {
	if(document.layers)	{
		isNS4=true;
	}
	else {
		isOther=true;
	}
}

function mylayer(layerID) {
var returnLayer;
	if(isIE) {
		returnLayer = eval("document.all." + layerID);
	}
	if(isNS6) {
		returnLayer = eval("document.getElementById('" + layerID + "')");
	}
	if(isNS4) {
		returnLayer = eval("document." + layerID);
	}
	if(isOther) {
		returnLayer = "null";
		alert("-[Error]-\nDue to your browser you will probably not\nbe able to view all of the following page\nas it was designed to be viewed. We regret\nthis error sincerely.");
	}
return returnLayer;
}

var clicks = 0;
function Change(obj, originalText, clickText) {
	if(clicks == 0) {
		obj.innerHTML = clickText;
		clicks = 1;
		myLayer("message").className = "show";
	}
	else {
		obj.innerHTML = originalText;
		clicks = 0;
		myLayer("message").className = "hide";
	}
}