if (navigator.userAgent.indexOf("Opera")!=-1
    && document.getElementById) type="OP"; 
if (document.all) type="IE"; 
if (document.layers) type="NN"; 
if (!document.all && document.getElementById) type="MO";


function showBlock(id,typ){
  var obj = null;
  
  if (type=="IE")
                obj = eval("document.all." + id);

  if (type=="NN")
             obj = eval("document." + id );

  if (type=="MO" || type=="OP")
            obj = document.getElementById(id);


  if(obj==null) return ;

  if (type=="IE")
                eval("document.all." + id + ".style.display='"+typ+"'");

  if (type=="NN")
             eval("document." + id + ".display='"+typ+"'");

  if (type=="MO" || type=="OP")
            eval("document.getElementById('" + id + "').style.display='"+typ+"'");

} 


