function cambiarTitulo(texto){
	parent.document.title = texto;
}

function ampliarNoticia(cual,link){
	vista=document.getElementById(cual).style.display;
	if (vista=='none'){
		vista='block';
		document.getElementById(link).innerHTML="Ocultar -";
		texto = parseInt(document.getElementById("Layer3").style.top) + 80;
		document.getElementById("Layer3").style.top= texto + "px"
	}else{
		vista='none';
		document.getElementById(link).innerHTML="Leer +";
		texto = parseInt(document.getElementById("Layer3").style.top) - 80;
		document.getElementById("Layer3").style.top=texto + "px";
	}
	document.getElementById(cual).style.display = vista;
	
}

function mostrarCapa(cual){
	document.getElementById(cual).style.display = 'block';
	
}

function ocultarCapa(cual){
	document.getElementById(cual).style.display = 'none';
	
}