/*
 
Correctly handle PNG transparency in Win IE 5.5 & 6.
http://homepage.ntlworld.com/bobosola. Updated 18-Jan-2006.

Use in <HEAD> with DEFER keyword wrapped in conditional comments:
<!--[if lt IE 7]>
<script defer type="text/javascript" src="pngfix.js"></script>
<![endif]-->

*/

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

