function check_quotation_form(theForm, errMsg1, errMsg2, errMsg3) {
	
	if ( theForm.phone.value == '' ) {
		alert(errMsg1);
		theForm.phone.focus();
		return false;
	}
if ( theForm.speed.value == '' ) {
		alert("Vui lòng nhập nội dung yêu cầu.");
		theForm.speed.focus();
		return false;
	}
	
	if ( theForm.contactname.value == '' ) {
		alert(errMsg2);
		theForm.contactname.focus();
		return false;
	}
	
	if ( (theForm.email.value.indexOf(".") <= 2) || (theForm.senderemail.value.indexOf("@") <= 0) ) {
		alert(errMsg3);
		theForm.email.focus();
		return false;
	}
	
	if ( theForm.txtNoidung.value == '' ) {
		alert("Vui lòng nhập nội dung yêu cầu.");
		theForm.txtNoidung.focus();
		return false;
	}

	if ( theForm.txtNoidung.value == 'Nội dung yêu cầu báo giá' ) {
		alert("Vui lòng nhập nội dung yêu cầu.");
		theForm.txtNoidung.focus();
		return false;
	}
	
	return true;
}
