function choix() {
	valeurx = Math.round(Math.random() * 100);
	document.formulaire.nombrex.value = valeurx;
	valeury = Math.round(Math.random() * 100);
	document.formulaire.nombrey.value = valeury;
	alert('J\'ai choisi.\nVous pouvez commencer a chercher...');
	}

function verification() {
var propx = document.formulaire.propositionx;
var propy = document.formulaire.propositiony;
var helpx = document.formulaire.aidex;
var helpy = document.formulaire.aidey;
var score = document.formulaire.scoring;

	if ( propx.value == valeurx && propy.value == valeury ) {
		helpx.value = 'Vous avez...';
		helpy.value = 'Gagne !!';
		}
	if ( propx.value == valeurx && propy.value < valeury ) {
		helpx.value = 'C\'est la bonne colonne';
		helpy.value = 'Trop bas...';
		score.value++;
		}
	if ( propx.value == valeurx && propy.value > valeury ) {
		helpx.value = 'C\'est la bonne colonne';
		helpy.value = 'Trop haut...';
		score.value++;
		}
	if ( propx.value < valeurx && propy.value == valeury ) {
		helpx.value = 'Trop a gauche...';
		helpy.value = 'C\'est la bonne ligne';
		score.value++;
		}
	if ( propx.value > valeurx && propy.value == valeury ) {
		helpx.value = 'Trop a droite...';
		helpy.value = 'C\'est la bonne ligne';
		score.value++;
		}
	if ( propx.value < valeurx && propy.value < valeury ) {
		helpx.value = 'Trop a gauche...';
		helpy.value = 'Trop bas...';
		score.value++;
		}
	if ( propx.value > valeurx && propy.value < valeury ) {
		helpx.value = 'Trop a droite...';
		helpy.value = 'Trop bas...';
		score.value++;
		}
	if ( propx.value < valeurx && propy.value > valeury ) {
		helpx.value = 'Trop a gauche...';
		helpy.value = 'Trop haut...';
		score.value++;
		}
	if ( propx.value > valeurx && propy.value > valeury ) {
		helpx.value = 'Trop a droite...';
		helpy.value = 'Trop haut...';
		score.value++;
		}
	}
