<!-- FLOATING BACK TO TOP LINK --> <!-- This goes into the HEAD of the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2005, Sandeep Gangadharan --> <!-- For more free scripts go to http://www.sivamdesign.com/scripts/ --> <!-- var x1 = 120; // change the # on the left to adjuct the X co-ordinate var y1 = 50; // change the # on the left to adjuct the Y co-ordinate (document.getElementById && !document.all) ? dom = true : dom = false; function typeStart() { if (dom) { document.write('<div id="logoBox" style="position:absolute; left:' + (window.innerWidth-x1) + 'px; visibility:visible">') } if (document.all) { document.write('<div id="logoBox" style="position:absolute; left:' + (document.body.clientWidth-x1) + 'px; visibility:visible">') } } function typeEnd() { if (document.all || dom) { document.write('</div>') } } function placeIt() { if (dom) {document.getElementById("logoBox").style.top = window.pageYOffset + y1 + "px"; document.getElementById("logoBox").style.left = window.pageXOffset + x1 + "px";} if (document.all) {document.all["logoBox"].style.top = document.documentElement.scrollTop + y1 + "px"; document.all["logoBox"].style.left = document.documentElement.scrollLeft + x1 + "px";} window.setTimeout("placeIt()", 10); } // --> </script> </head> <!-- This is the script to be included in the BODY tag of the html file --> <body onLoad="placeIt()"> <!-- This goes immediately below the BODY tag before any other content --> <a name="topper"></a> <!-- This goes into the BODY of the html file --> <script>typeStart()</script> <a href="#topper" title="Back to top"><b>Back to top</b></a> <script>typeEnd()</script>