function cherche_navigateur() {
var navigateur = "";
	if ( navigator.userAgent.indexOf('Opera 5') != -1 ) { navigateur = 'Opera 5.x'; }
	else if ( navigator.userAgent.indexOf('MSIE 4.5') != -1 ) { navigateur = 'Microsoft Internet Explorer 4.5'; }
	else if ( navigator.userAgent.indexOf('MSIE 5.0') != -1 ) { navigateur = 'Microsoft Internet Explorer 5.0'; }
	else if ( navigator.userAgent.indexOf('MSIE 5.5') != -1 ) { navigateur = 'Microsoft Internet Explorer 5.5'; }
	else if ( navigator.userAgent.indexOf('Mozilla/3.0') != -1 ) { navigateur = 'Netscape Navigator 3.0'; }
	else if ( navigator.userAgent.indexOf('Mozilla/4.0') != -1 ) { navigateur = 'Netscape Communicator 4.0'; }
	else if ( navigator.userAgent.indexOf('Mozilla/4.5') != -1 ) { navigateur = 'Netscape Communicator 4.5x'; }
	else if ( navigator.userAgent.indexOf('Mozilla/4.7') != -1 ) { navigateur = 'Netscape Communicator 4.7x'; }
	else if ( navigator.userAgent.indexOf('Mozilla/5.0') != -1 ) { navigateur = 'Netscape Communicator 6.0'; }
	else { navigateur = 'Inconnu'; }

	document.formulaire.navigateur.value = navigateur;
	}

function cherche_navigateur_simple() {
var navigateur = "";
	if ( navigator.userAgent.indexOf('Opera 5') != -1 ) { navigateur = 'Vous utilisez un navigateur alternatif'; }
	else if ( navigator.userAgent.indexOf('MSIE') != -1 ) { navigateur = 'Vous utilisez un produit Microsoft !!'; }
	else if ( navigator.userAgent.indexOf('Mozilla') != -1 ) { navigateur = 'Vous utilisez un produit Netscape !!'; }
	else { navigateur = 'Vous utilisez un navigateur alternatif'; }

	document.formulaire.navigateur2.value = navigateur;
	}
