	var NS7 = (document.getElementById && !document.all) ? 1 : 0;

	function ReconoceCapas(nombrecapa){
		var cadena="";
		cadena=nombrecapa+"=document.getElementById('"+nombrecapa+"')";
		if (NS7) {
			eval (cadena);
		}

		Mover();
	}
  
	limite = 10;

	function Mover() {
		posicionh = parseInt(flotante.style.top);
		if (posicionh < limite){
			posicionh = posicionh + 5;
			flotante.style.top = posicionh + "px";     
			setTimeout('Mover()', 5);
		}
		else {
			setTimeout('Mover2()', 20000);
		}
		return true;
	}

	function Mover2() {
		posicionh = parseInt(flotante.style.top);
		if (posicionh > -400){
			posicionh = posicionh - 20;
			flotante.style.top = posicionh + "px";     
			setTimeout('Mover2()', 1);
		}
		else {
			setTimeout('Cerrar()', 1);
		}
		return true;
	}


	function Cerrar() {
		flotante.style.visibility = 'hidden';
	}

