function $(id)   { return document.getElementById(id); }
function sh(obj) { if( $(obj).style.display == 'none' || $(obj).style.display == '' ) $(obj).style.display = 'block'; else $(obj).style.display = 'none' }

function oe(i) 
{
  var id = 'e'+i;

  if( $( id ) )
    sh( id );

  return false ;
}

function ov(i) 
{
  var id = 'v'+i;

  if( $( id ) )
    sh( id );

  return false ;
}

