function CheckForm()
{
	if (document.order.company.value.length == 0) {
		alert("Company name can not be empty!");
		document.order.company.focus();
		return false;
	}	
	if (document.order.title.value.length == 0) {
		alert("Your title can not be empty!");
		document.order.title.focus();
		return false;
	}
	if (document.order.name.value.length == 0) {
		alert("Your Name can not be empty!");
		document.order.name.focus();
		return false;
	}
	if (document.order.email.value.length == 0) {
		alert("EMAIL address can not be empty!");
		document.order.email.focus();
		return false;
	}
	if (document.order.email.value.length > 0 && !document.order.email.value.match( /^.+@.+$/ ) ) {
	    alert("EMAIL address is invaild!");
	    document.order.email.focus();
		return false;
	}
	if (document.order.tel.value.length == 0) {
		alert("Telephone No. can not be empty!");
		document.order.tel.focus();
		return false;
	}
	return true;
}
