<!--
        markW = 110;       // pixels wide
        markH = 100;       // pixels high
        markX = 98;      // percent right
        markY = 30;      // percent down
        markRefresh = 15; // milliseconds

        // set common object reference
        if (!document.all) document.all = document;
        if (!document.all.waterMark.style)
          document.all.waterMark.style = document.all.waterMark;

        wMark = document.all.waterMark.style;
        wMark.width = markW;
        wMark.height = markH;
        navDOM = window.innerHeight; // Nav DOM flag

        function setVals() {
          barW = 0; // scrollbar compensation for PC Nav
          barH = 0;
          if (navDOM) {
            if (document.height > innerHeight) barW = 20;
            if (document.width > innerWidth) barH = 20;
          } else {
            innerWidth = document.body.clientWidth;
            innerHeight = document.body.clientHeight;
          }
          posX = ((innerWidth - markW)-barW) * (markX/100);
//          posY = ((innerHeight - markH)-barH) * (markY/100);
// Make the top of the watermark an absolute pixel depth from the 
// top of the window - no matter how it is resized
		  posY = 22;
        }
        
        function wRefresh() {
          wMark.left = posX + (navDOM?pageXOffset:document.body.scrollLeft);
          wMark.top = posY + (navDOM?pageYOffset:document.body.scrollTop);
        }
        
        function markMe() {
          setVals();
          window.onresize=setVals;
          markID = setInterval ("wRefresh()",markRefresh);
        }
        
        window.onload=markMe; // safety for Mac IE4.5
        
        //-->

