function checkform_sendtofriend() {
	msg = "";

	if (document.frm.fname.value == "")  msg = msg + "- Your name\n";
	if (!emailcheck(document.frm.email.value)) msg = msg + "- Your valid email address\n";
	if (document.frm.friendname.value == "")  msg = msg + "- Your friends name\n";
	if (!emailcheck(document.frm.friendemail.value)) msg = msg + "- Your friends valid email address\n";
	if (document.frm.howhear.value == "")  msg = msg + "- How you heard about us\n";

	if (msg!="")
		{
		alert ("Please complete the following:\r\n\r\n"+msg);
		return false;
		}
}