
function checkform()
{
var name = document.getElementById('textfield');
var secure = document.getElementById('Security');

var address = document.getElementById('textfield2');
var tell = document.getElementById('textfield3');
var email = document.getElementById('textfield4');
var emailExp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/;
var content = document.getElementById('content');

if (name.value==""){ alert("Vui lòng nhập tên của bạn !");}
else if (content.value==""){ alert("Vui lòng nhập nội dung liên hệ !");}

else if (email.value==""){ alert("Vui lòng nhập email của bạn !");}
 else if (tell.value==0){ alert("Vui lòng nhập số điện thoại !");}
 
else if (!email.value.match(emailExp)){ alert("Vui lòng xem lại email!");
 email.value= "";
 }
else if (content.value==""){ alert("Vui lòng nhập nội dung liên hệ !");}
else if (secure.value==""){ alert("Vui lòng nhập mã an toàn !");}

else 
{
window.document.frm.submit();

}

}


function changimage(img_name,img_src) {
document[img_name].src=img_src;
}
