// Contact Form Validate

function ValidateTrial(eForm){
	if(eForm==null)
		return true;

	if(eForm.fullname.value.length==0){
		alert('Please fill in your name.');
		return false;						
	}
	
	if(eForm.organization.value.length==0){
		alert('Please fill in the name of your company or organization.');
		return false;						
	}

	if(eForm.phonenum.value.length==0){
		alert('Please fill in your phone number.');
		return false;						
	}
	
	if(eForm.emailaddress.value.length==0){
		alert('Please fill in your email address.');
		return false;						
	}
	
	if(eForm.features.value.length==0){
		alert('Please tell us what is important to your organization.');
		return false;						
	}

	if(eForm.comments.value.length==0){
		alert('Please fill in the comments box to give us an idea of how we can serve you.');
		return false;						
	}

	return true;
}