function OuvrirPop(url,nom,haut,Gauche,largeur,hauteur,options) {
	ouvpop=window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
	if (!ouvpop) { 
    	alert("Une fenêtre importante a été bloquée par votre navigateur.\n\rVeuillez désactiver votre bloqueur de pop-ups."); 
	} 
}
function favoris() {
	if ( navigator.appName != 'Microsoft Internet Explorer' ) window.sidebar.addPanel("<?=$titre?>","http://<?=$_SERVER['SERVER_NAME']?><?=$_SERVER['REQUEST_URI']?>","");
	else window.external.AddFavorite("http://<?=$_SERVER['SERVER_NAME']?><?=$_SERVER['REQUEST_URI']?>","<?=$titre?>"); 
}
function stripslashes (str) {
	return (str+'').replace(/\\(.?)/g, function (s, n1) {
        switch (n1) {
            case '\\':
                return '\\';
            case '0':                return '\u0000';
            case '':
                return '';
            default:
                return n1;        }
    });
}