//variables globales
var iWidth = 420;
var xpos = window.screen.availWidth;
// Estas funciones (c)2003 SDT Advanced Development
// por jcardona@sistemadt.com
function sdtCard()
{	// se invoca cuando carga body
	//posiciona la mano
	mano.style.position = "absolute";
	mano.style.pixelTop = document.body.scrollTop + 48;	
	mano.style.left = xpos;
	mano.style.visibility="visible";
	//pausa corta antes de empezar
	window.setTimeout('fnAparecete();',1000);	
	
	return true;
}
function fnAparecete()
{
	//descubre la mano
	xpos--;
	mano.style.left = xpos;
	//si ya se escondio, termina	
	if (xpos < window.screen.availWidth-iWidth){
		fnPausa();
	}else{
		window.setTimeout('fnAparecete();',10); }
	
	return true;
}
function fnPausa()
{
	window.setTimeout('fnEscondete();',5000);
	return true;
}
function fnEscondete()
{
	//esconde la mano
	xpos++;
	mano.style.left = xpos;
	//si ya se escondio, termina	
	if (xpos > window.screen.availWidth){
		fnTermina();
	}else{
		window.setTimeout('fnEscondete();',10); }
	
	return true;
}
function fnTermina()
{
	//ponla invisible y colocala al margen izquierdo
	mano.style.visibility="hidden";
	mano.style.left = 0;
	return true;
}
//navega por links de la tabla
//function go(url) { parent.location=url; }
