function showdate(mydate){
	var year = mydate.getYear();
	var day = mydate.getDay();
	var month = mydate.getMonth() + 1;
	var daym = mydate.getDate();
	var dayarray = new Array("Domingo","Lunes","Martes","Mi&eacute;rcoles","Jueves","Viernes","S&aacute;bado");
	var montharray = new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");

	if (year < 1000){
		year += 1900;
	}
	if (month < 10){
		month = "0" + month;
	}
	if (daym < 10){
		daym = "0" + daym;
	}
	//return dayarray[day] + " " + daym + " de " + montharray[month] + " de " + year;
	return daym + "." + month + "." + year;
}
function mueveReloj(){
    momentoActual = new Date();
    hora = momentoActual.getHours();
    minuto = momentoActual.getMinutes();
    segundo = momentoActual.getSeconds();

	if (hora < 10){
		hora = "0" + hora;
	}
	if (minuto < 10){
		minuto = "0" + minuto;
	}
	if (segundo < 10){
		segundo = "0" + segundo;
	}
	
    horaImprimible = hora + ":" + minuto+":"+segundo;
	document.getElementById('hora').innerHTML=horaImprimible;
    setTimeout("mueveReloj()",1000)
}

function txtScroll(){
	// ancho
	var marqueewidth=160
	// alto
	var marqueeheight=110
	// velocidad
	var speed=1
	// contenido del scroll
	var marqueecontents="";
	marqueecontents = marqueecontents + "<center><img src= imagenes/logo_portada.gif><br><br>Tribuna de Libres Pensadores<br><br>Editor: Ignacio Warnes<br><br>Año XLVI - III Epoca<br>Español / Inglés.<br>En los idiomas del mundo para la Aldea Global.<br><br>Fundado por Joaquín J. Warnes, 24 de Febrero de 1964, por iniciativa del ex presidente de la Republica Dr. Arturo Umberto Illia. Clausurado y confiscado por defender la Constitución, la Democracia y la Libertad, el 28 de Agosto de 1966. Reinició sus ediciones el 7 de Marzo de 1984. Directores de la publicación:<br>Dr. Ricardo Bassi,<br>Amancio González Zimmerman,<br>Dr. Oscar Marthol,<br>José F. Sívori y<br>D. Garafalo.<br><br><br><br>************************<br><br><br><br><img src= imagenes/logo_portada.gif><br><br>Tribune of Freedoms Thinkers<br><br>Editor: Ignacio Warnes<br><br>XLVI Years - III Period<br>Spanish / English<br>In the worlds languages for the Global Village<br><br>Founded by Joaquín J. Warnes on February 24 1964 by initiative of former Pre	sident of the Republic Dr Arturo Umberto Illia. Closed and confiscated on August 28 1966 for defending the Constitution, the Democracy on March 7 1984. Directors of the paper<br>Dr. Ricardo Bassi,<br>Amancio González Zimmerman,<br>Dr. Oscar Marthol,<br>José F. Sívori y<br>D. Garafalo.<\center>";                       
	if (document.all)
		document.write('<marquee direction="up" scrollAmount='+speed+' style="width='+marqueewidth+';height='+marqueeheight+'">'+marqueecontents+'</marquee>')

}

