function highlightBookingtool(value) {
  if (value){
      document.getElementById('country').style.backgroundColor="#ffcccc";
      document.getElementById('city').style.backgroundColor="#ffcccc";
      document.getElementById('hotelname').style.backgroundColor="#ffcccc";
      document.getElementById('Nights').style.backgroundColor="#ffcccc";
      document.getElementById('Rooms').style.backgroundColor="#ffcccc";
      document.getElementById('Persons').style.backgroundColor="#ffcccc";
      document.getElementById('InDate_year').style.backgroundColor="#ffcccc";
      document.getElementById('InDate_month').style.backgroundColor="#ffcccc";
      document.getElementById('InDate_day').style.backgroundColor="#ffcccc";
      document.getElementById('OutDate_year').style.backgroundColor="#ffcccc";
      document.getElementById('OutDate_month').style.backgroundColor="#ffcccc";
      document.getElementById('OutDate_day').style.backgroundColor="#ffcccc";
  }
  if (value=='0'){
      document.getElementById('country').style.backgroundColor="#FFFFFF";
      document.getElementById('city').style.backgroundColor="#FFFFFF";
      document.getElementById('hotelname').style.backgroundColor="#FFFFFF";
      document.getElementById('Nights').style.backgroundColor="#FFFFFF";
      document.getElementById('Rooms').style.backgroundColor="#FFFFFF";
      document.getElementById('Persons').style.backgroundColor="#FFFFFF";
      document.getElementById('InDate_year').style.backgroundColor="#FFFFFF";
      document.getElementById('InDate_month').style.backgroundColor="#FFFFFF";
      document.getElementById('InDate_day').style.backgroundColor="#FFFFFF";
      document.getElementById('OutDate_year').style.backgroundColor="#FFFFFF";
      document.getElementById('OutDate_month').style.backgroundColor="#FFFFFF";
      document.getElementById('OutDate_day').style.backgroundColor="#FFFFFF";
  }
}
 
function highlightCountryCity(value) {
  if (value){
      document.getElementById('country').style.backgroundColor="#ffcccc";
      document.getElementById('city').style.backgroundColor="#ffcccc";
  }
   if (value=='0'){
      document.getElementById('country').style.backgroundColor="#FFFFFF";
      document.getElementById('city').style.backgroundColor="#FFFFFF";
   } 
} 

function highlightRoomAvailability(value) {
  if (value){
      document.getElementById('InDate_year').style.backgroundColor="#ffcccc";
      document.getElementById('InDate_month').style.backgroundColor="#ffcccc";
      document.getElementById('InDate_day').style.backgroundColor="#ffcccc";
      document.getElementById('OutDate_year').style.backgroundColor="#ffcccc";
      document.getElementById('OutDate_month').style.backgroundColor="#ffcccc";
      document.getElementById('OutDate_day').style.backgroundColor="#ffcccc";
  }
  if (value=='0'){
     document.getElementById('InDate_year').style.backgroundColor="#FFFFFF";
     document.getElementById('InDate_month').style.backgroundColor="#FFFFFF";
     document.getElementById('InDate_day').style.backgroundColor="#FFFFFF";
     document.getElementById('OutDate_year').style.backgroundColor="#FFFFFF";
     document.getElementById('OutDate_month').style.backgroundColor="#FFFFFF";
     document.getElementById('OutDate_day').style.backgroundColor="#FFFFFF";
  } 
} 
