<!--

function Watson(theForm)
{
	if (theForm.age[0].checked==true)
	{
		alert('We do not collect information from children under the age of 13. Therefore, you will not be able to receive this service, and your personal information will not be retained. Please contact us at the links on this page if you or your parent have any questions.')
	}
	else
	{
		theForm.submit()
	}
}
// so ends Watson

//Global variable that holds whether or not surfer really is over a menu or not.  It's set when mouse enters or leaves menu areas
//and used to hide the menus when they actually leave...
overNav=0;

function Change(element,newclass)
{
	//close any open subnavigation - horizontal
	classChange(NewsMenu,'DisplayNone');
	classChange(CommunitiesMenu,'DisplayNone');
	classChange(EntertainMenu,'DisplayNone');
	classChange(ClassifiedsMenu,'DisplayNone');
	classChange(SCJobsMenu,'DisplayNone');
	//classChange(SubscribeMenu,'DisplayNone');
	classChange(RealestateMenu,'DisplayNone');
	classChange(CarsMenu,'DisplayNone');
	classChange(SpecPubMenu,'DisplayNone');
	classChange(CouponMenu,'DisplayNone');
	classChange(ShoppingMenu,'DisplayNone');

	//Open new subnavigation
	classChange(element,newclass);
}

function LeaveNav()
{
	//set global variable
	overNav=0;
}

function EnterNav()
{
	//set global variable
	overNav=1;
}

function classChange(element,newclass)
{
	element.className = newclass;
}

function Hide()
{
	//code to embed a test to make sure user has really left navigation
	if (overNav)
	{
		;//setTimeOut('Hide()', 5000);
	}
	else if(!overNav)
	{
		//close any open subnavigation - horizontal
		classChange(NewsMenu,'DisplayNone');
		classChange(CommunitiesMenu,'DisplayNone');
		classChange(EntertainMenu,'DisplayNone');
		classChange(ClassifiedsMenu,'DisplayNone');
		classChange(SCJobsMenu,'DisplayNone');
		//classChange(SubscribeMenu,'DisplayNone');
        classChange(RealestateMenu,'DisplayNone');
        classChange(CarsMenu,'DisplayNone');
		classChange(SpecPubMenu,'DisplayNone');
		classChange(CouponMenu,'DisplayNone');
		classChange(ShoppingMenu,'DisplayNone');
	}
	//something screwed up...
	else
	{
		alert("Something messed up...");
	}
}

function MM_jumpMenu(targ,selObj,restore)
{
	//v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

//browser must recognize document hierarchy
//This code is needed to make the weather teaser functional.
function jSlink (elink) {
document.location = document.affils.cgiurl.value + "weatherwrapper.pl?URL=http://www.gannettonline.com/external/weathernews/" + elink + "&AFFIL=" + document.affils.affil.value
}

function VoltletPopupWindowPopup_gallery(location)
{
	VoltletPopupWindow_gallery = window.open(location,'gallery','menubar=0,resizable=0,scrollbars=0,width=375,height=400');
	VoltletPopupWindow_gallery.creator=self;
}

//Function to drive tech headlines functionality.
function jStech (elink)
{
	document.location = document.affils.cgiurl.value + "techwrapper.pl?URL=http://www.gannettonline.com/e/" + elink + "&AFFIL=" + document.affils.affil.value
}
// -->