function display(id){	
	
	if((document.getElementById(id).className == '')){
		if( (document.getElementById(id).style.display=='') || (document.getElementById(id).style.display=='block') ){			
			try{
				$('#'+id).slideUp("normal"); 						
			}catch(e){};
		}else{			
			try{
			$('#'+id).slideDown("normal"); 			
			}catch(e){};
		}
		document.getElementById(id).className = 'display_none';
	}else{
		
		try{
			$('#'+id).slideDown("normal"); 
		}catch(e){
			//window.location("http://source.dentiste-france.local:81/saisie/");			
		};		
		document.getElementById(id).className = '';
	}	
}
function addFav(site_name) {
	//alert("site_name : " + 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){}
}
