function validateSupport(theForm)
{

	var Name = theForm.name.value;
    var txtCompany = theForm.txtCompany.value;
    var Email = theForm.email.value;	
	var Priority = theForm.priority.value;
	var Subject = theForm.subject.value;	
	var Description = theForm.description.value;
	var Type = theForm.type.value;
	var Reason = theForm.reason.value;
	
	var checkForm = true;
	
	if (Name == "") 
	{
		alert("Please enter your Contact Name.");
		theForm.name.focus();
		checkForm = false;
		return false;
	} 
	
	if (txtCompany == "") 
	{
		alert("Please enter your Company Name.");
		theForm.txtCompany.focus();
		checkForm = false;
		return false;
	} 
	
	if (Email == "") 
	{
		alert("Please enter a valid Email address.");
		theForm.email.focus();
		checkForm = false;
		return false;
	} 
	
	if (theForm["00N30000000J0U9"].value == "") {
		alert("Please select the product you are using.");
		theForm["00N30000000J0U9"].focus();
		checkForm = false;
		return false
	}
	
	if (Type == "") 
		{
			alert("Please tell us the type of your request.");
			theForm.type.focus();
			checkForm = false;
			return false;
		} 
	
	if (Reason == "") 
		{
			alert("Please tell us the reason for your request.");
			theForm.reason.focus();
			checkForm = false;
			return false;
		} 
		
	
	
	if (Priority == "") 
		{
			alert("Please tell us the priority of your request.");
			theForm.priority.focus();
			checkForm = false;
			return false;
		} 
	
	if (Subject == "") 
		{
			alert("Please enter the Subject of your request.");
			theForm.subject.focus();
			checkForm = false;
			return false;
		} 

	if (Description == "") 
		{
			alert("Please fill out the Description of what problem you have encountered.");
			theForm.description.focus();
			checkForm = false;
			return false;
		} 
		
	if(checkForm == true) {
		alert("Thank you for your request.  Your information will be submitted for review.");	
	}
	
return true;

}
