var y1 = 20;   // change the # on the left to adjuct the Y co-ordinate
(document.getElementById) ? dom = true : dom = false;


function hideIt(l) {
var i = l
  if (dom) 
{document.getElementById("layer"+i).style.visibility='hidden';}
  if (document.layers) {document.layers["layer"+i].visibility='hide';} }

function showIt(l) {
var i = l

  if (dom) 
{document.getElementById("layer"+i).style.visibility='visible';}
  if (document.layers) {document.layers["layer"+i].visibility='show';} }

function placeIt() {
  if (dom && !document.all) 
{document.getElementById("layer"+i).style.top = window.pageYOffset + (window.innerHeight - 
(window.innerHeight-y1))}
  if (document.layers) {document.layers["layer"+i].top = 
window.pageYOffset + (window.innerHeight - (window.innerHeight-y1))}
  if (document.all) {document.all["layer"+i].style.top = 
document.body.scrollTop + (document.body.clientHeight - 
(document.body.clientHeight-y1));}
  window.setTimeout("placeIt()", 10); }

window.onload=placeIt();
onResize="window.location.href = window.location.href"

