function checkContactUs()
{
if(document.getElementById("your_name").value.length < 4) {
alert("Please enter your name.")
return false;
}
if(document.getElementById("comment").value.length < 4) {
alert("Please enter a short message.")
return false;
}
}

