function checkParticipantCode(form){

	if (form.sId.value.length != 6){
		alert("Please enter a six digit participant code.");
		form.sId.focus();
		return false;
	}
	
	return true;
}


