            <!-- Copyright 2006 Bontrager Connection, LLC
            var cX = 0; var cY = 0;

            function UpdateCursorPosition(e) { 
                cX = e.pageX; cY = e.pageY;
            }

            function UpdateCursorPositionDocAll(e) { 
                cX = event.clientX; cY = event.clientY;
            }

            if(document.all) { 
                document.onmousemove = UpdateCursorPositionDocAll; 
            }
            else { 
                document.onmousemove = UpdateCursorPosition; 
            }

            function AssignPosition(d) {
                d.style.left = (cX-35) + "px";
                d.style.top = (cY-155) + "px";
            }

            function HideContent(d) {
                if(d.length < 1) { 
                    return; 
                }

				document.getElementById(d).style.display = "none";
            }

            function ShowContent(d, qt_indice, url_indice, linkURL) {
                if(d.length < 1) { 
                    return; 
                }

				document.getElementById('qt_indice').innerHTML = qt_indice;
				document.getElementById('url_indice').innerHTML = url_indice;
				document.getElementById('url_indice').href = 'http://' + linkURL;

                var dd = document.getElementById(d);
                AssignPosition(dd);
                dd.style.display = "";
            }

            function ReverseContentDisplay(d) {
                if(d.length < 1) { 
                    return; 
                }

                var dd = document.getElementById(d);
                AssignPosition(dd);

                if(dd.style.display == "none") { 
                    dd.style.display = ""; 
                }
                else { 
                    dd.style.display = "none"; 
                }
            }

			function temporizadorOn() {
				temporizador = setTimeout("HideContent('floater_ir')" , 1000);
			}

			function temporizadorOff() {
				 clearTimeout(temporizador)
			}
            //-->
