var ie = document.all ? 1 : 0
var ns = document.layers ? 1 : 0

var gLayerName = "ToolTip00"

if(ns){doc = "document."; sty = ""}
if(ie){doc = "document.all."; sty = ".style"}

var initialize = 0
var Ex, Ey, topColor, subColor, ContentInfo

if(ie){
Ex = "event.x"
Ey = "event.y"

topColor = "#034484"
subColor = "#cccc99"
}

if(ns){
Ex = "e.pageX"
Ey = "e.pageY"
window.captureEvents(Event.MOUSEMOVE)
window.onmousemove=overhere

topColor = "#808080"
subColor = "#C0C0C0"
}

function MoveToolTip(layerName, FromTop, FromLeft, e){
if(ie){eval(doc + layerName + sty + ".top = "  + (eval(FromTop) + document.body.scrollTop))}
if(ns){eval(doc + layerName + sty + ".top = "  +  eval(FromTop))}
eval(doc + layerName + sty + ".left = " + (eval(FromLeft) + 0))
}



function Activate(){initialize=1}

function deActivate(){initialize=0}

function overhere(e){
if(initialize){


MoveToolTip(gLayerName, Ey, Ex, e)
eval(doc + gLayerName + sty + ".visibility = 'visible'")

}

else{

MoveToolTip(gLayerName, 0, 0)
eval(doc + gLayerName + sty + ".visibility = 'hidden'")

}
}

function EnterContent(layerName){

gLayerName = layerName
	

}

