 <!-- ALWAYS ON TOP FLOATING LAYER POP-UP -->

<!--
var y1 = 20;   // change the # on the left to adjuct the Y co-ordinate
(document.getElementById) ? dom = true : dom = false;

function hide() {
  if (dom) {document.getElementById("layer1").style.visibility='hidden';}
}

function show() {
  if (dom) {document.getElementById("layer1").style.visibility='visible';}
}

function place() {
  if (dom && !document.all) {document.getElementById("layer1").style.top = window.pageYOffset + (window.innerHeight - (window.innerHeight-y1)) + "px";}
  if (document.all) {document.all["layer1"].style.top = document.documentElement.scrollTop + (document.documentElement.clientHeight - (document.documentElement.clientHeight-y1)) + "px";}
  window.setTimeout("place()", 10); }
// -->

