// JavaScript Document
function validateForm()
{
	var Err = ""
	if (document.feedbackForm.email.value == "")
	{
		Err += "Enter your email address. \n";
	}

	if (document.feedbackForm.requests.selectedIndex == 0)
	{
		Err += "Select a request Type. \n";
	}

	if (document.feedbackForm.desc.value == "")
	{
		Err += "Enter a description. \n"
	}
	
	if (document.feedbackForm.description.value != "")
	{
		Err += "Leave the blank field blank please. \n"
	}
		
	if (Err == "")
	{
		return true;
	}
	
	else
	{
		alert(Err);
		return false;
	}
}