function ValidateEmailAFriend()
{
    var ErrorMsg = "";
    
    if(document.EmailAFriendForm.Friend__s_Email_Address.value.length < 1)
    {
        ErrorMsg += " - Please supply your friend's Email address.\n";
    }
    if(document.EmailAFriendForm.Your_Name.value.length < 1)
    {
        ErrorMsg += " - Please supply your name.\n";
    }
    if(document.EmailAFriendForm.Your_Email_Address.value.length < 1)
    {
        ErrorMsg += " - Please supply your Email address.\n";
    }
    if (document.EmailAFriendForm.Friend__s_Email_Address.value != '')
	{
		var Test = document.EmailAFriendForm.Friend__s_Email_Address.value;
		
		if ( ! EmailValidate(Test))
		{
			ErrorMsg += " - Please supply a valid E-mail address of your friends.\n";
		}
	}
	if (document.EmailAFriendForm.Your_Email_Address.value != '')
	{
		var Test = document.EmailAFriendForm.Your_Email_Address.value;
		
		if ( ! EmailValidate(Test))
		{
			ErrorMsg += " - Please supply a valid E-mail address of yours.\n";
		}
	}
    if(ErrorMsg.length > 0)
    {
        alert("We're sorry, we could not deliver your message as entered.\n" + ErrorMsg);
        return false;
    }
    else
    {
		return true;
    }    
}//ValidateEmailAFriend


function ValidateContactUs()
{
    var ErrorMsg = "";
    if(document.ContactUsForm.First_Name.value.length < 1)
    {
        ErrorMsg += " - Please supply your first name.\n";
    }
    if(document.ContactUsForm.Last_Name.value.length < 1)
    {
        ErrorMsg += " - Please supply your last name.\n";
    }
    if(document.ContactUsForm.emailAddress.value.length < 1)
    {
        ErrorMsg += " - Please supply your Email address.\n";
    }
    if (document.ContactUsForm.emailAddress.value != '')
	{
		var Test = document.ContactUsForm.emailAddress.value;
		
		if ( ! EmailValidate(Test))
		{
			ErrorMsg += " - Please supply a valid E-mail address.\n";
		}
	}
	if(document.ContactUsForm.subject.value.length < 1)
    {
        ErrorMsg += " - Please supply subject.\n";
    }
    if(document.ContactUsForm.message.value.length < 1)
    {
        ErrorMsg += " - Please supply your message.\n";
    }
    if(ErrorMsg.length > 0)
    {
        alert("We're sorry, we could not deliver your message as entered.\n" + ErrorMsg);
        return false;
    }
    else
    {
		return true;
    }    
}//ValidateContactUs



