function contactForm(){

if(document.getElementById('dept').value=='select')
{
alert('Please fill out all fields in order to submit your inquiry');
document.getElementById('dept').focus();
return false;
}

if(document.getElementById('name').value=='')
{
alert('Please fill out all fields in order to submit your inquiry');
document.getElementById('name').focus();
return false;
}

if(document.getElementById('conemail').value=='')
{
alert('Please fill out all fields in order to submit your inquiry');
document.getElementById('conemail').focus();
return false;
}

if(document.getElementById('spam').value=='')
{
alert('Please fill out all fields in order to submit your review');
document.getElementById('spam').focus();
return false;
}

if(document.getElementById('spam').value!='13')
{
alert('Please enter correct answer!');
document.getElementById('spam').focus();
return false;
}

if(document.getElementById('inquiry').value=='')
{
alert('Please fill out all fields in order to submit your inquiry');
document.getElementById('inquiry').focus();
return false;
}
}
