function Navigateur(){
	if (navigator.appVersion.indexOf("MSIE") != -1){
		temp = navigator.appVersion.split("MSIE");
		version = parseFloat( temp[1] );
		if (version <= 6 ){
			document.write("<body style='background-color:#000;'></body>");
			alert(" Ce site utilise des applications web non reconnues par les versions antérieur d'Internet Explorer 7. \n\nMerci de :\n\n- Télécharger et installer Microsoft Internet Explorer 7 ou supérieur\n\n- Utiliser un navigateur différent tel que FIREFOX, SAFARI, OPERA");
			window.location = '/';
		}
	}
}
