/*function hideErrors_formQuotation() {
	//document.getElementById("name_Error").style.display = "none"
	document.getElementById("position_Error").style.display = "none"
	document.getElementById("company_Error").style.display = "none"
	document.getElementById("email_Error").style.display = "none"
	document.getElementById("phone_Error").style.display = "none"
	document.getElementById("size_Error").style.display = "none"
	document.getElementById("location_Error").style.display = "none"
} */

function formQuotation() {
var anum=/^[0-9a-z_\.-]+@(([0-9]{1,3}\.){3}[0-9]{1,3}|([0-9a-z][0-9a-z-]*[0-9a-z]\.)+[a-z]{2,3})$/; 

name = document.getElementById("name").value;
position = document.getElementById("position").value;
company = document.getElementById("company").value;
email = document.getElementById("email").value;
phone = document.getElementById("phone").value;
size = document.getElementById("size").value;
location = document.getElementById("location").value;



//hideErrors_formQuotation();
if (name == "" || name == null) {
	alert("Error: Please enter Name!!!");
	//document.getElementById("name_Error").style.display = "inline";
	document.getElementById("name").select();
	document.getElementById("name").focus();
	return false;
} else if (position == "" || position == null) {
	alert("Error: Please enter Job Position!!!");
	//document.getElementById("position_Error").style.display = "inline";
	document.getElementById("position").select();
	document.getElementById("position").focus();
	return false;
} else if (company == "" || company == null) {
	alert("Error: Please enter Company!!!");
	//document.getElementById("company_Error").style.display = "inline";
	document.getElementById("company").select();
	document.getElementById("company").focus();
	return false;
} else if (email == "" || email == null || !anum.test(email)) {
	alert("Error: Please enter E-mail!!!");
	//document.getElementById("email_Error").style.display = "inline";
	document.getElementById("email").select();
	document.getElementById("email").focus();
	return false;
} else if (phone == "" || phone == null) {
	alert("Error: Please enter Phone Number!!!");
	//document.getElementById("phone_Error").style.display = "inline";
	document.getElementById("phone").select();
	document.getElementById("phone").focus();
	return false;
} else if (size == "" || size == null) {
	alert("Error: Please enter Size of Development!!!");
	//document.getElementById("size_Error").style.display = "inline";
	document.getElementById("size").select();
	document.getElementById("size").focus();
	return false;
} else if (location == "" || location == null) {
	alert("Error: Please enter Location of Development!!!");
	//document.getElementById("location_Error").style.display = "inline";
	document.getElementById("location").select();
	document.getElementById("location").focus();
	return false;
}
return true;
} //end of function
