function validateRegister ( myform ) { 

	if ( myform.terms.checked == false ) { 
            alert ("Please accept the terms and conditions");
	    return false;
        } else { 
	    return true;
	}
}

function checkTournament() {
	if ( document.tournament.satellite.value > 0 ) { 
		if ( document.tournament.occurs[0].checked != true ) { 
			alert("Satellite tournaments cannot be occuring, please select 'One Time'");
			return false;
		}
	}
}

