// JavaScript Document<
function chkemail(email) {
	var re = /^(\w|[^_]\.[^_]|[\-])+(([^_])(\@){1}([^_]))(([a-z]|[\d]|[_]|[\-])+|([^_]\.[^_])*)+\.[a-z]{2,3}$/i 
	return re.test(email);
}
function chkLienhe(frm){
	
	if((!chkemail(document.getElementById('email').value))||(document.getElementById('email').value=='')){
		alert("Mời bạn nhập đúng Email.") ;
		document.getElementById('email').focus() ;
		return false ;
	}
	if(document.getElementById('hoten').value==''){
		alert("Mời bạn cho biết họ và tên.") ;
		document.getElementById('hoten').focus() ;
		return false ;
	}	
	if(document.getElementById('phone').value==''){
		alert("Mời bạn cho điện thoại liên lạc.") ;
		document.getElementById('phone').focus() ;
		return false ;
	}
	if(document.getElementById('subject').value==''){
		alert("Mời bạn nhập vào chủ đề.") ;
		document.getElementById('subject').focus() ;
		return false ;
	}
	if(document.getElementById('content').value==''){
		alert("Mời bạn nhập vào nội dung.") ;
		document.getElementById('content').focus() ;
		return false ;
	}
	return true ;
}
function chkDattour(){
	if(document.getElementById('hoten').value==''){
		alert("Mời bạn cho biết họ và tên.") ;
		document.getElementById('hoten').focus() ;
		return false ;
	}	
	if((!chkemail(document.getElementById('email').value))||(document.getElementById('email').value=='')){
		alert("Mời bạn nhập đúng Email.") ;
		document.getElementById('email').focus() ;
		return false ;
	}
	if(document.getElementById('phone').value==''){
		alert("Mời bạn cho điện thoại liên lạc.") ;
		document.getElementById('phone').focus() ;
		return false ;
	}	
	if(document.getElementById('content').value==''){
		alert("Mời bạn nhập vào nội dung.") ;
		document.getElementById('content').focus() ;
		return false ;
	}
	return true ;
}
