<!-- ALWAYS ON TOP FLOATING LAYER POP-UP -->
 
<!-- Copyright 2003, Sandeep Gangadharan -->
<!-- For more free scripts go to http://sivamdesign.com/scripts/ -->
<!--
var y1 = 0;   // change the # on the left to adjuct the Y co-ordinate
(document.getElementById && !document.all) ? dom = true : dom = false;

function hideIt() {
  if (dom) {document.getElementById("layer1").style.visibility='hidden';}
  if (document.layers) {document.layers["layer1"].visibility='hide';}
  if (document.all) {document.all["layer1"].style.visibility='hidden';}
  }

function showIt() {
  if (dom) {document.getElementById("layer1").style.visibility='visible';}
  if (document.layers) {document.layers["layer1"].visibility='show';}
  if (document.all) {document.all["layer1"].style.visibility='visible';}}

function placeIt() {
  return;
  if (dom) {document.getElementById("layer1").style.top = 
window.pageYOffset + (window.innerHeight - (window.innerHeight-y1))}
  if (document.layers) {document.layers["layer1"].top = window.pageYOffset 
+ (window.innerHeight - (window.innerHeight-y1))}
  if (document.all) {document.all["layer1"].style.top = 
document.body.scrollTop + (document.body.clientHeight - 
(document.body.clientHeight-y1));}
  window.setTimeout("placeIt()", 10);
 }
// -->
