// JavaScript Document
function getInternetExplorerVersion(){
  // Returns the 1 is Internet Explorer or a -1
  var rv = -1; // Return value assumes failure.
  if (navigator.appName == 'Microsoft Internet Explorer'){
    rv=1
  }
  return rv;
}

function checkBrowser(id){	
  if(getInternetExplorerVersion()==(-1)){
    muestra_oculta(id);
  }
}

function muestra_oculta(id){
	if (document.getElementById){ //se obtiene el id
	var el = document.getElementById(id); //se define la variable "el" igual a nuestro div
	el.style.display = (el.style.display == 'none') ? 'block' : 'none'; //damos un atributo display:none que oculta el div
	}
}
