<!--
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)
{
	//checks to see if microsoft browser, if is make changes else do nothng
	if (document.all)
	{
		//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(Relationships,'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(Relationships,'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 VoltletPopupWindowPopup_gallery(location)
{
	VoltletPopupWindow_gallery = window.open(location,'gallery','menubar=0,resizable=0,scrollbars=0,width=375,height=400');
	VoltletPopupWindow_gallery.creator=self;
}



// This script was written by Protoplasm
// http://www.geocities.com/protoplasm72 

var Today = new Date();
var week, month; 

switch (Today.getDay()) {
case 0:
  week = "Sunday";
  break;
case 1:
  week = "Monday";
  break;
case 2:
  week = "Tuesday";
  break;
case 3:
  week = "Wednesday";
  break;
case 4:
  week = "Thursday";
  break;
case 5:
  week = "Friday";
  break;
case 6:
  week = "Saturday";
  break;
} 

switch (Today.getMonth()) {
case 0:
  month = "January";
  break;
case 1:
  month = "February";
  break;
case 2:
  month = "March";
  break;
case 3:
  month = "April";
  break;
case 4:
  month = "May";
  break;
case 5:
  month = "June";
  break;
case 6:
  month = "July";
  break;
case 7:
  month = "August";
  break;
case 8:
  month = "September";
  break;
case 9:
  month = "October";
  break;
case 10:
  month = "November";
  break;
case 11:
  month = "December";
  break;
} 
		
// -->
