function mov2()
{
at=document.form.email.value.indexOf("@")
dot=document.form.email.value.indexOf(".")

if (document.form.name.value=="")
{
alert("Name field Could not be blank.");
document.form.name.focus();
return false;
}

if (document.form.phone.value=="")
{
alert("Phone field Could not be blank.");
document.form.phone.focus();
return false;
}
if (document.form.description.value=="")
{
alert("Describe your requirements field Could not be blank.");
document.form.description.focus();
return false;
}

if (document.form.email.value=="")
{
alert("Email field Could not be blank.");
document.form.email.focus();
return false;
}
if(at== -1)
{
alert("Not a valid Email.");
document.form.email.focus();
return false;
}

if(dot== -1)
{
alert("Not a valid Email.");
document.form.email.focus();
return false;
}

}


