//<!--

	function mostrar(nombreCapa){
		document.getElementById(nombreCapa).style.visibility="visible";
	}
	function ocultar(nombreCapa){
		document.getElementById(nombreCapa).style.visibility="hidden";
	}
	function mostrarimagen(nombreCapa, imagen){
		document.getElementById(nombreCapa).style.backgroundImage="url("+imagen+")";
		document.getElementById(nombreCapa).style.visibility="visible";
	}
	function mostrarimagencontamanho(nombreCapa, imagen, width, height){
		document.getElementById(nombreCapa).style.width = width;
		document.getElementById(nombreCapa).style.height = height;
		document.getElementById(nombreCapa).style.backgroundImage="url("+imagen+")";
		document.getElementById(nombreCapa).style.visibility="visible";
	}

	var par=false;
	function parpadeo() {
		document.getElementById('txt').style.visibility= (par) ? 'visible' : 'hidden';
		par = !par;
	}


//-->