function availability(){
	document.frmSubmit['arrivalDate1'].value = document.frm_get_values['day_from'].value +'-'+document.frm_get_values['month_from'].value +'-'+document.frm_get_values['year_from'].value ;
	document.frmSubmit['departureDate1'].value = document.frm_get_values['day_to'].value +'-'+document.frm_get_values['month_to'].value +'-'+document.frm_get_values['year_to'].value;
	document.frmSubmit['roomTypes1'].value = document.frm_get_values['roomtype'].value;
	document.frmSubmit['howMany1'].value = document.frm_get_values['howmany'].value;
	var newUrl = 'http://ares.all-hotels.com/ares/servlet/available-rooms?';
	newUrl += 'hotelId='+document.frmSubmit['hotelID'].value;
	newUrl += '&defId=2254';
	newUrl += '&requirements='+ document.frm_get_values['day_from'].value +'-'+document.frm_get_values['month_from'].value +'-'+document.frm_get_values['year_from'].value;
	newUrl += '%3A'+ document.frm_get_values['day_to'].value +'-'+document.frm_get_values['month_to'].value +'-'+document.frm_get_values['year_to'].value;
	newUrl += '%3A'+ document.frmSubmit['roomTypes1'].value +'%3A'+document.frmSubmit['howMany1'].value;
	newUrl += '&corpCode=&xml=';
	
	document.location.href = newUrl;
}