function ultimahora()
{
	// Modifica el contenido del frame de publicidad.
	window.top.pubframe.location="ultimahora.htm";
	window.moveTo(0,0);
}
  function mostrarFecha(campoTexto)
  {
	var fecha = new Date();
	var dias = new Array ("Lunes","Martes","Miércoles","Jueves","Viernes","Sábado","Domingo");	
	var meses = new Array ("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
        var texto = new String;
        
	texto=dias[fecha.getDay()-1] + "," + fecha.getDate() +
		" de " + meses[fecha.getMonth()] + " de " + fecha.getYear();

        campoTexto.value = texto + " ....";
        campoTexto.size=texto.length;
  }



function mostrarImagen (imagen, provincia)
{
	var comunicado = window.open("","comunicado","menubar=no,scrollbars,top,left,hotkeys:no");

	comunicado.document.open();
	comunicado.document.write("<html><head><title>Comunicado.</title><link rel='stylesheet' type='text/css' href='estilos.css'></head>");
	comunicado.document.write("<body><table><tr><td class='cabecera'>Comunicado-" + provincia + "</td></tr>");
	comunicado.document.write("<tr><td><img src='" + imagen +"'></td></tr>");
	comunicado.document.write("<tr><td class='cabecera' onClick='window.close();'>CERRAR</td></tr></table></body></html>");
	comunicado.document.close();

}

function eliminarPublicidad ()
{
	parent.document.all.pubframe.noResize="false";
	parent.document.all.pubframe.height="0";
}
