// ------------- Fonction ouvrant le pop-up du convertisseur ----------------------------------
function convertisseur() {
	window.open('../interface/convertisseur.php4','convertisseur','width=440,height=300');
}

// ------------- Fonction ouvrant le pop-up du plan d'acces ----------------------------------
function acces() {
	window.open('../la_societe/plan_acces.php4','acces','width=540,height=500')
}

// ------------- Fonction déclenchant l'impression du contenu de la page courante -------------
function imprimer() {
	window.focus();
	window.print();
}

// ------------- Fonction mettant le site en favori ------------------------------------------
function favori() {
		var str = "www.chambrelan.com";
		var cible = 'http://www.chambrelan.com';
		var isNN = (navigator.appName=="Netscape");
		var isIE = (navigator.appName.indexOf("Explorer")!=-1)
		if (isIE)
		{
			window.external.AddFavorite(cible,str);
		}
		if (isNN)
		{
			var strMSG = "";
			strMSG = "Toevoegen aan favorieten,\n";
			strMSG = strMSG + "<Ctrl> + <D>";
			alert(strMSG);
		}
}