 Beginning of JavaScript Code -------------------

function fade_in(which){
theobject=which
highlighting=setInterval("highlightit(theobject)",40)
}

function fade_out(which){
clearInterval(highlighting)
which.filters.alpha.opacity=30
}

function highlightit(cur){
if (cur.filters.alpha.opacity<100)
cur.filters.alpha.opacity+=8
else if (window.highlighting)
clearInterval(highlighting)
}

// -- End of JavaScript Code .unnamed1 {  font-size: 14px; color: #990066; text-decoration: none}
