var doit = true
function showm(ob,pict) {
  if(doit) {
    document.getElementById(ob).style.height = '130'
    document.getElementById(pict).src = 'images/Poduct_menu_on_01.gifw'
    doit = false
  }
  else {
    document.getElementById(ob).style.height = '20'
    document.getElementById(pict).src = 'images/Product_menu_01.gif'
    doit = true
  }
}
