// JavaScript Document
function val_comp() {			
	if (document.competition.email.value=="")
	{
 	alert("Full Name: \n * Please enter your Email Address");
	document.competition.email.focus();
    	return (false);
	} 
	if (document.competition.name.value=="")
	{
 	alert("Full Name: \n * Please enter your Full Name");
	document.competition.name.focus();
    	return (false);
	}
	if (document.competition.picture.value=="")
 	{
  	alert("Address: \n * Please enter your picture URL");
 	document.competition.picture.focus();
     	return (false);
	}
   if (document.competition.terms.checked==false) {
  	alert("Terms and Conditions: \n * You must accept the Terms and Conditions");
 	document.competition.terms.focus();
     	return (false);
  }
}