/////////////////////
// Main navigation //
/////////////////////
var subMenus = ["general","sites","registration","fundraising","community","shopping","login"];

function showSubMenu(menu) {
	hideSubMenus();
	$('subnav_'+menu).style.display = '';
}

function hideSubMenu(menu) {
	$('subnav_'+menu).style.display = "none";
}

function hideSubMenus() {
	for(var i=0;i<subMenus.length;i++) {
		$('subnav_'+subMenus[i]).style.display = "none";
	}
}

/////////////////////
// Old stuff       //
/////////////////////
function popup(url, width, height) {
	var popup = window.open(url, null, 'width=' + width + ',height=' + height + ',resizable,scrollbars');
}

function SelectSport(field) {
	if (field.options[field.selectedIndex].value != '')
		location.href = field.options[field.selectedIndex].value;
	return false;
}

function adminLinks(field) {
	if (field.options[field.selectedIndex].value != '') location.href = field.options[field.selectedIndex].value;
	return false;
}

function gotosite(site) {
	if(site != "") {
		self.location=site;
	}
}

function forgot(){
	Go=window.open("/admin/forgot.cfm","forgot",'menubar,scrollbars,resizable,width=400,height=250');
}