var doit = true
function showm(ob,pict) {
  if(doit) {
    document.getElementById(ob).style.height = '380'
    document.getElementById(pict).src = 'arrowl.png'
    doit = false
  }
  else {
    document.getElementById(ob).style.height = '60'
    document.getElementById(pict).src = 'arrowd.png'
    doit = true
  }
}
