// JavaScript Document


function popup(url,w,h,l,t){
    newwindow=window.open(url,'popup1','width=' + w + ',height=' + h + ',left=' + l + ',top=' + t + ',menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no');
    if (window.focus) {
        newwindow.focus()
    }
}


  function checkDateExists(){
  
    var day1   = document.getElementById('b_checkin_day').value;
    var day2   = document.getElementById('b_checkout_day').value;
    var skip   = document.getElementById('no_availability_check').checked;
    
    if(skip)
      return true;    

    if( day1 != parseInt(day1) || day2 != parseInt(day2)){
      document.getElementById('enterDates').style.display = 'block';  
      return false;      
    }   
    
    return true;     
  }
  

  function checkDateExists2(){
  
    var day1   = document.getElementById('b_checkin_day2').value;
    var day2   = document.getElementById('b_checkout_day2').value;

    if( day1 != parseInt(day1) || day2 != parseInt(day2)){
      document.getElementById('enterDates').style.display = 'block';  
      return false;      
    }      
  
  }
  
  