function checkFormHelp(){if(!checkValueElementById('strName')){alert('Vui lòng cung cấp đầy đủ họ & tên.');return false;}if(!checkValueElementById('strEmail')){alert('Vui lòng cung cấp Email liên lạc.');return false;}else if(!isEmail('strEmail')){alert('Email liên lạc không đúng định dạng.');return false;}if(!checkValueElementById('strPhone')){alert('Vui lòng cung cấp Điện thoại liên lạc.');return false;}if(!checkValueElementById('strReason')){alert('Vui lòng chọn Vấn đề quan tâm.');return false;}if(!checkValueElementById('strTitle')){alert('Vui lòng nhập tiêu đề cần gửi.');return false;}if(!checkValueElementById('strContent')){alert('Vui lòng nhập nội dung gửi.');return false;}if(!checkValueElementById('strCaptcha')){alert('Vui lòng nhập Mã xác nhận.');return false;}return true;}function displayLengthContent(idContent,idDisplay,maxLength){var e=document.getElementById(idContent);var e1=document.getElementById(idDisplay);if(e&&e1){var n=e.value.length<=maxLength?e.value.length:maxLength;e1.value=n;}}