/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function hideshow(which)
{
  if (!document.getElementById)
    return
  if (which.style.display=="block")
    which.style.display="none"
  else
    which.style.display="block"
}

