function carga_url (URL,capa) {
	$(document.getElementById(capa)).html('<img src="imagenes/es/cargando.gif">');
	  $(document.getElementById(capa)).load(URL,function(){
		$(document.getElementById(capa)).fadeIn("slow");
	  });
}

function msg_change (capa,htmltext) {
	$(document.getElementById(capa)).html(htmltext);
}

function display_capas2 (capa,status) {	
	if (status!=undefined && status!='') {
		document.getElementById(capa).style.display=status;
	} else {
		if (document.getElementById(capa).style.display=="block") {
			document.getElementById(capa).style.display="none";
		} else {
			document.getElementById(capa).style.display="block";
		}
	}
}
