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.address.value=="")

{

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

document.booking.address.focus();

return false;

}

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

{

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

document.booking.mobile.focus();

return false;

}

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

{

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

document.booking.dest.focus();

return false;

}

if (document.booking.date1.value=="")
{

alert("Date of travel field Could not be blank.");

document.booking.date1.focus();

return false;

}

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

{

alert("Date of return field Could not be blank.");

document.booking.date2.focus();

return false;

}


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

{

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

document.booking.no_nights.focus();

return false;

}


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

{

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

document.booking.no_adults.focus();

return false;

}

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

{

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

document.booking.no_child.focus();

return false;

}

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

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

document.booking.comments.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.country.value=="")

{

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

document.booking.country.focus();

return false;

}


}
