function evilNinja_Hide(id) {
	document.getElementById(id).style.display = "none";
}

function evilNinja_Show(id) {
	document.getElementById(id).style.display = "";
}


function evilNinja_bgRoll(strTextColor)
{
	window.event.srcElement.style.backgroundColor = strTextColor;
	window.event.cancelBubble = true;
}
function evilNinja_fntRoll(strTextColor)
{
	window.event.srcElement.style.color = strTextColor;
	window.event.cancelBubble = true;
}	

