function validateForm()
{

	var msg = "In order for us to respond to you, we need the following information:\n";
	var a = 0;

	//validating the fields
	
	if(document.myForm.name.value == "")
	{
		msg = msg + "* Your Name.\n";
		a++;
	}

	if(document.myForm.e_mail.value == "")
	{
		msg = msg + "* Your E-Mail.\n";
		a++;
	}
	
	if(document.myForm.message.value == 0)
	{
		msg = msg + "* Your Message or Query.\n";
		a++;
	}

	if(document.myForm.authed.value == "")
	{
		msg = msg + "* The Authorization Code.\n";
		a++;
	}
	
	if(a == 0)
	{
		return true;
	}
	else
	{	
		alert(msg);
		return false;
	}
}