
<HEAD>
	<SCRIPT LANGUAGE="JavaScript" SRC="CalendarPopup.js"></SCRIPT>
	<SCRIPT LANGUAGE="JavaScript">var cal = new CalendarPopup();</SCRIPT>
	<SCRIPT LANGUAGE="JavaScript" SRC="date.js"></SCRIPT>
</HEAD>
<script language='JavaScript'>top.location.href = 'https://www.palmbeach.co.il/orderS1.asp'</script>

<html dir="ltr">

<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<meta http-equiv="Content-Language" content="he">
	<link href="design.css" rel="stylesheet" type="text/css">
	<link rel="shortcut icon" 	href="favicon.ico" type="image/x-icon">
    <link rel="icon" 			href="favicon.ico" type="image/x-icon">
	<meta name="keywords" content="">
	<meta name="description" content="">
	<meta name="robots" content="index,follow">
	<title>מלון חוף התמרים - הזמנת חדרים</title>
	<script src="simplemarquee.js" type="text/javascript"></script>
</head>

<body class="style10" bgcolor="#f7f7f7"  topmargin="0">
<center>


<table width="790" height="100%" bgcolor="#FFFFFF"  border="0" cellspacing="0" cellpadding="0" dir=ltr>
<tr style="padding:0px;margin:0px;height:72px">
<td width=640 class="style10" valign="top" dir=rtl style="text-align:justify;padding-left:10px;padding-right:10px;">
    
    <table width="100%" cellspacing="0" cellpadding="0" border="0">
    <tr><td height="110"  valign="top" align="right">
	    <b style="font-size:2px;"><br></b>

        <span class="style9" style="color:#777777"></span><br>
       <div align="left"><A href="go.asp"><img src="header.jpg" border="0"></A></div>
    </td>
    </tr><tr>
    <td style="padding-right:17px;padding-left:15px;">
    <br><br>


<img src="pic1.jpg" align="left" border="0">
<h1 class="header">הזמנת חדרים</h1>
<b class="style10b">אנא מלא את פרטי ההזמנה ולחץ המשך לבדיקת זמינות ולמחירים</b>
<STYLE>
	.TESTcpYearNavigation, 
	.TESTcpMonthNavigation{background-color:#777777;text-align:center;vertical-align:center;text-decoration:none;color:#FFFFFF;font-weight:bold;}
	.TESTcpDayColumnHeader, .TESTcpYearNavigation, .TESTcpMonthNavigation, .TESTcpCurrentMonthDate, .TESTcpCurrentMonthDateDisabled, .TESTcpOtherMonthDate, .TESTcpOtherMonthDateDisabled, .TESTcpCurrentDate, .TESTcpCurrentDateDisabled, .TESTcpTodayText, .TESTcpTodayTextDisabled, .TESTcpText{font-family:arial;font-size:8pt;}
	TD.TESTcpDayColumnHeader{text-align:right;border:solid thin #777777;border-width:0 0 1 0;}.TESTcpCurrentMonthDate, .TESTcpOtherMonthDate, .TESTcpCurrentDate{text-align:right;text-decoration:none;}.TESTcpCurrentMonthDateDisabled, .TESTcpOtherMonthDateDisabled, .TESTcpCurrentDateDisabled{color:#D0D0D0;text-align:right;text-decoration:line-through;}.TESTcpCurrentMonthDate{color:#777777;font-weight:bold;} .TESTcpCurrentDate{color: #FFFFFF;font-weight:bold;}.TESTcpOtherMonthDate{color:#808080;}
	TD.TESTcpCurrentDate{color:#FFFFFF;background-color: #777777;border-width:1;border:solid thin #000000;}TD.TESTcpCurrentDateDisabled{border-width:1;border:solid thin #FFAAAA;}TD.TESTcpTodayText,	TD.TESTcpTodayTextDisabled{border:solid thin #777777;border-width:1 0 0 0;}
	A.TESTcpTodayText,	SPAN.TESTcpTodayTextDisabled{height:20px;}A.TESTcpTodayText{color:#777777;font-weight:bold;}SPAN.TESTcpTodayTextDisabled{color:#D0D0D0;}.TESTcpBorder{border:solid thin #777777;}
</STYLE>

<br><br><br>




<SCRIPT LANGUAGE="JavaScript">
var yesterday = new Date(); 
yesterday.setDate(yesterday.getDate() - 1)

var cal01 = new CalendarPopup("div1"); 
cal01.setCssPrefix("TEST");
cal01.addDisabledDates(null,formatDate(yesterday,"yyyy-MM-dd")); 
//cal01.addDisabledDates("4/4/2009"); 

function fixnumOfDays(){

		d1=document.forms[0].date01.value;d1=d1.substr(3,2) +  "/" + d1.substr(0,2) + "/" + d1.substr(6,4);
		var d1fixed=new Date();
		d1fixed.set({ year:Math.floor(d1.substr(6,4)), month: Math.floor(d1.substr(0,2))-1, day:Math.floor(d1.substr(3,2)), hour:0, minute:0, second:0})


		d2=document.forms[0].date02.value;
		var d2fixed=new Date();
		d2fixed.set({ year:Math.floor(d2.substr(6,4)), month: Math.floor(d2.substr(3,2))-1, day:Math.floor(d2.substr(0,2)), hour:0, minute:0, second:0})


	document.forms[0].numOfDays.value=daysBetween(d1fixed, d2fixed);
	
}
function checkStart(){
	var caller=0;
	var d1, d2;
	if (document.forms[0].date01.value!=document.forms[0].date01x.value) {
		caller=1;document.forms[0].date01x.value=document.forms[0].date01.value;
	}
	
	if (document.forms[0].date02.value!=document.forms[0].date02x.value) {
		caller=2;document.forms[0].date02x.value=document.forms[0].date02.value;
	}
	if ((caller==1) && (document.forms[0].date02.value=='')) {
		d1=document.forms[0].date01.value;d1=d1.substr(3,2) +  "/" + d1.substr(0,2) + "/" + d1.substr(6,4);
		var d1fixed=new Date();
		d1fixed.set({ year:Math.floor(d1.substr(6,4)), month: Math.floor(d1.substr(0,2))-1, day:Math.floor(d1.substr(3,2)), hour:0, minute:0, second:0})
		d1fixed.add({ days: 1 })
		document.forms[0].date02.value=d1fixed.toString("dd/MM/yyyy"); 	
		fixnumOfDays();
	}
	
	if (caller!=0) {
		if ((document.forms[0].date01.value!='') && (document.forms[0].date02.value!='')) {
			d1=document.forms[0].date01.value;d1=d1.substr(3,2) +  "/" + d1.substr(0,2) + "/" + d1.substr(6,4);	d1x=Date.parse(d1);
			d2=document.forms[0].date02.value;d2=d2.substr(3,2) +  "/" + d2.substr(0,2) + "/" + d2.substr(6,4);	d2x= Date.parse(d2); 
			if (d2x<=d1x) {
				var d1fixed=new Date();
				d1fixed.set({ year:Math.floor(d1.substr(6,4)), month: Math.floor(d1.substr(0,2))-1, day:Math.floor(d1.substr(3,2)), hour:0, minute:0, second:0})
				d1fixed.add({ days: 1 })
				alert("לא ניתן לקבוע תאריך יציאה מוקדם מתאריך כניסה \n\t          תאריך היציאה עודכן");
				document.forms[0].date02.value=d1fixed.toString("dd/MM/yyyy"); 
			}
			fixnumOfDays();
		}
	}
}

setInterval(checkStart, 200);
fixnumOfDays();
</SCRIPT>


<FORM action="OrderS1.asp" NAME="orderS1x" id="orderS1x" class="style10" method="post" onSubmit="return checkform(this);"><input type="hidden" name="action" value="CheckVacant">
<div style="width:345px;border-bottom:1px solid #999999;padding-bottom:4px;">
    תאריך כניסה: <INPUT TYPE="text" NAME="date01" VALUE="" SIZE=8 readonly onClick="cal01.select(document.forms[0].date01,'anchor01','dd/MM/yyyy'); return false;" style="line-height:18px;"><INPUT TYPE="hidden" NAME="date01x" VALUE="" SIZE=10>
    <A HREF="#" onClick="cal01.select(document.forms[0].date01,'anchor01','dd/MM/yyyy'); return false;" TITLE="" NAME="anchor01" ID="anchor01"><img src="date.gif" border="0"></A>
    &nbsp;&nbsp;
    תאריך יציאה: <INPUT TYPE="text" NAME="date02" VALUE="" SIZE=8 readonly onClick="cal01.select(document.forms[0].date02,'anchor01','dd/MM/yyyy'); return false;" style="line-height:18px;"><INPUT TYPE="hidden" NAME="date02x" VALUE="" SIZE=10>
    <A HREF="#" onClick="cal01.select(document.forms[0].date02,'anchor01','dd/MM/yyyy'); return false;" TITLE="" NAME="anchor02" ID="anchor02"><img src="date.gif" border="0"></A>
</div>
כמות ימים: <INPUT TYPE="text" NAME="numOfDays" VALUE="" SIZE=2 style="border:0px;line-height:22px;" readonly>
<br>
<br>
אורחים בחדר:
	
	<select name="People" style="width:135px;">
	<option value="1" >יחיד</option>
	<option value="2" selected>זוג</option>
	<option value="3" >זוג + ילד</option>
	<option value="4" >זוג + 2 ילדים</option>
	<option value="5" >3 מבוגרים</option>
	</select>&nbsp;&nbsp;

+ מס' תינוקות: 
	<select name="Babies" style="width:42px;">
	<option value="0" selected>0</option>
	<option value="1" >1</option>
	<option value="2" >2</option>
	<option value="3" >3</option>
	</select>
<br>
<br>

סוג החדר:
	<select name="roomType" style="width:105px;">
	
        <a href="RoomPricesManagement.asp?rp_roomtype=20761&WeekdayWeekend=">Regular</a>&nbsp;&nbsp;|&nbsp;&nbsp;
        <option value="20761" >Regular</option>
        
        <a href="RoomPricesManagement.asp?rp_roomtype=20764&WeekdayWeekend=">regular-sp</a>&nbsp;&nbsp;|&nbsp;&nbsp;
        <option value="20764" >regular-sp</option>
        
        <a href="RoomPricesManagement.asp?rp_roomtype=20760&WeekdayWeekend=">Family</a>&nbsp;&nbsp;|&nbsp;&nbsp;
        <option value="20760" >Family</option>
        
        <a href="RoomPricesManagement.asp?rp_roomtype=20759&WeekdayWeekend=">Studio</a>&nbsp;&nbsp;|&nbsp;&nbsp;
        <option value="20759" >Studio</option>
        
        <a href="RoomPricesManagement.asp?rp_roomtype=20754&WeekdayWeekend=">Royal</a>&nbsp;&nbsp;|&nbsp;&nbsp;
        <option value="20754" >Royal</option>
        
	</select>&nbsp;&nbsp;

סוג האירוח:
	<select name="visitType" style="width:105px;">
	<option value="1" >לינה וארוחת בוקר</option>
	<option value="2" >חצי פנסיון</option>
	<!--option value="3" >פנסיון מלא</option-->
	<option value="4" >הכל כלול</option>
	</select>
<br>
<br>
<input type="submit" class="minheader" value="המשך" style="margin-right:242;width:100;height:22px;color:#777777;font-size:12px;font-weight:bold;border:1px solid #777777;">

<br>
<br>
<br>
<INPUT TYPE="hidden" NAME="dd1" VALUE="x" SIZE=28 readonly  SIZE=10>
<INPUT TYPE="hidden" NAME="dd2" VALUE="x" SIZE=28 readonly  SIZE=10>
<INPUT TYPE="hidden" NAME="dd3" VALUE="x" SIZE=28 readonly  SIZE=10>
<INPUT TYPE="hidden" NAME="roomTypeError" VALUE="0" SIZE=28 readonly  SIZE=10>


<INPUT TYPE="hidden" NAME="season1" VALUE="x" style="width:12px;" readonly>
<INPUT TYPE="hidden" NAME="season1active" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season1start" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season1end" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season1days" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season1minDays" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season1hb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season1fb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season1bb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season1ai" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season1howManyDaysHas" VALUE="0" style="width:20px;" readonly>
<INPUT TYPE="hidden" NAME="season1accomondationError" VALUE="0" style="width:12px;" readonly>


<INPUT TYPE="hidden" NAME="season2" VALUE="x" style="width:12px;" readonly>
<INPUT TYPE="hidden" NAME="season2active" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season2start" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season2end" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season2days" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season2minDays" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season2hb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season2fb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season2bb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season2ai" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season2howManyDaysHas" VALUE="0" style="width:20px;" readonly>
<INPUT TYPE="hidden" NAME="season2accomondationError" VALUE="0" style="width:12px;" readonly>


<INPUT TYPE="hidden" NAME="season3" VALUE="x" style="width:12px;" readonly>
<INPUT TYPE="hidden" NAME="season3active" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season3start" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season3end" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season3days" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season3minDays" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season3hb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season3fb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season3bb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season3ai" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season3howManyDaysHas" VALUE="0" style="width:20px;" readonly>
<INPUT TYPE="hidden" NAME="season3accomondationError" VALUE="0" style="width:12px;" readonly>


<INPUT TYPE="hidden" NAME="season4" VALUE="x" style="width:12px;" readonly>
<INPUT TYPE="hidden" NAME="season4active" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season4start" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season4end" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season4days" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season4minDays" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season4hb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season4fb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season4bb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season4ai" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season4howManyDaysHas" VALUE="0" style="width:20px;" readonly>
<INPUT TYPE="hidden" NAME="season4accomondationError" VALUE="0" style="width:12px;" readonly>


<INPUT TYPE="hidden" NAME="season5" VALUE="x" style="width:12px;" readonly>
<INPUT TYPE="hidden" NAME="season5active" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season5start" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season5end" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season5days" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season5minDays" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season5hb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season5fb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season5bb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season5ai" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season5howManyDaysHas" VALUE="0" style="width:20px;" readonly>
<INPUT TYPE="hidden" NAME="season5accomondationError" VALUE="0" style="width:12px;" readonly>


<INPUT TYPE="hidden" NAME="season6" VALUE="x" style="width:12px;" readonly>
<INPUT TYPE="hidden" NAME="season6active" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season6start" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season6end" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season6days" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season6minDays" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season6hb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season6fb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season6bb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season6ai" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season6howManyDaysHas" VALUE="0" style="width:20px;" readonly>
<INPUT TYPE="hidden" NAME="season6accomondationError" VALUE="0" style="width:12px;" readonly>


<INPUT TYPE="hidden" NAME="season7" VALUE="x" style="width:12px;" readonly>
<INPUT TYPE="hidden" NAME="season7active" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season7start" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season7end" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season7days" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season7minDays" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season7hb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season7fb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season7bb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season7ai" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season7howManyDaysHas" VALUE="0" style="width:20px;" readonly>
<INPUT TYPE="hidden" NAME="season7accomondationError" VALUE="0" style="width:12px;" readonly>


<INPUT TYPE="hidden" NAME="season8" VALUE="x" style="width:12px;" readonly>
<INPUT TYPE="hidden" NAME="season8active" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season8start" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season8end" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season8days" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season8minDays" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season8hb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season8fb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season8bb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season8ai" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season8howManyDaysHas" VALUE="0" style="width:20px;" readonly>
<INPUT TYPE="hidden" NAME="season8accomondationError" VALUE="0" style="width:12px;" readonly>


<INPUT TYPE="hidden" NAME="season9" VALUE="x" style="width:12px;" readonly>
<INPUT TYPE="hidden" NAME="season9active" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season9start" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season9end" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season9days" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season9minDays" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season9hb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season9fb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season9bb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season9ai" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season9howManyDaysHas" VALUE="0" style="width:20px;" readonly>
<INPUT TYPE="hidden" NAME="season9accomondationError" VALUE="0" style="width:12px;" readonly>


<INPUT TYPE="hidden" NAME="season10" VALUE="x" style="width:12px;" readonly>
<INPUT TYPE="hidden" NAME="season10active" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season10start" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season10end" VALUE="x" style="width:50px;" readonly>
<INPUT TYPE="hidden" NAME="season10days" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season10minDays" VALUE="x" style="width:17px;" readonly>
<INPUT TYPE="hidden" NAME="season10hb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season10fb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season10bb" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season10ai" VALUE="x" style="width:12px;direction:ltr;" readonly>
<INPUT TYPE="hidden" NAME="season10howManyDaysHas" VALUE="0" style="width:20px;" readonly>
<INPUT TYPE="hidden" NAME="season10accomondationError" VALUE="0" style="width:12px;" readonly>


</FORM>

<span class="style10" style="width:345px;text-align:justify">
קלאב חוף התמרים חרט על דגלו את השאיפה למצוינות בשירות לאורח.<br><br>
החדרים עוברים טיפולים שוטפים ברמת אחזקת החדר וניקיונו, כל זאת על מנת להבטיח לאורח חווית נופש מושלמת.
כל חדר בקלאב בנוי על מנת לענות לאורחים על כל צורכיהם, וגודל החדרים מותאם לכל משפחה בהתאם למס' הנפשות שהיא מונה.
אנו מזמינים אתכם לבוא ולחוות חופשה חלומית ומהנה. 
</span>


<DIV ID="div1" STYLE="position:absolute;visibility:hidden;background-color:white;layer-background-color:white;"></DIV>





<script language="JavaScript" type="text/javascript">
<!--



 //for each season
//how many days in season
	
	orderS1x.season1.value = '1';
	orderS1x.season1active.value = 'False';
	orderS1x.season1start.value = '01/09/2010';
	orderS1x.season1end.value = '31/12/2010';
	orderS1x.season1days.value = '';
	orderS1x.season1minDays.value = '1';
	orderS1x.season1hb.value = 'False';
	orderS1x.season1fb.value = 'False';
	orderS1x.season1bb.value = 'False';
	orderS1x.season1ai.value = 'False';
 //for each season
//how many days in season
	
	orderS1x.season2.value = '2';
	orderS1x.season2active.value = 'False';
	orderS1x.season2start.value = '';
	orderS1x.season2end.value = '';
	orderS1x.season2days.value = '';
	orderS1x.season2minDays.value = '1';
	orderS1x.season2hb.value = 'False';
	orderS1x.season2fb.value = 'False';
	orderS1x.season2bb.value = 'False';
	orderS1x.season2ai.value = 'False';
 //for each season
//how many days in season
	
	orderS1x.season3.value = '3';
	orderS1x.season3active.value = 'False';
	orderS1x.season3start.value = '';
	orderS1x.season3end.value = '';
	orderS1x.season3days.value = '';
	orderS1x.season3minDays.value = '1';
	orderS1x.season3hb.value = 'False';
	orderS1x.season3fb.value = 'False';
	orderS1x.season3bb.value = 'False';
	orderS1x.season3ai.value = 'False';
 //for each season
//how many days in season
	
	orderS1x.season4.value = '4';
	orderS1x.season4active.value = 'False';
	orderS1x.season4start.value = '29/03/2010';
	orderS1x.season4end.value = '29/03/2010';
	orderS1x.season4days.value = '';
	orderS1x.season4minDays.value = '1';
	orderS1x.season4hb.value = 'False';
	orderS1x.season4fb.value = 'False';
	orderS1x.season4bb.value = 'False';
	orderS1x.season4ai.value = 'False';
 //for each season
//how many days in season
	
	orderS1x.season5.value = '5';
	orderS1x.season5active.value = 'False';
	orderS1x.season5start.value = '01/07/2010';
	orderS1x.season5end.value = '21/07/2010';
	orderS1x.season5days.value = '';
	orderS1x.season5minDays.value = '2';
	orderS1x.season5hb.value = 'False';
	orderS1x.season5fb.value = 'False';
	orderS1x.season5bb.value = 'False';
	orderS1x.season5ai.value = 'False';
 //for each season
//how many days in season
	
	orderS1x.season6.value = '6';
	orderS1x.season6active.value = 'True';
	orderS1x.season6start.value = '03/08/2010';
	orderS1x.season6end.value = '31/12/2010';
	orderS1x.season6days.value = '150';
	orderS1x.season6minDays.value = '1';
	orderS1x.season6hb.value = 'True';
	orderS1x.season6fb.value = 'True';
	orderS1x.season6bb.value = 'True';
	orderS1x.season6ai.value = 'False';
 //for each season
//how many days in season
	
	orderS1x.season7.value = '7';
	orderS1x.season7active.value = 'True';
	orderS1x.season7start.value = '22/09/2010';
	orderS1x.season7end.value = '02/10/2010';
	orderS1x.season7days.value = '10';
	orderS1x.season7minDays.value = '3';
	orderS1x.season7hb.value = 'True';
	orderS1x.season7fb.value = 'False';
	orderS1x.season7bb.value = 'False';
	orderS1x.season7ai.value = 'True';
 //for each season
//how many days in season
	
	orderS1x.season8.value = '8';
	orderS1x.season8active.value = 'False';
	orderS1x.season8start.value = '08/09/2010';
	orderS1x.season8end.value = '11/09/2010';
	orderS1x.season8days.value = '10';
	orderS1x.season8minDays.value = '3';
	orderS1x.season8hb.value = 'False';
	orderS1x.season8fb.value = 'False';
	orderS1x.season8bb.value = 'False';
	orderS1x.season8ai.value = 'False';
 //for each season
//how many days in season
	
	orderS1x.season9.value = '9';
	orderS1x.season9active.value = 'False';
	orderS1x.season9start.value = '';
	orderS1x.season9end.value = '';
	orderS1x.season9days.value = '10';
	orderS1x.season9minDays.value = '1';
	orderS1x.season9hb.value = 'False';
	orderS1x.season9fb.value = 'False';
	orderS1x.season9bb.value = 'False';
	orderS1x.season9ai.value = 'False';
 //for each season
//how many days in season
	
	orderS1x.season10.value = '10';
	orderS1x.season10active.value = 'False';
	orderS1x.season10start.value = '';
	orderS1x.season10end.value = '';
	orderS1x.season10days.value = '10';
	orderS1x.season10minDays.value = '1';
	orderS1x.season10hb.value = 'False';
	orderS1x.season10fb.value = 'False';
	orderS1x.season10bb.value = 'False';
	orderS1x.season10ai.value = 'False';


function checkform ( form ) {

d1=new Date(form.date01.value.substr(6,4),Math.floor(form.date01.value.substr(3,2))-1,form.date01.value.substr(0,2));
d2=new Date(form.date02.value.substr(6,4),Math.floor(form.date02.value.substr(3,2))-1,form.date02.value.substr(0,2));
form.dd1.value = d1;
form.dd2.value = d2;
orderS1x.roomTypeError.value=0;


// הרעיון: לוקח פרטי מחירון ועובר יום יום מתוך ימי המחירון ומשווה לתקופת ההזמנהת ומונה כמה 
function addOneDay(ddd) {
	ddd.setDate(ddd.getDate() + 1);
}
tmpo='';

	if (orderS1x.season1active.value=='True') {
		 //set start season date (vdate)
		d3=new Date(form.season1start.value.substr(6,4),Math.floor(form.season1start.value.substr(3,2))-1,form.season1start.value.substr(0,2));form.dd3.value = d3;
		orderS1x.season1howManyDaysHas.value=0;
		for (i=0;i<=orderS1x.season1days.value;i++)
		{
			tmpo=tmpo+d3;	
			//check if vdate is in user's date range
			if ((d3>=d1) && (d3<d2)) {
				//add one to season1howManyDaysHas 
			tmpo=tmpo+"--------------";
				orderS1x.season1howManyDaysHas.value = Math.floor(orderS1x.season1howManyDaysHas.value)+1;
			}
			tmpo=tmpo+"<br>";
		
			addOneDay(d3);
		}
		//check if this his accomondation fits this pricelist
		orderS1x.season1accomondationError.value='0';
		if (orderS1x.season1howManyDaysHas.value>1){
			if ((orderS1x.visitType.value==1) && (orderS1x.season1bb.value=='False')) {orderS1x.season1accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==2) && (orderS1x.season1hb.value=='False')) {orderS1x.season1accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==3) && (orderS1x.season1fb.value=='False')) {orderS1x.season1accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==4) && (orderS1x.season1ai.value=='False')) {orderS1x.season1accomondationError.value='1';orderS1x.roomTypeError.value=1;}
		}

		if ((Math.floor(orderS1x.season1howManyDaysHas.value)>0) && (Math.floor(orderS1x.season1howManyDaysHas.value)<Math.floor(orderS1x.season1minDays.value))) 
		{ alert( "ישנו מינימום של "+orderS1x.season1minDays.value+" לילות בין התאריכים "+orderS1x.season1start.value+" ו- "+orderS1x.season1end.value );return false ; }

	}



	if (orderS1x.season2active.value=='True') {
		 //set start season date (vdate)
		d3=new Date(form.season2start.value.substr(6,4),Math.floor(form.season2start.value.substr(3,2))-1,form.season2start.value.substr(0,2));form.dd3.value = d3;
		orderS1x.season2howManyDaysHas.value=0;
		for (i=0;i<=orderS1x.season2days.value;i++)
		{
			tmpo=tmpo+d3;	
			//check if vdate is in user's date range
			if ((d3>=d1) && (d3<d2)) {
				//add one to season2howManyDaysHas 
			tmpo=tmpo+"--------------";
				orderS1x.season2howManyDaysHas.value = Math.floor(orderS1x.season2howManyDaysHas.value)+1;
			}
			tmpo=tmpo+"<br>";
		
			addOneDay(d3);
		}
		//check if this his accomondation fits this pricelist
		orderS1x.season2accomondationError.value='0';
		if (orderS1x.season2howManyDaysHas.value>1){
			if ((orderS1x.visitType.value==1) && (orderS1x.season2bb.value=='False')) {orderS1x.season2accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==2) && (orderS1x.season2hb.value=='False')) {orderS1x.season2accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==3) && (orderS1x.season2fb.value=='False')) {orderS1x.season2accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==4) && (orderS1x.season2ai.value=='False')) {orderS1x.season2accomondationError.value='1';orderS1x.roomTypeError.value=1;}
		}

		if ((Math.floor(orderS1x.season2howManyDaysHas.value)>0) && (Math.floor(orderS1x.season2howManyDaysHas.value)<Math.floor(orderS1x.season2minDays.value))) 
		{ alert( "ישנו מינימום של "+orderS1x.season2minDays.value+" לילות בין התאריכים "+orderS1x.season2start.value+" ו- "+orderS1x.season2end.value );return false ; }

	}



	if (orderS1x.season3active.value=='True') {
		 //set start season date (vdate)
		d3=new Date(form.season3start.value.substr(6,4),Math.floor(form.season3start.value.substr(3,2))-1,form.season3start.value.substr(0,2));form.dd3.value = d3;
		orderS1x.season3howManyDaysHas.value=0;
		for (i=0;i<=orderS1x.season3days.value;i++)
		{
			tmpo=tmpo+d3;	
			//check if vdate is in user's date range
			if ((d3>=d1) && (d3<d2)) {
				//add one to season3howManyDaysHas 
			tmpo=tmpo+"--------------";
				orderS1x.season3howManyDaysHas.value = Math.floor(orderS1x.season3howManyDaysHas.value)+1;
			}
			tmpo=tmpo+"<br>";
		
			addOneDay(d3);
		}
		//check if this his accomondation fits this pricelist
		orderS1x.season3accomondationError.value='0';
		if (orderS1x.season3howManyDaysHas.value>1){
			if ((orderS1x.visitType.value==1) && (orderS1x.season3bb.value=='False')) {orderS1x.season3accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==2) && (orderS1x.season3hb.value=='False')) {orderS1x.season3accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==3) && (orderS1x.season3fb.value=='False')) {orderS1x.season3accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==4) && (orderS1x.season3ai.value=='False')) {orderS1x.season3accomondationError.value='1';orderS1x.roomTypeError.value=1;}
		}

		if ((Math.floor(orderS1x.season3howManyDaysHas.value)>0) && (Math.floor(orderS1x.season3howManyDaysHas.value)<Math.floor(orderS1x.season3minDays.value))) 
		{ alert( "ישנו מינימום של "+orderS1x.season3minDays.value+" לילות בין התאריכים "+orderS1x.season3start.value+" ו- "+orderS1x.season3end.value );return false ; }

	}



	if (orderS1x.season4active.value=='True') {
		 //set start season date (vdate)
		d3=new Date(form.season4start.value.substr(6,4),Math.floor(form.season4start.value.substr(3,2))-1,form.season4start.value.substr(0,2));form.dd3.value = d3;
		orderS1x.season4howManyDaysHas.value=0;
		for (i=0;i<=orderS1x.season4days.value;i++)
		{
			tmpo=tmpo+d3;	
			//check if vdate is in user's date range
			if ((d3>=d1) && (d3<d2)) {
				//add one to season4howManyDaysHas 
			tmpo=tmpo+"--------------";
				orderS1x.season4howManyDaysHas.value = Math.floor(orderS1x.season4howManyDaysHas.value)+1;
			}
			tmpo=tmpo+"<br>";
		
			addOneDay(d3);
		}
		//check if this his accomondation fits this pricelist
		orderS1x.season4accomondationError.value='0';
		if (orderS1x.season4howManyDaysHas.value>1){
			if ((orderS1x.visitType.value==1) && (orderS1x.season4bb.value=='False')) {orderS1x.season4accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==2) && (orderS1x.season4hb.value=='False')) {orderS1x.season4accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==3) && (orderS1x.season4fb.value=='False')) {orderS1x.season4accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==4) && (orderS1x.season4ai.value=='False')) {orderS1x.season4accomondationError.value='1';orderS1x.roomTypeError.value=1;}
		}

		if ((Math.floor(orderS1x.season4howManyDaysHas.value)>0) && (Math.floor(orderS1x.season4howManyDaysHas.value)<Math.floor(orderS1x.season4minDays.value))) 
		{ alert( "ישנו מינימום של "+orderS1x.season4minDays.value+" לילות בין התאריכים "+orderS1x.season4start.value+" ו- "+orderS1x.season4end.value );return false ; }

	}



	if (orderS1x.season5active.value=='True') {
		 //set start season date (vdate)
		d3=new Date(form.season5start.value.substr(6,4),Math.floor(form.season5start.value.substr(3,2))-1,form.season5start.value.substr(0,2));form.dd3.value = d3;
		orderS1x.season5howManyDaysHas.value=0;
		for (i=0;i<=orderS1x.season5days.value;i++)
		{
			tmpo=tmpo+d3;	
			//check if vdate is in user's date range
			if ((d3>=d1) && (d3<d2)) {
				//add one to season5howManyDaysHas 
			tmpo=tmpo+"--------------";
				orderS1x.season5howManyDaysHas.value = Math.floor(orderS1x.season5howManyDaysHas.value)+1;
			}
			tmpo=tmpo+"<br>";
		
			addOneDay(d3);
		}
		//check if this his accomondation fits this pricelist
		orderS1x.season5accomondationError.value='0';
		if (orderS1x.season5howManyDaysHas.value>1){
			if ((orderS1x.visitType.value==1) && (orderS1x.season5bb.value=='False')) {orderS1x.season5accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==2) && (orderS1x.season5hb.value=='False')) {orderS1x.season5accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==3) && (orderS1x.season5fb.value=='False')) {orderS1x.season5accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==4) && (orderS1x.season5ai.value=='False')) {orderS1x.season5accomondationError.value='1';orderS1x.roomTypeError.value=1;}
		}

		if ((Math.floor(orderS1x.season5howManyDaysHas.value)>0) && (Math.floor(orderS1x.season5howManyDaysHas.value)<Math.floor(orderS1x.season5minDays.value))) 
		{ alert( "ישנו מינימום של "+orderS1x.season5minDays.value+" לילות בין התאריכים "+orderS1x.season5start.value+" ו- "+orderS1x.season5end.value );return false ; }

	}



	if (orderS1x.season6active.value=='True') {
		 //set start season date (vdate)
		d3=new Date(form.season6start.value.substr(6,4),Math.floor(form.season6start.value.substr(3,2))-1,form.season6start.value.substr(0,2));form.dd3.value = d3;
		orderS1x.season6howManyDaysHas.value=0;
		for (i=0;i<=orderS1x.season6days.value;i++)
		{
			tmpo=tmpo+d3;	
			//check if vdate is in user's date range
			if ((d3>=d1) && (d3<d2)) {
				//add one to season6howManyDaysHas 
			tmpo=tmpo+"--------------";
				orderS1x.season6howManyDaysHas.value = Math.floor(orderS1x.season6howManyDaysHas.value)+1;
			}
			tmpo=tmpo+"<br>";
		
			addOneDay(d3);
		}
		//check if this his accomondation fits this pricelist
		orderS1x.season6accomondationError.value='0';
		if (orderS1x.season6howManyDaysHas.value>1){
			if ((orderS1x.visitType.value==1) && (orderS1x.season6bb.value=='False')) {orderS1x.season6accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==2) && (orderS1x.season6hb.value=='False')) {orderS1x.season6accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==3) && (orderS1x.season6fb.value=='False')) {orderS1x.season6accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==4) && (orderS1x.season6ai.value=='False')) {orderS1x.season6accomondationError.value='1';orderS1x.roomTypeError.value=1;}
		}

		if ((Math.floor(orderS1x.season6howManyDaysHas.value)>0) && (Math.floor(orderS1x.season6howManyDaysHas.value)<Math.floor(orderS1x.season6minDays.value))) 
		{ alert( "ישנו מינימום של "+orderS1x.season6minDays.value+" לילות בין התאריכים "+orderS1x.season6start.value+" ו- "+orderS1x.season6end.value );return false ; }

	}



	if (orderS1x.season7active.value=='True') {
		 //set start season date (vdate)
		d3=new Date(form.season7start.value.substr(6,4),Math.floor(form.season7start.value.substr(3,2))-1,form.season7start.value.substr(0,2));form.dd3.value = d3;
		orderS1x.season7howManyDaysHas.value=0;
		for (i=0;i<=orderS1x.season7days.value;i++)
		{
			tmpo=tmpo+d3;	
			//check if vdate is in user's date range
			if ((d3>=d1) && (d3<d2)) {
				//add one to season7howManyDaysHas 
			tmpo=tmpo+"--------------";
				orderS1x.season7howManyDaysHas.value = Math.floor(orderS1x.season7howManyDaysHas.value)+1;
			}
			tmpo=tmpo+"<br>";
		
			addOneDay(d3);
		}
		//check if this his accomondation fits this pricelist
		orderS1x.season7accomondationError.value='0';
		if (orderS1x.season7howManyDaysHas.value>1){
			if ((orderS1x.visitType.value==1) && (orderS1x.season7bb.value=='False')) {orderS1x.season7accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==2) && (orderS1x.season7hb.value=='False')) {orderS1x.season7accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==3) && (orderS1x.season7fb.value=='False')) {orderS1x.season7accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==4) && (orderS1x.season7ai.value=='False')) {orderS1x.season7accomondationError.value='1';orderS1x.roomTypeError.value=1;}
		}

		if ((Math.floor(orderS1x.season7howManyDaysHas.value)>0) && (Math.floor(orderS1x.season7howManyDaysHas.value)<Math.floor(orderS1x.season7minDays.value))) 
		{ alert( "ישנו מינימום של "+orderS1x.season7minDays.value+" לילות בין התאריכים "+orderS1x.season7start.value+" ו- "+orderS1x.season7end.value );return false ; }

	}



	if (orderS1x.season8active.value=='True') {
		 //set start season date (vdate)
		d3=new Date(form.season8start.value.substr(6,4),Math.floor(form.season8start.value.substr(3,2))-1,form.season8start.value.substr(0,2));form.dd3.value = d3;
		orderS1x.season8howManyDaysHas.value=0;
		for (i=0;i<=orderS1x.season8days.value;i++)
		{
			tmpo=tmpo+d3;	
			//check if vdate is in user's date range
			if ((d3>=d1) && (d3<d2)) {
				//add one to season8howManyDaysHas 
			tmpo=tmpo+"--------------";
				orderS1x.season8howManyDaysHas.value = Math.floor(orderS1x.season8howManyDaysHas.value)+1;
			}
			tmpo=tmpo+"<br>";
		
			addOneDay(d3);
		}
		//check if this his accomondation fits this pricelist
		orderS1x.season8accomondationError.value='0';
		if (orderS1x.season8howManyDaysHas.value>1){
			if ((orderS1x.visitType.value==1) && (orderS1x.season8bb.value=='False')) {orderS1x.season8accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==2) && (orderS1x.season8hb.value=='False')) {orderS1x.season8accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==3) && (orderS1x.season8fb.value=='False')) {orderS1x.season8accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==4) && (orderS1x.season8ai.value=='False')) {orderS1x.season8accomondationError.value='1';orderS1x.roomTypeError.value=1;}
		}

		if ((Math.floor(orderS1x.season8howManyDaysHas.value)>0) && (Math.floor(orderS1x.season8howManyDaysHas.value)<Math.floor(orderS1x.season8minDays.value))) 
		{ alert( "ישנו מינימום של "+orderS1x.season8minDays.value+" לילות בין התאריכים "+orderS1x.season8start.value+" ו- "+orderS1x.season8end.value );return false ; }

	}



	if (orderS1x.season9active.value=='True') {
		 //set start season date (vdate)
		d3=new Date(form.season9start.value.substr(6,4),Math.floor(form.season9start.value.substr(3,2))-1,form.season9start.value.substr(0,2));form.dd3.value = d3;
		orderS1x.season9howManyDaysHas.value=0;
		for (i=0;i<=orderS1x.season9days.value;i++)
		{
			tmpo=tmpo+d3;	
			//check if vdate is in user's date range
			if ((d3>=d1) && (d3<d2)) {
				//add one to season9howManyDaysHas 
			tmpo=tmpo+"--------------";
				orderS1x.season9howManyDaysHas.value = Math.floor(orderS1x.season9howManyDaysHas.value)+1;
			}
			tmpo=tmpo+"<br>";
		
			addOneDay(d3);
		}
		//check if this his accomondation fits this pricelist
		orderS1x.season9accomondationError.value='0';
		if (orderS1x.season9howManyDaysHas.value>1){
			if ((orderS1x.visitType.value==1) && (orderS1x.season9bb.value=='False')) {orderS1x.season9accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==2) && (orderS1x.season9hb.value=='False')) {orderS1x.season9accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==3) && (orderS1x.season9fb.value=='False')) {orderS1x.season9accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==4) && (orderS1x.season9ai.value=='False')) {orderS1x.season9accomondationError.value='1';orderS1x.roomTypeError.value=1;}
		}

		if ((Math.floor(orderS1x.season9howManyDaysHas.value)>0) && (Math.floor(orderS1x.season9howManyDaysHas.value)<Math.floor(orderS1x.season9minDays.value))) 
		{ alert( "ישנו מינימום של "+orderS1x.season9minDays.value+" לילות בין התאריכים "+orderS1x.season9start.value+" ו- "+orderS1x.season9end.value );return false ; }

	}



	if (orderS1x.season10active.value=='True') {
		 //set start season date (vdate)
		d3=new Date(form.season10start.value.substr(6,4),Math.floor(form.season10start.value.substr(3,2))-1,form.season10start.value.substr(0,2));form.dd3.value = d3;
		orderS1x.season10howManyDaysHas.value=0;
		for (i=0;i<=orderS1x.season10days.value;i++)
		{
			tmpo=tmpo+d3;	
			//check if vdate is in user's date range
			if ((d3>=d1) && (d3<d2)) {
				//add one to season10howManyDaysHas 
			tmpo=tmpo+"--------------";
				orderS1x.season10howManyDaysHas.value = Math.floor(orderS1x.season10howManyDaysHas.value)+1;
			}
			tmpo=tmpo+"<br>";
		
			addOneDay(d3);
		}
		//check if this his accomondation fits this pricelist
		orderS1x.season10accomondationError.value='0';
		if (orderS1x.season10howManyDaysHas.value>1){
			if ((orderS1x.visitType.value==1) && (orderS1x.season10bb.value=='False')) {orderS1x.season10accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==2) && (orderS1x.season10hb.value=='False')) {orderS1x.season10accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==3) && (orderS1x.season10fb.value=='False')) {orderS1x.season10accomondationError.value='1';orderS1x.roomTypeError.value=1;}
			if ((orderS1x.visitType.value==4) && (orderS1x.season10ai.value=='False')) {orderS1x.season10accomondationError.value='1';orderS1x.roomTypeError.value=1;}
		}

		if ((Math.floor(orderS1x.season10howManyDaysHas.value)>0) && (Math.floor(orderS1x.season10howManyDaysHas.value)<Math.floor(orderS1x.season10minDays.value))) 
		{ alert( "ישנו מינימום של "+orderS1x.season10minDays.value+" לילות בין התאריכים "+orderS1x.season10start.value+" ו- "+orderS1x.season10end.value );return false ; }

	}




//document.write(tmpo);
    if (orderS1x.date01.value =="" || orderS1x.date02.value ==""  )	{ alert( "אנא הכנס את כל שדות החובה" );return false ; }
    if (orderS1x.roomTypeError.value == 1  )	{ alert( "לא ניתן לבחור סוג אירוח זה בתקופה המבוקשת. אנא בחר סוג אירוח אחר" );return false ; }
	
  return true ;
}
//-->
</script>

        
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head>


           

    </td></tr>
    </table> 
            
          
</td>
<td width=160 valign="top" align="left" class="style11 buttons2" dir=rtl width=140 style="color:#777777;text-align:left;line-height:20px;;padding-left:15px;padding-top:8px;border-left:1px solid #eeeeee;width:140px;">
<div align="center" class="style11 Buttons2" style="color:#777777;">
<!--a href="http://www.palmbeach.co.il/" target="_self"><img src="hebflag.gif" border="0" align="absmiddle" alt="עברית" title="עברית"></a-->
<a href="http://eng.palmbeach.co.il/" target="_self"><img src="engflag.gif" border="0" align="absmiddle" alt="English" title="English"></a>
<a href="http://rus.palmbeach.co.il/" target="_self"><img src="rusflag.gif" border="0" align="absmiddle" alt="На русском языке" title="На русском языке"></a>
<a href="http://fra.palmbeach.co.il/" target="_self"><img src="fraflag.gif" border="0" align="absmiddle" alt="Français" title="Français"></a>
</div><br />


<a href="hotel.asp"><img src="hHotel.gif" border="0"><br>על המלון</a><br>
<a href="rooms.asp">חדרי המלון</a><br>
<a href="vVacation.asp"><img src="vvacation.gif" width="85" height="19" style="margin-top:5px;" border="0"><br>
<a href="orderS1.asp">הזמנת חדרים</a><br>
<a href="information.asp?i_type=1">מסעדות ומזון</a><br>
<a href="showArticle.asp?a_id=131" style="border-bottom:0px solid #777777;">ימי כיף</a><br><a href="showArticle.asp?a_id=130" style="border-bottom:0px solid #777777;">ימי עיון וכנסים</a><br><a href="showArticle.asp?a_id=129" style="border-bottom:0px solid #777777;">מרכז כנסים וארועים</a><br>
<a href="locations.asp">אטרקציות באזור</a><br>
<a href="new.asp"><strong style="color:#4473A6">חדש!</strong></a><br>
<a href="contact.asp">צור קשר</a><br>


<br>
<br>
<a href="country.asp"><img src="hCountry.gif" border="0"><br>על הקאנטרי</a><br>
<a href="activities.asp">חוגים</a><br>
<a href="uc.asp">מדריכים</a><br>
<!-- UC a href="events.asp">ארועים</a><br-->
<!-- UC a href="articles.asp?a_type=3">ימי כיף</a><br-->
<a href="articles.asp?a_type=2">הספא</a><br>
<a href="showArticle.asp?a_id=138">חנות ספידו</a><br>

<!-- UC a href="tips.asp">טיפים</a><br-->
<a href="links.asp?l_type=2">קישורים</a><br>
<a href="contact2.asp">צור קשר</a><br>

<br>
<br>
<a href="event.asp"><img src="hEvents.gif" border="0"><br>על הארועים</a><br>
<a href="informationLite.asp?i_type=2">עיצובים</a><br>
<a href="showArticle.asp?a_id=128">תפריט</a><br>
<a href="showArticle.asp?a_id=118" style="border-bottom:0px solid #777777;">אירועים פרטיים</a><br><a href="showArticle.asp?a_id=119" style="border-bottom:0px solid #777777;">גן הארועים </a><br><a href="showArticle.asp?a_id=126" style="border-bottom:0px solid #777777;">תמרה על הים</a><br><a href="showArticle.asp?a_id=134" style="border-bottom:0px solid #777777;">הגברה ותאורה</a><br>
<a href="eventMachine.asp">בניית ארוע</a><br>


<br>
<br>
<div style="width:120px;border-bottom:1px solid #dddddd;">&nbsp;</div>
<a href="map.asp">מפת הגעה</a><br>
<a href="links.asp?l_type=1">קישורים</a><br>
<a href="contact4.asp">צור קשר</a><br>
<br>



</td>
</tr>
</table>
           
            
<table width="790" style="background-color:#FFFFFF;" class="buttons2 style8b"><tr><td align="center">
<a href="hotel.asp" 	style="text-decoration:none;color:#999999;" alt="המלון">המלון</a>		<b style="color:#999999;">&nbsp;&nbsp;|&nbsp;&nbsp;</b>
<a href="country.asp" 	style="text-decoration:none;color:#999999;" alt="הקאנטרי">הקאנטרי</a>	<b style="color:#999999;">&nbsp;&nbsp;|&nbsp;&nbsp;</b>
<a href="events.asp" 	style="text-decoration:none;color:#999999;" alt="הארועים">הארועים</a>	<b style="color:#999999;">&nbsp;&nbsp;|&nbsp;&nbsp;</b>
<a href="rooms.asp" 	style="text-decoration:none;color:#999999;" alt="חדרים">חדרים</a>		<b style="color:#999999;">&nbsp;&nbsp;|&nbsp;&nbsp;</b>
<a href="locations.asp" style="text-decoration:none;color:#999999;" alt="אטרקציות">אטרקציות</a>	<b style="color:#999999;">&nbsp;&nbsp;|&nbsp;&nbsp;</b>
<a href="activities.asp" 	style="text-decoration:none;color:#999999;" alt="חוגים">חוגים</a>		<b style="color:#999999;">&nbsp;&nbsp;|&nbsp;&nbsp;</b>
<a href="articles.asp?a_type=2" 	style="text-decoration:none;color:#999999;" alt="ספא">ספא</a>		<b style="color:#999999;">&nbsp;&nbsp;|&nbsp;&nbsp;</b>
<a href="eventMachine.asp" 	style="text-decoration:none;color:#999999;" alt="בניית ארוע">בניית ארוע</a>		<b style="color:#999999;">&nbsp;&nbsp;|&nbsp;&nbsp;</b>
<a href="links.asp" 	style="text-decoration:none;color:#999999;" alt="קישורים">קישורים</a>	<b style="color:#999999;">&nbsp;&nbsp;|&nbsp;&nbsp;</b>
<a href="contact.asp" 	style="text-decoration:none;color:#999999;" alt="צור קשר">צור קשר</a>
</td></tr></table>
          
<table width="790" style="background-color:#FFFFFF;" class="buttons2"><tr><td align="center">
	<a href="http://www.ndg.co.il/" alt="אתר זה נבנה על ידי אינדיגו עיצוב ואתרים" target="ndg" ><b class="style8b" style="color:#999999;">אתר זה נבנה על ידי אינדיגו עיצוב ואתרים</b></a>
</td></tr></table>
</center>

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-1567077-34");
pageTracker._trackPageview();
} catch(err) {}</script>


</body>
</html>
