// JavaScript Document
function booking_window(href){
	window.open (href, 'newwindow', config='height=720,width=1018, toolbar=no, menubar=no, scrollbars=yes, resizable=no, location=no, directories=no, status=no');
}


/*
function booknow(){
		var x = CompareDates(document.form1.CheckOutDate.value,document.form1.CheckInDate.value);
		
		if (!x){
				document.form1.DatesOk.value='5';
		}
		else {
				document.form1.DatesOk.value='1';
		}
		
		var x2 = GetToday();
		var x1 = CompareDates(document.form1.CheckInDate.value,x2);
		
		if(!x1) {
				document.form1.DatesOk2.value='5';
		}
		else {
			document.form1.DatesOk2.value='1';
		}
		 
		if(document.form1.DatesOk2.value=='5') {
			alert('Check In Date. Date must be at least one day after the present Date!');
		}
		else {   
			if(document.form1.DatesOk.value=='5') { 
				alert('Check Out Date. Date must be at least one day after the Check In Date!');
			}
			else { 
				if(document.form1.ResortID.value=='1') {
					var href = 'https://www.primal-res.gr/HotelBookingEngines/AksHotels/PortoHeliHotel/BookingEngine/Step1.php?CheckInDate=' + document.form1.CheckInDate.value + '&CheckOutDate=' + document.form1.CheckOutDate.value;
					booking_window(href);
				}
				if(document.form1.ResortID.value=='2') {
						var href = 'https://www.primal-res.gr/HotelBookingEngines/AksHotels/HinitsaBayHotel/BookingEngine/Step1.php?CheckInDate=' + document.form1.CheckInDate.value + '&CheckOutDate=' + document.form1.CheckOutDate.value;
						booking_window(href);
				}
				if(document.form1.ResortID.value=='3') {
						var href = 'https://www.primal-res.gr/HotelBookingEngines/AksHotels/AnnabelleVillage/BookingEngine/Step1.php?CheckInDate=' + document.form1.CheckInDate.value + '&CheckOutDate=' + document.form1.CheckOutDate.value;
						booking_window(href);
				}
			}
		}
}
*/
