var msgFooter = new Array();

function creerAjouterAuxFavoris()
{
	if(document.getElementById("pied-de-page"))
	{
		var theUl = document.getElementById("pied-de-page-ul");
		theUl.appendChild(document.createElement("li"));
		theUl.lastChild.appendChild(document.createElement("a"));
		theUl.lastChild.firstChild.appendChild(document.createTextNode(msgFooter['ajouterAuxFavoris']));
		theUl.lastChild.firstChild.href = "#";
		theUl.lastChild.firstChild.setAttribute("class","roll");
		theUl.lastChild.firstChild.setAttribute("className","roll");
		theUl.lastChild.firstChild.onclick = function()
		{
			ajouterAuxFavoris();
			return(false);			
		}
	}
}
function ajouterAuxFavoris()
{
	if (navigator.appName != "Microsoft Internet Explorer")
	{
		window.sidebar.addPanel(msgFooter['ajouterAuxFavorisTitre'], "http://www.paruvendu.fr","");
	}
	else
	{
		window.external.AddFavorite("http://www.paruvendu.fr", msgFooter['ajouterAuxFavorisTitre']);
	}
}