// JavaScript Document

// Original:  Wayne Nolting (w.nolting@home.com) -->
// This script and many more are available free online at -->
// The JavaScript Source!! http://javascript.internet.com -->

// Begin
function verifytellafriend() {
var themessage = "You are required to complete the following fields: ";
if (document.tellafriendform.fFriendsEmail.value=="") {
themessage = themessage + " - Your Friend's Email Address";
}
//alert if fields are empty and cancel form submit
if (themessage == "You are required to complete the following field: ") {
document.tellafriendform.submit();
}
else {
alert(themessage);
return false;
   }
}
//  End
