var bottomwidth=775
var bottomheight=65
var bottomimage=new Image(bottomwidth,bottomheight)

bottomimage.src="/display/images/blue_bottom_main.gif"

var bottomlink=""
var alttext=""
var visibleduration=0

var Hoffset=0
var Voffset=0

var ie=document.all&&navigator.userAgent.indexOf("Opera")==-1

var watermark_obj=ie? document.all.bottom : document.getElementById? document.getElementById("bottom") : document.bottom

function insertimage(){
if (ie||document.getElementById)
watermark_obj.innerHTML='<img src="'+bottomimage.src+'" width="'+bottomwidth+'" height="'+bottomheight+'" border=0 usemap="#bottomlinks">'
else if (document.layers){
watermark_obj.document.write('<img src="'+bottomimage.src+'" width="'+bottomwidth+'" height="'+bottomheight+'" border=0 usemap="#bottomlinks">')
watermark_obj.document.close()
}
}

function positionit(){
var dsocleft=ie? document.body.scrollLeft : pageXOffset
var dsoctop=ie? document.body.scrollTop : pageYOffset
var window_height=ie? document.body.clientHeight : window.innerHeight

if (ie||document.getElementById){
watermark_obj.style.left=parseInt(dsocleft)+0+Hoffset
watermark_obj.style.top=parseInt(dsoctop)+parseInt(window_height)-bottomheight-Voffset
}
else if (document.layers){
watermark_obj.left=dsocleft+0+Hoffset
watermark_obj.top=dsoctop+window_height-bottomheight-Voffset
}
}

function hidewatermark(){
if (document.layers)
watermark_obj.visibility="hide"
else
watermark_obj.style.visibility="hidden"
clearInterval(watermarkinterval)
}

function beingwatermark(){
watermarkinterval=setInterval("positionit()",10)
insertimage()
if (visibleduration!=0)
setTimeout("hidewatermark()",visibleduration*1000)
}

if (ie||document.getElementById||document.layers)
window.onload=beingwatermark

