<!--

    function friendRequireData()
      {
	  if (document.frmTeller.name.value == "")
		{
	    alert("Please Enter Your Name!");
	    document.frmTeller.name.focus();
	    return false;
		}
	  if (document.frmTeller.from.value.search('@') == -1)
		{
		alert("Please enter a valid e-mail address in the \"Your Email\" field.");
		document.frmTeller.from.focus();
		return false;
		}
	  if (document.frmTeller.from.value.length < 5)
		{
		alert("Please enter a valid e-mail address in the \"Your Email\" field.");
		document.frmTeller.from.focus();
		return false;
		}
	   if (document.frmTeller.recipient_email.value.search('@') == -1)
		{
		alert("Please enter a valid e-mail address in the \"Friend\'s Email\" field.");
		document.frmTeller.recipient_email.focus();
		return false;
		}
	  if (document.frmTeller.recipient_email.value.length < 5)
		{
		alert("Please enter a valid e-mail address in the \"Friend\'s Email\" field.");
		document.frmTeller.recipient_email.focus();
		return false;
		}

	return true;
	}
//-->