
function TaggleShow( Id ) {
  try{
    if( $(Id).style.display == 'none' ) 
      $(Id).style.display = 'inline';
    else 
      $(Id).style.display = 'none'; 
  }
  catch(e){}
  return false;
}