function emailWindow(text) {
	newWindow = window.open('','newWin','width=1000,height=600,scrollbars=yes,resizable=yes,toolbar=no');
	newWindow.document.write("<a href='javascript:void(window.close())'>close window</a>");
	newWindow.document.write(text);
}

function OnChange(dropdown)
{
	var myindex  = dropdown.selectedIndex
	var SelValue = dropdown.options[myindex].value
	if (SelValue=="0") return false;
	else {
	  var baseURL  = "/FAQ.php#" + SelValue
	  top.location.href = baseURL;    
	  return true;
	}
}

function ContactLoop()
{
  var theForm = document.forms[1];
  var i;
  var alertText = "";
	
  for(i=0; i<theForm.elements.length; i++)
	{
    if(theForm.elements[i].value == "")
			alertText += "Please enter a value for: " + theForm.elements[i].name + "\n"
	}
	
	if (alertText=="") 
	  return true;
	else {
	  alert(alertText);
	  return false;
  }
}

function got_club() {
	if (document.listClubForm.clubNameList.value==0) {
		document.listClubForm.link_records.value = document.listClubForm.clubNameList.value; 
		document.listClubForm.action = "findClub.php"; 
		document.listClubForm.submit(); 
	}
	else { 
		return false;
	}
}

function got_team() {
	if (document.listTeamForm.clubTeamList.value==0) {
		document.listTeamForm.link_records.value = document.listTeamForm.clubTeamList.value; 
		document.listTeamForm.action = "findTeam.php"; 
		document.listTeamForm.submit(); 
	}
	else { 
		return false;
	}
}