<!-- Begin
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Jeff Manning :: liveing_sacrifice@yahoo.ca */

var doit = true
function showm(ob,pict) {
  if(doit) {
    document.getElementById(ob).style.height = '225'
    document.getElementById(pict).src = 'images/standard/arrowl.gif'
    doit = false
  }
  else {
    document.getElementById(ob).style.height = '20'
    document.getElementById(pict).src = 'images/standard/arrowd.gif'
    doit = true
  }
}
// End -->