<!-- Begin
function checkFields() {
missinginfo = "";
if (document.booking.name.value == "") {
missinginfo += "\n     -  Name";
}
if (document.booking.phone.value == "") {
missinginfo += "\n     -  Phone";
}
if (document.booking.arrival.value == "") {
missinginfo += "\n     -  Arrival";
}
if (!document.booking.accomodation[0].checked && !document.booking.accomodation[1].checked) {
missinginfo += "\n     -  Accomodation";
}
//if (document.form.country.value == "") {
//missinginfo += "\n     -  <?=$str_checkout_Country;?>";
//}
//if (document.form.tel.value == "") {
//missinginfo += "\n     -  <?=$str_checkout_Telephone;?>";
//}
//if ((document.form.mail.value == "") || 
//(document.form.mail.value.indexOf('@') == -1) || 
//(document.form.mail.value.indexOf('.') == -1)) {
//missinginfo += "\n     -  <?=$str_checkout_Email;?>";
//}
if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"You have missed to fill-up the following fields:\n" +
missinginfo + "\n_____________________________" +
"\nPlease re-enter and submit again!";
alert(missinginfo);
return false;
}
else return true;
}


var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}
//  End -->
