// JavaScript Document
function formval()
	{
		var fname = document.request1.fname.value;
		var lname = document.request1.lname.value;
		var company = document.request1.company.value;
		var email = document.request1.email.value;
		var phone = document.request1.phone.value;
		var comment = document.request1.comment.value;
		
		if (fname.length < 1) 
		{
			window.alert("First name needed");
			document.request1.fname.focus();
			return false;
		}
		
		if (lname.length < 1) 
		{
			window.alert("Last name needed");
			document.request1.lname.focus();
			return false;
		}
		
		if (company.length < 1) 
		{
			window.alert("Company needed");
			document.request1.company.focus();
			return false;
		}
		
		if (email.length < 1) 
		{
			window.alert("Email address needed");
			document.request1.email.focus();
			return false;
		}
		
		if (phone.length < 1) 
		{
			window.alert("Phone number needed");
			document.request1.phone.focus();
			return false;
		}

		if (comment.length < 1) 
		{
			window.alert("Comments needed");
			document.request1.comment.focus();
			return false;
		}
	}