// JavaScript Document
  function cambiar_color(celda){
  //alert(celda);
  	document.getElementById(celda).style.backgroundColor="#F0F0F0";
  }
  function cambiar_color2(celda){
  //alert(celda);
  	document.getElementById(celda).style.backgroundColor="#ffffff";
  }
function mostrar(id){
	OCULTO="none";
	VISIBLE="block";
	if(document.getElementById(id).style.display == OCULTO){
		//alert("esta oculto");
		document.getElementById(id).style.display=VISIBLE;
	}else{
		//alert("esta visible");
		document.getElementById(id).style.display=OCULTO;
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
