var bAllowJump = true;
function selectClub()
{

  var strValue = document.clubSelect.selected.options[document.clubSelect.selected.options.selectedIndex].value;
	var ValueArray = strValue.split("|");
	var leagueID = ValueArray[0];
	var clubID = ValueArray[1];
	
	if(""+clubID == "undefined")
		clubID = "";
	
	if (clubID<0)
	{
	 	 clubID = leagueID*1;
	}
	
	if(clubID>0 && bAllowJump)
	{
		document.clubSelect.selected.blur();
		bAllowJump = false;
		document.location.href="/club.phtml?clubID=" + clubID + "&leagueID=" + leagueID;
	}
	else if (leagueID < -1 && bAllowJump)
	{
		document.clubselect.selected.blur();
		bAllowJump = false;
		document.location.href="/testingleague.phtml?leagueID=" + Math.abs(leagueID);
	}
	else
		return false;
}
