<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
// Gregory Swofford Friday, May 09, 2003

function checkForm(){

	if (document.Checker.file.value==""){
		alert("You must upload a photo REQUIRED")
		//document.Checker.file.focus()
		return false
		}
	if (document.Checker.contestant_name.value==""){
		alert("You must enter a name REQUIRED")
		document.Checker.contestant_name.focus()
		return false
		}
	if (document.Checker.description.value==""){
		alert("You must enter a description REQUIRED")
		document.Checker.description.focus()
		return false
		}
	if (document.Checker.username.value==""){
		alert("You must enter a username REQUIRED")
		document.Checker.username.focus()
		return false
		}
	if (document.Checker.password.value==""){
		alert("You must enter a password REQUIRED")
		document.Checker.password.focus()
		return false
		}
	if (document.Checker.enter_email.value==""){
		alert("Email REQUIRED")
		document.Checker.enter_email.focus()
		return false
		}


	if (!document.Checker.user_sex[0].checked && !document.Checker.user_sex[1].checked) {
		alert('Select A SEX');
		return false;
		}


alert("THANK YOU");
return true;
}

//  End -->
</script>
