function favoris() {
	if ( navigator.appName != 'Microsoft Internet Explorer' )	{ 
		window.sidebar.addPanel("Le guide du chien","http://www.votre-chien.com/",""); 
	}
	else { 
		window.external.AddFavorite("http://www.votre-chien.com/","Le guide du chien"); 
	} 
} 

/*
Script téléchargé du Coin Web de QuentinC
http://www.quentinc.net/

Vous trouverez d'autres scripts à l'adresse : 
http://www.quentinc.net/javascript/

© 2002-2006, QuentinC
*/
function setCharCounter (a, b, n) 
{
	var o = document.getElementById(a);
	o.charCounterMax = n;
	o.charCounterDisplay = b;
	o.onkeyup = charCounterUpdate;
}

function charCounterUpdate () 
{
	var n = this.value.length;

	if (this.charCounterDisplay) {
		var o = document.getElementById(this.charCounterDisplay);
		if (o.tagName.toLowerCase()=="input") 
			o.value = n;
		else 
			o.innerHTML = n;
	}
}

function elt_colore(elt) {
	elt.style.border='2px dotted #9c7163';
}

function elt_decolore(elt) {
	elt.style.border='2px solid #fff';
}

function elt_colore2(elt) {
	elt.style.border='5px solid #9c7163';
}

function elt_decolore2(elt) {
	elt.style.border='5px solid #fff';
}

function accord()
{
	var entree=window.confirm("Confirmer cette action ?");
	if (entree) 
		return true;
	else 
		return false;
}

