// JavaScript Document

function SurveyCheck()
{	
	doc = document.surveyform;
	
	if(doc.name.value == "")
	{
		alert("Name is requried for us to contact the prize winners");
		return false;
	}
	
	//EMAIL
	if(doc.email.value == "")
	{
		alert("Email is required for us to contact the prize winners");
		return false;
	}else if(!doc.email.value.match(/.+@.+\..+/)){
		alert("Email is required for us to contact the prize winners");
		return false;
	}
	

}

function ethnic_other_click()
{
	doc = document.surveyform;

	for(i=0;i<doc.ethnic.length;i++)
	{
		doc.ethnic[i].checked = false;
	}
}
