<!--
// *************************************************** Form Validation Begins Here ***************************************************
function checkForm(CurrentForm){
	 if (CurrentForm.strName.value == '') {
	  	alert("Please enter your Name.");
    document.TellaFriend.strName.focus();
		return false;
	 }
	 if (CurrentForm.strEmail.value == '') {
	  	alert("Please enter your Email Address.");
    document.TellaFriend.strEmail.focus();
		return false;
	 }
	 sEmail = CurrentForm.strEmail.value;
	 if(sEmail != "" && sEmail.search(/^[\w-_.]*[\w-_.]@[\w].+[\w]+[\w]$/) == -1){
	  	alert("Please enter a VALID Email Address.");
    document.TellaFriend.strEmail.focus();
		return false;
	 }
	 if (CurrentForm.strNameFriend1.value == '') {
	  	alert("Please enter your Friend's Name.");
    document.TellaFriend.strNameFriend1.focus();
		return false;
	 }
	 if (CurrentForm.strEmailFriend1.value == '') {
	  	alert("Please enter your Friend's Email Address.");
    document.TellaFriend.strEmailFriend1.focus();
		return false;
	 }
	 sEmail = CurrentForm.strEmailFriend1.value;
	 if(sEmail != "" && sEmail.search(/^[\w-_.]*[\w-_.]@[\w].+[\w]+[\w]$/) == -1){
	  	alert("Please enter a VALID Email Address for your Friend.");
    document.TellaFriend.strEmailFriend1.focus();
		return false;
	 }
	 if (CurrentForm.strMessage.value == '') {
	  	alert("Please enter the Message you would like to send to your friend(s).");
    document.TellaFriend.strMessage.focus();
		return false;
	 }
return true;	
}
//-->
