
<!-- // Hide from old Browsers

function getSwitchboard()
{
	var time = new Date();	
	hours = time.getHours();	
	mins = time.getMinutes();
	secs = time.getSeconds();	
	closeTime = hours*3600+mins*60+secs;	
	closeTime += 1;  
	TheTimer();
}

function LaunchSwitchboard(newURL, newName, newFeatures, orgName) 
{
	var remote = window.open(newURL, newName, newFeatures);
	if (remote.opener == null)
	{
		remote.opener = window;
	}
	remote.opener.name = orgName;
	return remote;
}

function TheTimer()
{	
	var time= new Date();	
	hours= time.getHours();
	mins= time.getMinutes();	
	secs= time.getSeconds();
	curTime=hours*3600+mins*60+secs	
	if(curTime>=closeTime)
	{
		var w, h;
		w = 640;
		h = 480;
	
		myRemote = LaunchSwitchboard(loc, "switchboard", 'width=' + w + ',height=' + h + ',scrollbars,resizable,screenX=0,screenY=0', "memberpage");
	//	myRemote.focus();
	//	myRemote.blur();
		window.focus();
	}
	else
	{
		CheckLeftTime();
	}
}

function CheckLeftTime()
{
	count = closeTime-curTime;
	// document.timer.counter.value = count + " secs."
	window.setTimeout("TheTimer()",1000);
}


// End Hide --> 