function highLighTab(tab_id)
{
	tab = document.getElementById(tab_id);
	tab.style.background = "url('style/images/tab3-over.png')";
}

function unHighLighTab(tab_id)
{
	tab = document.getElementById(tab_id);
	if(tab.className != "tab_selected")
		tab.style.background = "url('style/images/tab3.png')";
}

/**
* Affiche ou masque un objet html via son identifiant
*/
function display(id)
{
	if(document.getElementById(id).style.display=="")
		document.getElementById(id).style.display="none";
	else
		document.getElementById(id).style.display="";
}
