
function isIE(){
  if(navigator.appName=="Microsoft Internet Explorer"){
    return true
  }
  return false
}

function getForm(formName){
  var f;
  if(isIE()){
    f=document.all[formName];
  }else{
    f=document.getElementById(formName);
  }
  return f;
}

var ant_mostrar="";

function mostrar(fn){
  if (ant_mostrar!=""){
    ocultar(ant_mostrar);
  }
  ant_mostrar=fn;
  getForm(fn).style.display='block';
}

function ocultar(fn){
  getForm(fn).style.display='none';
}

function activar(fn, color){
  getForm(fn).style.color=color;
}

function desactivar(fn, color){
  getForm(fn).style.color=color;
}

