function CheckEmailForm() {
	errors = "";
	if (document.EmailLink.yourname.value == "") {
		errors += "Your Name \n";
	}	
	if (document.EmailLink.youremail.value == "") {
		errors += "Your Email \n";
	}	
	if (document.EmailLink.friendname.value == "") {
		errors += "Your Friend's Name \n";
	}	
	if (document.EmailLink.friendemail.value == "") {
		errors += "Your Friend's Email \n";
	}	
	if (errors) { 
		alert("Please enter the following information:\n"+ errors); 
    }  else {
    	document.EmailLink.submit();
	}
 }                  

