var doit = true
function showm(ob,pict) {
  if(doit) {
    document.getElementById(ob).style.height = '100%'
    document.getElementById(pict).src = 'images/booking/arrowu.png'
    doit = false
  }
  else {
    document.getElementById(ob).style.height = '20px'
    document.getElementById(pict).src = 'images/booking/arrowd.png'
    doit = true
  }
}