function SubmitForm() {
if(document.all.COMMENTS.value.length < 2) {
document.all.COMMENTS.style.backgroundColor = "#CCFFCC";
alert("Please provide your Comments.");
document.all.COMMENTS.focus();
} else {
document.Contact_Form.submit();
}
}