            <!-- Copyright 2006 Bontrager Connection, LLC
            var cX = 0; var cY = 0; var focus = 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-5) + "px";
                d.style.top = (cY+10) + "px";
            }

            function HideContent(d) {
                if(d.length < 1) { 
                    return; 
                }
                document.getElementById(d).style.display = "none";
				focus = 0;
                document.getElementById('div_floater').ds_busca.value = 'Digite aqui a sua busca...';
            }

            function ShowContent(d) {
                if(d.length < 1) { 
                    return; 
                }

                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() {
				if (focus == 0) {
					temporizador = setTimeout("HideContent('uniquename1')" , 1000);
				}
			}

			function temporizadorOff(foco) {
				try {
					if (temporizador) clearTimeout(temporizador);
					if (foco == 1) {
						focus = 1;
					}
				} catch(e) {
					return;
				}
			}
            //-->
