function mov()

{

at=document.booking.email.value.indexOf("@")

dot=document.booking.email.value.indexOf(".")



if (document.booking.fname.value=="")

{

alert("Name field Could not be blank.");

document.booking.fname.focus();

return false;

}


if (document.booking.mobile.value=="")

{

alert("Mobile field Could not be blank.");

document.booking.mobile.focus();

return false;

}


if (document.booking.email.value=="")

{

alert("Email field Could not be blank.");

document.booking.email.focus();

return false;

}

if(at== -1)

{

alert("Not a valid Email.");

document.booking.email.focus();

return false;

}


if(dot== -1)

{

alert("Not a valid Email.");

document.booking.email.focus();

return false;

}

if (document.booking.cname.value=="")

{

alert("Company Name field Could not be blank.");

document.booking.cname.focus();

return false;

}

if (document.booking.caddress.value=="")

{

alert("Company Address field Could not be blank.");

document.booking.caddress.focus();

return false;

}


if (document.booking.city.value=="")

{

alert("City field Could not be blank.");

document.booking.city.focus();





return false;

}

if (document.booking.zip.value=="")

{

alert("Zip field Could not be blank.");

document.booking.zip.focus();

return false;

}

if (document.booking.no_part.value=="")

{

alert("No. of Participants field Could not be blank.");

document.booking.no_part.focus();

return false;

}


if (document.booking.budget.value=="")

{

alert("Budget field Could not be blank.");

document.booking.budget.focus();

return false;

}

if (document.booking.comments.value=="")

{

alert("Comments field Could not be blank.");

document.booking.comments.focus();

return false;

}








}
