// JavaScript Document

	function redInline (elName) {
		var theElemenet = document.getElementById(elName);
		if (theElemenet) {
			theElemenet.style.color = "#990000";
		}
	}
	function blackInline (elName) {
		var theElemenet = document.getElementById(elName);
		if (theElemenet) {
			theElemenet.style.color = "#000000";
		}
	}
	function whiteInline (elName) {
		var theElemenet = document.getElementById(elName);
		if (theElemenet) {
			theElemenet.style.color = "#ffffff";
		}
	}
	function hideInline (elName) {
		var theElemenet = document.getElementById(elName);
		if (theElemenet) {
			theElemenet.style.display = "none";
		}
	}
	function showInline (elName) {
		var theElemenet = document.getElementById(elName);
		if (theElemenet) {
			theElemenet.style.display = "inline";
		}
	}
	function redBackground (elName) {
		var theElemenet = document.getElementById(elName);
		if (theElemenet) {
			theElemenet.style.background = "#aa0000";
		}
	}
	function whiteBackground (elName) {
		var theElemenet = document.getElementById(elName);
		if (theElemenet) {
			theElemenet.style.background = "transparent";
		}
	}