function display(id){
	if((document.getElementById(id).className == '')){
		if( (document.getElementById(id).style.display=='') || (document.getElementById(id).style.display=='block') ){
			$('#'+id).slideUp("normal"); 
			document.getElementById("espace").className = 'espace_down';
		}else{
			$('#'+id).slideDown("normal"); 
			document.getElementById("espace").className = 'espace';
		}
	}else{
		$('#'+id).slideDown("normal"); 
		document.getElementById("espace").className = 'espace';
		document.getElementById(id).className = '';
	}	
}

function addFav(site_name) {
	try{window.external.AddFavorite(window.location.href, site_name + ' : ' +document.title);return;}catch(e){}
	try{window.sidebar.addPanel(site_name + ' : ' +document.title, window.location.href, "");return;}catch(e){}
}
