 function setForm() {
  tmp = new Date();
  oggi = pad2(tmp.getDate()) + "-" + pad2(tmp.getMonth()+1) + "-" + tmp.getFullYear();
  tmp = new Date(tmp.getTime()+86400000);
  //domani = pad2(tmp.getDate()) + "-" + pad2(tmp.getMonth()+1) + "-" + tmp.getFullYear();
  document.getElementById("checkin").value = oggi;
  //document.getElementById("checkout").value = domani;
 }
  
 function pad2(str) {
  if (str < 10) {
   return "0" + str;
  } else {
   return str;
  }
 }
