function validateForm()
{
	var sendname=document.tform.send_name.value;
	var sendemail=document.tform.send_email.value;
	var sendemailok=document.tform.send_email.value.match(/^[a-zA-Z_0-9\.\-]+[a-zA-Z_0-9\.\-]*@[a-zA-Z_0-9\.\-]+\.[a-zA-Z]+/i);
	var friendname=document.tform.recipname_1.value;
	var friendemail=document.tform.recipemail_1.value;
	var friendemailok=document.tform.recipemail_1.value.match(/^[a-zA-Z_0-9\.\-]+[a-zA-Z_0-9\.\-]*@[a-zA-Z_0-9\.\-]+\.[a-zA-Z]+/i);

	if (sendname=="") {
		alert('Please enter your *First Name* to continue!');
		document.tform.send_name.focus();
		return false;
	}

	if (sendname.length<"2") {
		alert('No Initials accepted - Please enter your *First Name* to continue!');
		document.tform.send_name.focus();
		return false;
	}

	if (sendemail=="") {
		alert('Please enter your correct *Email Address* to continue!');
		document.tform.send_email.focus();
		return false;
	}

	if (!sendemailok) {
		alert('Not a valid *Email Address* - Please correct errors or omissions!');
		document.tform.send_email.focus();
		return false;
	}

	if (friendname=="") {
		alert('Please enter *First Name* of your friend to continue!');
		document.tform.recipname_1.focus();
		return false;
	}

	if (friendname.length<"2") {
		alert('No Initials accepted - Please enter *First Name* of your friend to continue!');
		document.tform.recipname_1.focus();
		return false;
	}

	if (friendemail=="") {
		alert('Please enter correct *Email Address* of your friend to continue!');
		document.tform.recipemail_1.focus();
		return false;
	}

	if (!friendemailok) {
		alert('Not a valid *Email Address* - Please correct errors or omissions!');
		document.tform.recipemail_1.focus();
		return false;
	}
}