function light(id){
id.style.backgroundColor="#FFFFFF";
}
function stins(id){
id.style.backgroundColor="transparent";
}
function filtruNU(id){
id.style.filter="none";
}

function filtruDA(id){
id.style.filter="gray";
}

function show(e) {
var rightedge=480;
var bottomedge=323;
var topedge=125;
var leftedge=1;
if ((event.clientX<rightedge) && (event.clientX>leftedge) && (event.clientY>topedge) && (event.clientY<bottomedge)){
muc.style.left=event.clientX+5;
muc.style.top=event.clientY-20;
muc.style.visibility="visible";
}
else{
muc.style.visibility="hidden";
}
return false
}

function hide(e){
muc.filters.revealTrans.Apply();
muc.style.visibility="hidden";
muc.filters.revealTrans.Play();
return false;
}


function arata(e){
show();
setTimeout("hide();",2000);
return false
}
