// display decision alert box
function decision(message, url){
	if(confirm(message)) location.href = url;
}
function isCheck()
	{
		var theform = document.contactform;
		
		if(theform.hoten.value == "") {
			alert("Vui lòng nhập tên của bạn vào");
			theform.hoten.focus();			
			return false;
		}
		if(theform.diachi.value == "") {
			alert("Vui lòng nhập địa chỉ vào");
			theform.diachi.focus();
			return false;
		}
		if(theform.dienthoai.value == "") {
			alert("Vui lòng nhập số điện thoại");
			 
			theform.dienthoai.focus();
			return false;
		}
		if(theform.email.value == "")
		{
			alert("Email Không thể rỗng");
			theform.email.focus();
			return false;
		}
		if(theform.email.value != "")
		{
			var str = theform.email.value;
			if((str.indexOf('@',0) == -1)||(str.indexOf('.') == -1)||(str.length <5))
			{
				alert("Nhập email sai!");
				theform.email.focus();
				return false;
			}
		}	
	}
	
	