// JavaScript Document
(document.getElementById) ? dom = true : dom = false;

function typeStart() {
  if (dom) { document.write('<div id="linksBox" style="position:absolute; width:100%; left:640px; top:152px; visibility:visible">') } }

function typeEnd() { if (dom) { document.write('</div>') } }

function placeIt() {
  if (dom && !document.all) {document.getElementById("linksBox").style.top = window.pageYOffset + 152 + "px";}
  if (document.all) {document.all["linksBox"].style.pixelTop = document.documentElement.scrollTop + 152}
  window.setTimeout("placeIt()", 0); }
