<!--
var y1 = 10;   // change the # on the left to adjuct the Y co-ordinate
(document.getElementById) ? dom = true : dom = false;

function hideIt() {
  if (dom) {document.getElementById("tools").style.visibility='hidden';}
}

function showIt() {
  if (dom) {document.getElementById("tools").style.visibility='visible'; // document.getElementById("tools").style.top = 651; document.getElementById("tools").style.left = 250;
	}
}

function placeIt() {
 // if (dom && !document.all) {document.getElementById("tools").style.top = 200;}
  //if (document.all) {document.all["tools"].style.top = 200 ;}
	if (dom && !document.all) {document.getElementById("tools").style.top = window.pageYOffset + (window.innerHeight - (window.innerHeight-y1)) + "px";}
 	if (document.all) {document.all["tools"].style.top = document.documentElement.scrollTop + (document.documentElement.clientHeight - (document.documentElement.clientHeight-y1)) + "px";}
 
	window.setTimeout("placeIt()", 10); }
// -->


