z=1
function up(id){z=z+1
document.all[id].style.zIndex=z}

function high(which2){
theobject=which2;theobject.filters.alpha.opacity=0
highlighting=setInterval("highlightit(theobject)",60)}

function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=100}

function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=15
else if(window.highting)
clearInterval(highlighting)}

function over(id){
document.all[id].style.top=parseInt(document.all[id].style.top)-3
document.all[id].style.left=parseInt(document.all[id].style.left)-3
document.all[id+'p'].style.width=75
document.all[id+'p'].style.height=21}

function out(id){
document.all[id].style.top=parseInt(document.all[id].style.top)+3
document.all[id].style.left=parseInt(document.all[id].style.left)+3
document.all[id+'p'].style.width=75
document.all[id+'p'].style.height=21}

function icon(id){
if (document.all[id].style.visibility=='hidden'){document.all[id].style.visibility=''}
else{document.all[id].style.visibility='hidden'}
}

