/** JavaScript **/
var Aujourdhui = new Date();
var CheckInMonth=document.getElementById('CheckInMonth');
var CheckInDay=document.getElementById('CheckInDay');
var CheckInYear=document.getElementById('CheckInYear');
var CheckOutMonth=document.getElementById('CheckOutMonth');
var CheckOutDay=document.getElementById('CheckOutDay');
var CheckOutYear=document.getElementById('CheckOutYear');
choix_init() 

function choix_init() {
 for(i=0;  i<CheckInMonth.length; i++)
   if(CheckInMonth.options[i].value == Aujourdhui.getMonth()+1) {
    CheckInMonth.options[i].selected=true;
CheckOutMonth.options[i].selected=true;
}

for(i=0;  i<CheckInDay.length; i++)
   if(CheckInDay.options[i].text == Aujourdhui.getDate()){
    CheckInDay.options[i].selected=true;
CheckOutDay.options[i].selected=true;
}
for(i=0;  i<CheckInYear.length; i++)
   if(CheckInYear.options[i].text == Aujourdhui.getYear()){
    CheckInYear.options[i].selected=true;
CheckOutYear.options[i].selected=true;
}
}
//alert(Aujourdhui.getMonth());

function subscribe(lng)
{
	if (lng=='en'){
	document.location.href='../subscribe.aspx?email=' + document.getElementById('email').value+ '&amp;statut=Niagara English';
	}else{
	document.location.href='../subscribe.aspx?email=' + document.getElementById('email').value + '&amp;statut=Niagara Francais';
	}
}


