//Flint River Animal Hospital Utility Scripts
//General and Generic Functions
//Sean Provost - Feb 2011

function showModalCS(){
	document.getElementById('overlay').className = "";
	document.getElementById('comingSoonContainer').className = "";
}

function hideModalCS(){
	document.getElementById('overlay').className = "noDisplay";
	document.getElementById('comingSoonContainer').className = "noDisplay";	
}

