/*=================================================

	CLIENT: SSO 2009
	DESIGNER: Sean Grant
	Objective: Calendar Script
	
===================================================*/

/*  Change the background of a Cell. */

function cOn(td){
	if(document.getElementById||(document.all && !(document.getElementById))){
		td.style.backgroundColor= "#a91313";
	}
}

function cOff(td){
	if(document.getElementById||(document.all && !(document.getElementById))){
		td.style.backgroundColor="#e11a1a";
	}
}