// Comedy Blast Site Scripts
tempVal = "homeData"
function showSection(theSection)
{
	
	if(navigator.appName == "Netscape")
	{
		document.layers(tempVal).visibility="hide";
		document.layers(theSection).visibility="show";
	}
	else
	{
		//alert(tempVal);
		document.all[tempVal].style.visibility="hidden";	
		document.all[theSection].style.visibility="visible";
	}
	tempVal = theSection
}

function hideSection(theSection)
{
	if(navigator.appName == "Nestcape") 
	{
		document.layers(theSection).visibility="hide";
	}
	else
	{
		document.all[theSection].style.visibility="hidden"
	}
}