//Contact us
function contactusform1() {
if (document.getElementById("value15").value.length == 0)
{
alert("Company Name is empty");
document.getElementById("value15").focus();
return false;
}
if (document.getElementById("value17").value == "")
{
alert("Task Type is empty");
document.getElementById("value17").focus();
return false;
}
document.contactusform.submit();
}