// JavaScript Document

//Ajouter aux favoris
function Addfavoris(){
	var name = "Barrisol, world leader of stretch ceiling";
	if ( navigator.appName != 'Microsoft Internet Explorer' )
		{ window.sidebar.addPanel(name,"http://en.barrisol.com",""); }	
	else { window.external.AddFavorite("http://en.barrisol.com",name); } 
} 

// Formulaire contact
function obligSoc(affich){
    window.document.getElementById("obligSoc").style.display = affich;
}
function obligAutre(affich){
    window.document.getElementById("autre_metier").style.display = affich;
}
function obligAutreDecouvert(affich){
    window.document.getElementById("autre_decouvert").style.display = affich;
}


// ---------------------- Pour le moteur de rechrche multimedia ---------------------
function showhidemedia(id, suppr)
{
	var doc = window.document.getElementById(id);
	doc.style.display='inline';
	var docsuppr = window.document.getElementById(suppr);
	docsuppr.style.display='none';
}


// ---------------------- Blocage du clic-droit ---------------------
function ejs_nodroit()
{
	return(false);
}
document.oncontextmenu = ejs_nodroit;
