
<!--
name = navigator.appVersion;
canuse = true;

function high(obj){
if (canuse) {
	theobject=obj
	highlighting=setInterval("highlightit(theobject)",20)
} else {
	obj.className = "lower"
}
}
function low(obj){
if (canuse) {
	clearInterval(highlighting)
	obj.filters.alpha.opacity = 10
} else {
	obj.className = "lower"
}
}


function highlightit(frm){
if (frm.filters.alpha.opacity<90)
frm.filters.alpha.opacity+=10
//else if (window.highlighting)
//clearInterval(highlighting)
}


//-->
