/*
'**************************************************************************************
'	JUST
'	Versiune: 1.1.
' 	Data: 20.Ianuarie.2004
'	Producator: Intra Connect - http://www.intraconnect.ro/
'
'	Schimbari:
'	Data		Autor		Cerut de		Motiv
'	----------	----------	-------------	-------------------------------------------
'
'**************************************************************************************
*/
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_meniu(highlightcolor)
{
	source=event.srcElement;
	if (source.style.backgroundColor!=highlightcolor&&source.id!="ignore"){
		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_meniu(nume_meniu){
	document.all[nume_meniu].style.visibility="visible";
	btn_meniu('#28166F');	
}
function show_meniu_tb(nume_meniu){
	document.all[nume_meniu].style.visibility="visible";
}
function hide_meniu(nume_meniu){
	document.all[nume_meniu].style.visibility="hidden";
	btn_meniu('#154286');	
}
function hide_meniu_tb(nume_meniu){
	document.all[nume_meniu].style.visibility="hidden";
}


