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