function overMenu(item)  {
	item.className = "overSideMenu";
}
function offMenu(item)  {
	item.className = "sideMenu";
}
function DoLink(Aname)  {
	window.location = document.getElementById(Aname).href;
}

function ovrCalAd(item)  {
	item.className = "calAdOvr";
}
function offCalAd(item)  {
	item.className = "calAdBtn";
}

function SetupLogin()  {
    document.pageLogin.uid.className = 'loginInput';
    document.pageLogin.twd.style.display = '';
    document.pageLogin.upd.style.display = 'none';
    document.pageSearch.keywords.className = 'loginInput';
}
function onSiteSearch(item)  {
	if (item.value == 'Site Search...')
	{
		item.style.color = "#000000";
		item.style.textAlign = "left";
		item.value = "";
	}
}

function blurSiteSearch(item)  {
	if (item.value == "")  {
		item.style.color = "#c0c0c0";
		item.style.textAlign = "center";
		item.value = "Site Search...";
	}
}
function onUserInput(item)  {
	if (item.value == 'Email Address')
	{
		item.style.color = "#000000";
		item.style.textAlign = "left";
		item.value = "";
	}
}

function blurUserInput(item)  {
	if (item.value == "")  {
		item.style.color = "#c0c0c0";
		item.style.textAlign = "center";
		item.value = "Email Address";
	}
}
function onPassInput()  {
    document.pageLogin.twd.style.display = "none";
    document.pageLogin.upd.style.display = "";
	document.pageLogin.upd.focus();
}
function blurPassInput()  {
    if (document.pageLogin.upd.value != "")
        return;
    document.pageLogin.twd.style.display = "";
    document.pageLogin.upd.style.display = "none";
}


/*
var doneClick=-1;
var info = new Array();
info[0] = "<B>How to use the map.</B><br>&nbsp;<br>Hover your mouse over the map to view clubs in any particular area.<br>&nbsp;<br>To view more detailed information about contacting a club, single left-click the area on the map.<br>&nbsp;<br><center>THEN<br>&nbsp;<br>Click the <img src='images/eml.gif' height='16' width='16' border='0'> to email a club<br>~~ or ~~<br>Click the <img src='images/www.gif' height='16' width='16' border='0'> to visit the club's website.</center>";
var detinfo = new Array();
detinfo[0] = "NULL INFO";
function loadJSmap(mapIndex)  {
	if (doneClick==-1)
document.getElementById("info").innerHTML = info[mapIndex];
}
function printJSinfo(mapIndex)  {
	if (doneClick!=mapIndex)
	{
		doneClick=mapIndex;
		document.getElementById("info").innerHTML = detinfo[mapIndex];
	} else {
		doneClick=-1;
		document.getElementById("info").innerHTML = info[mapIndex];
	}
}
function clearDisplay()  {
	document.getElementById("info").innerHTML = info[0];
}
function goClubView(cbView)  {
	window.location = "?topage=clubs&view="+cbView.value;
}
*/