<!-- ALWAYS ON TOP FLOATING LAYER POP-UP -->

<!-- Copyright 2003, Sandeep Gangadharan -->
<!-- For more free scripts go to http://sivamdesign.com/scripts/ -->
<!--
function hideIt(layerName) {
  if (document.getElementById) {
  	document.getElementById(layerName).style.visibility='hidden';
  } else {
  	document.all[layerName].style.visibility='hidden';
  }
}

function showIt(layerName) {
  if (document.getElementById) {
  	document.getElementById(layerName).style.visibility='visible';
  } else {
  	document.all[layerName].style.visibility='visible';}
  }

function placeIt(layerName, top) {
  if (navigator.appName.indexOf("Netscape") != -1) {
	document.getElementById(layerName).style.top = window.pageYOffset + (window.innerHeight - (window.innerHeight-top))
  } else {
    document.all[layerName].style.top = document.body.scrollTop + (document.body.clientHeight - (document.body.clientHeight-top));
  }
  window.setTimeout("placeIt('"+layerName+"', " + top + ")", 10);
 }
// -->