function SetCheckInCheckOut()
{	
    currdate = new Date();
    currdate.setDate(currdate.getDate());
    
    var month="";
	var year=0;
	var day="";
	var monthyear="";
	
	year=currdate.getYear();
	month=currdate.getMonth();
	day=currdate.getDate();
	
	
	//for check in date
	if(currdate.getDate()<10)
	{
		day="0"+currdate.getDate();
	}
	else
	{
		day=currdate.getDate();
		
	}
	if(currdate.getMonth()-1<10)
	{
	
		month="0"+(currdate.getMonth()-1);
		
	}
	else
	{
		month=(currdate.getMonth()-1);
	}
	
	monthyear=currdate.getYear()+month;
	
	//set check in date as current date
	
	//document.selectHotelForm.arrivalDay.Items.FindByValue(day).Selected=true;
	document.selectHotelForm.arrivalDay.selectedIndex=day-1;
	document.selectHotelForm.arrivalMonthYear.selectedIndex=currdate.getMonth()-1;
	
	//for check in date
		
	currdate.setDate(currdate.getDate()+1);
	
	if(currdate.getDate()<10)
	{
		day="0"+currdate.getDate();
	}
	else
	{
		day=currdate.getDate();
	}
	if(currdate.getMonth()-1<10)
	{
		month="0"+(currdate.getMonth()-1);
	}
	else
	{
		month=(currdate.getMonth()-1);
	}
	monthyear=currdate.getYear()+month;
	//set check in date as current date
	//departureDay.Items.FindByValue(day).Selected=true;
	//departureMonthYear.Items.FindByValue(monthyear).Selected=true;
	
	document.selectHotelForm.departureDay.selectedIndex=day-1;
	document.selectHotelForm.departureMonthYear.selectedIndex=currdate.getMonth()-1;

}   