var it_departureDate = new Date();it_departureDate = new Date(it_departureDate.getTime() + (3 * 24 * 60 * 60 * 1000));var it_returnDate = new Date();it_returnDate = new Date(it_returnDate.getTime() + (10 * 24 * 60 * 60 * 1000));function it_getDaysInMonth( m, y ) {var it_monthdays = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];if (m != 2) {return it_monthdays[m];} else {return ((y % 4 == 0 && y % 100 != 0) || y % 400 == 0 ? 29 : 28);}}function dateComboBuilder(date, fieldName){var day = date.getDate();var month = date.getMonth() + 1;var year = date.getFullYear();if (fieldName == 'da') {for (var i=1; i <= it_getDaysInMonth(month, date.getFullYear()); i++){var str = i < 10 ? "0" + i : "" + i;document.write('<option value="' + str + '" ');if (i == day) {document.write("selected");}document.write('>' + str + '</option>');}} else if (fieldName == 'mo') {for (var i=1; i <= 12 ;i++){var str = i < 10 ? "0" + i : "" + i;document.write('<option value="' + str + '" ');if (i == month) {document.write("selected");}document.write('>' + str + '</option>');}
} else if (fieldName == 'yr') {for (var i=year; i <= (year+1) ;i++){var yearStr = ("" + i).substring(2, 4);document.write('<option value="'+i+'">'+yearStr+'</option>');}}}function passengerBuilder(passengerNumber, defaultNumber){for (var i=1; i <= passengerNumber; i++){document.write('<option value="' + i + '" ');if (i == defaultNumber) {document.write("selected");}document.write('>' + i + '</option>');}}
document.write('<style type="text/css"><!--.IT_form_120{PADDING: 0;MARGIN: 0;}.IT_table_120 {WIDTH: 120px;BACKGROUND: transparent url(http://www.illicotravel.com/affil/ban/flight/form/120x300_01/120x300_bg.gif) 0 0 no-repeat;TEXT-ALIGN: center;FONT: normal 11px Arial, Verdana;COLOR: #000066;HEIGHT: 300px;}.IT_table_120 tr td {LINE-HEIGHT: 25px;}.IT_top {HEIGHT: 95px;TEXT-ALIGN: center;TEXT-DECORATION: underline;CURSOR: pointer;}.IT_link {TEXT-DECORATION: underline;CURSOR: pointer;}.IT_text {TEXT-ALIGN: left;PADDING-LEFT: 4px;FONT-WEIGHT: bold;}.IT_cities {WIDTH: 70px;HEIGHT: 18px;FONT: normal 11px Arial, Verdana;}.IT_selectBox {MARGIN: 0 2px;FONT: normal 9px Arial, Verdana;WIDTH: 36px;}.IT_search {HEIGHT: 35px;TEXT-ALIGN: center;}--></style><form class="IT_form_120" name="IT_JSFlightForm" method="post" action="http://www.illicotravel.com/flight/index.html" target="_blank">\n<input type="hidden" name="returnTicket" value="true" />\n<input type="hidden" name="classOfService" value="eco" />\n<input type="hidden" name="childCount" value="0" />\n<input type="hidden" name="babyCount" value="0" />\n<table class="IT_table_120" border="0" cellspacing="0" cellpadding="0">\n<tr>\n<td class="IT_top" colspan="3" onClick=location.href="http://www.illicotravel.com"></td>\n</tr>\n<tr>\n<td class="IT_text">De :</td>\n<td colspan="2"><input class="IT_cities" name="departureAirport" type="text" value="Paris" onfocus="javascript:this.select();"/></td>\n</tr>\n<tr>\n<td class="IT_text">Vers :</td>\n<td colspan="2"><input class="IT_cities" name="arrivalAirport" type="text" value="" onfocus="javascript:this.select();"/></td>\n</tr>\n<tr>\n<td class="IT_text" colspan="3">D&eacute;part le :</td>\n</tr>\n<tr>\n<td>\n<select name="departureDate.day" class="IT_selectBox">\n<script>dateComboBuilder(it_departureDate, \'da\');<\/script>\n</select></td>\n<td>\n<select name="departureDate.month" class="IT_selectBox">\n<script>dateComboBuilder(it_departureDate, \'mo\');<\/script>\n</select></td>\n<td>\n<select name="departureDate.year" class="IT_selectBox">\n<script>dateComboBuilder(it_departureDate, \'yr\');<\/script>\n</select></td>\n</tr>\n<tr>\n<td class="IT_text" colspan="3">Retour le :</td>\n</tr>\n<tr>\n<td>\n<select name="returnDate.day" class="IT_selectBox">\n<script>dateComboBuilder(it_returnDate, \'da\');<\/script>\n</select></td>\n<td>\n<select name="returnDate.month" class="IT_selectBox">\n<script>dateComboBuilder(it_returnDate, \'mo\');<\/script>\n</select></td>\n<td>\n<select name="returnDate.year" class="IT_selectBox">\n<script>dateComboBuilder(it_returnDate, \'yr\');<\/script>\n</select></td>\n</tr>\n<tr>\n<td class="IT_text" colspan="2">Adulte(s) : </td>\n<td>\n<select name="adultCount" class="IT_selectBox">\n<script>passengerBuilder(6,1);<\/script>\n</select></td>\n</tr>\n<tr>\n<td colspan="3" class="IT_search"><input type="image" src="http://www.illicotravel.com/affil/ban/flight/form/120x300_01/search1.gif" width="80" height="21" border="0" alt="Lancer la recherche"/></td>\n</tr>\n</table>\n</form>\n');