// JavaScript Document

// permet de distinguer l'ajout aux favoris pour le Site de l'Agence de l'ajout aux favoris pour l'Offre
// et permet de faire fonctionner l'ajout aux favoris dans IE
function favoris(type) {
	if(type=="top"){
		home = "http://" + document.location.host;
		if ( navigator.appName != 'Microsoft Internet Explorer' )
			{ window.sidebar.addPanel("Agence Latour",home, "");}
		else 
			{ window.external.AddFavorite(home, document.title);}
	}else{
		if ( navigator.appName != 'Microsoft Internet Explorer' )
			{ window.sidebar.addPanel(document.title, document.location, ""); }
		else 
		{ window.external.AddFavorite(document.location, document.title); }
	}
}
