<!--
var txt="Ahumados Goteborg ____________Ahumados de Calidad______________";
var espera=200;
var refresco=null;

function rotulo_title() {
        document.title=txt;
        txt=txt.substring(1,txt.length)+txt.charAt(0);        
        refresco=setTimeout("rotulo_title()",espera);}
rotulo_title();
// -->


	 w="Ahumados Goteborg";
//	 window.status=w;
//	 function mover() {
//		w=w.substring(1,w.length)+w.charAt(0);
//		setTimeout("mover()", 100);
//		}
//	 mover()
	function reloj() {
	hora=new Date;
	a=hora.getHours();
	b=hora.getMinutes();
	c=hora.getSeconds();
	if (a<10) {a="0"+a;}
	if (b<10) {b="0"+b;}
	if (c<10) {c="0"+c;}
	window.status=w+"      "+"Son las "+a+" horas "+b+" minutos "+c+" segundos"
	setTimeout("reloj()",100);}
	reloj()


<!--

//-->