function changeto(highlightcolor)
{
	source=event.srcElement;
	if (source.tagName=="TR"||source.tagName=="TABLE") return
	while(source.tagName!="TR")
	source=source.parentElement
	if (source.style.backgroundColor!=highlightcolor&&source.id!="ignore") source.style.backgroundColor=highlightcolor
}

function btn_changeto(highlightcolor,clr)
{
	source=event.srcElement;
	if (source.style.backgroundColor!=highlightcolor&&source.id!="ignore"){
		if(clr==1) 
			source.style.color="White";
		else
			source.style.color="Black";	
		source.style.backgroundColor=highlightcolor;
	}	
}

function changeback(originalcolor)
{
	if (event.fromElement.contains(event.toElement)||source.contains(event.toElement)||source.id=="ignore") return
	if (event.toElement!=source) source.style.backgroundColor=originalcolor
}

function show(nume_meniu){
	document.all[nume_meniu].style.visibility="visible";
	document.all["tr_"+nume_meniu].style.backgroundColor="#FFFFCC";
}

function hide(nume_meniu){
	document.all[nume_meniu].style.visibility="hidden";
	document.all["tr_"+nume_meniu].style.backgroundColor="#d6dff7";
}

