// you must keep the following lines on when you use this
// original idea from the Geocities Watermark
// © Nicolas - http://www.javascript-page.com

var window_says  = "Click this link to return to the title page - The Hiker On The Scouting Trail";
var image_width = 39;
var image_height = 66;
var left_from_corner = 0;
var up_from_corner = 0;

var JH = 0;
var JW = 0;
var JX = 0;
var JY = 0;
var left = image_width + left_from_corner + 2;
var up = image_height + up_from_corner + 2;

if(navigator.appName == "Netscape") {
var wm = document.jsbrand;
}

if (navigator.appVersion.indexOf("MSIE") != -1){
var wm = document.all.jsbrand;
}

wm.onmouseover = msover
wm.onmouseout = msout

function watermark() {

 if(navigator.appName == "Netscape") {
   JH = window.innerHeight
   JW = window.innerWidth
   JX = window.pageXOffset
   JY = window.pageYOffset
   wm.visibility = "hide"
   wm.top = (JH+JY-up)
   wm.left = (JW+JX-left)
   wm.visibility= "show"
 }

 if (navigator.appVersion.indexOf("MSIE") != -1){
  if (navigator.appVersion.indexOf("Mac") == -1){
   wm.style.display = "none";
   JH = document.body.clientHeight;
   JW = document.body.clientWidth;
   JX = document.body.scrollLeft;
   JY = document.body.scrollTop;
   wm.style.top = (JH+JY-up);
   wm.style.left =(JW+JX-left);
   wm.style.display = "";
  }
 }
}

function msover(){
    window.status = window_says
    return true;
}

function msout(){
    window.status = ""
    return true;
}

setInterval("watermark()",100);
//-->
 function MA(n) {
  this.lenth=n;
  for(var i=1;i<=n;i++) this[i]=0;
 return this }

 text=new MA(1);
 text[1] = "Return to the title page - The Hiker On The Scouting Trail";
 
function ClearBar() {window.status=''; return true;}
function StatusBar(no) {
 window.status=text[no];
 {t1=window.setTimeout("ClearBar()",6000);}
 return true;
}
