function verifysubmit(){
	with(document.formBooking){
		if(chrfirstname.value==""){
			alert('Input First name');
			chrfirstname.focus();
			return false;
		}
		if(chrsurname.value==""){
			alert('Input sur name');
			chrsurname.focus();
			return false;
		}
		if(chraddress2.value==""){
			alert('Input Zip/Postcode/City');
			chraddress2.focus();
			return false;
		}
		if(idcountry.value==""){
			alert('Input Country');
			idcountry.focus();
			return false;
		}
		if(chremail.value==""){
			alert('Input Email');
			chremail.focus();
			return false;
		}else{
			if(!isEmail(chremail.value)){
				alert("Wrong E-mail address");
				return false;
			}
		}
		if(intadults.value==""){
			alert('Select Number of persons Adults');
			intadults.focus();
			return false;
		}
		if(intchildren.value==""){
			alert('Select Number of Children');
			intchildren.focus();
			return false;
		}
		return true;
	}
}

function showContentPage(page) { 	
	var fileName = 'villas-content.php?mode=showall&PageShow='+page;
	new ajax(fileName , { method: 'post', update: 'showAllArea'}).request();
}
