JavaScript Mind
















©2000 - Patrick IRENEE
Retour a Gendnet

S O L U T I O N

Téléchargez ici le script et ses composants, ( 12,3 Ko )

Copiez avant la balise </head> le script ci-dessous :

<SCRIPT language=JavaScript><!--
		
	var serie = new Array(4);
	var mark = new Array(4);
	var proposition = new Array(4);
	var lignes = new Array(11);
	var fcouleurs = new Array(6);
	var freponse = new Array(5);
	var commentaires = new Array(9);
	var ligne = 0;
	var colonne = 0;
	var reponses = 0;
	var fini = false
	
	var bleu = 0;
	var vert = 1;
	var orange = 2;
	var violet = 3;
	var rouge = 4;
	var jaune = 5;
	var vide = 6;
	
	var blanc = 0;
	var noir = 1;
	var rien = 2;
	var position = 3;
	var nul = 4;
	
	lignes[0] = 7;
	lignes[1] = 16;
	lignes[2] = 25;
	lignes[3] = 34;
	lignes[4] = 43;
	lignes[5] = 52;
	lignes[6] = 61;
	lignes[7] = 70;
	lignes[8] = 79;
	lignes[9] = 88;
	lignes[10] = 96;
	
	fcouleurs[0] = 'jsmind/blueball.gif';
	fcouleurs[1] = 'jsmind/greenball.gif';
	fcouleurs[2] = 'jsmind/orangeball.gif';
	fcouleurs[3] = 'jsmind/purpleball.gif';
	fcouleurs[4] = 'jsmind/redball.gif';
	fcouleurs[5] = 'jsmind/yellowball.gif';
	fcouleurs[6] = 'jsmind/hole.gif';
	
	freponse[0] = 'jsmind/present.gif';
	freponse[1] = 'jsmind/place.gif';
	freponse[2] = 'jsmind/hole2.gif';
	freponse[3] = 'jsmind/position.gif';
	freponse[4] = 'jsmind/position_free.gif';
	
	commentaires[0] = '';
	commentaires[1] = 'Pion bleu';
	commentaires[2] = 'Pion vert';
	commentaires[3] = 'Pion orange';
	commentaires[4] = 'Pion violet';
	commentaires[5] = 'Pion rouge';
	commentaires[6] = 'Pion jaune';
		
	function Help() {
		window.open('jsmind/help.html','Aide','width=400,height=300,scrollbars=1');
	}
	
	function Aleatoire(mini,maxi) {
		var x = -1;
	
		while (x < mini) {
			x = Math.round(Math.random() * maxi);
		}
	
		return x;
	}
	
	function EffaceLigne(noligne) {
		for (var x = 0; x < 4; x++) {
			document.images[lignes[noligne]+x].src = fcouleurs[vide];
		}
		if (noligne < 10) {
			for (var x = 0; x < 4; x++) {
				document.images[lignes[noligne]-1].src = freponse[nul];
				document.images[lignes[noligne]+4+x].src = freponse[rien];
			}
		}
	}
	
	function GenereSerie() {
		for (var x = 0; x < 11; x++) {
			EffaceLigne(x);
		}
		for (var x = 0; x < 4; x++) {
			serie[x] = Aleatoire(0,5);
			mark[x] = 0;
		}
		fini = false;
		colonne = 0;
		ligne = 0;
		reponses = 0;
		document.images[lignes[ligne]-1].src = freponse[position];
	}
	
	function PlacePion(couleur) {
		if (colonne > 3) {
			window.alert('Toutes les places sont prises !');
		}
		else {
			document.images[lignes[ligne]+colonne].src = fcouleurs[couleur];
			proposition[colonne] = couleur;
			colonne++;
		}
	}
	
	function Efface() {
		if (fini) {
			window.alert("La partie est terminée !");
		}
		else {
			EffaceLigne(ligne);
			colonne = 0;
		}
	}
	
	function TesteLigne() {
		for (var x = 0; x < 4; x++) {
			if (proposition[x] == serie[x] && reponses < 4) {
				document.images[lignes[ligne]+4+reponses].src = freponse[noir];
				reponses++;
				proposition[x] = -1;
				mark[x] = -1;
			}
		}
	
		if (reponses < 4) {
			for (var x = 0; x < 4; x++) {
				for (var y = 0; y < 4; y++) {
					if (proposition[y] == serie[x] && reponses < 4 && mark[x] != -1) {
						document.images[lignes[ligne]+4+reponses].src = freponse[blanc];
						reponses++;
						mark[x] = -1;
						break;
					}
				}
			}
		}
	}
	
	function Test() {
		if (colonne < 4) {
			window.alert("Vous devez remplir la ligne!");
		}
		else
		{
			if (proposition.join() != serie.join()) {
				if (ligne < 9) {
					TesteLigne();
					colonne = 0;
			 		document.images[lignes[ligne]-1].src = freponse[nul];
					ligne++;
			 		document.images[lignes[ligne]-1].src = freponse[position];
					reponses = 0;
					for (var x = 0; x < 4; x++) {
						mark[x] = 0;
					}
				}
				else {
					window.alert("Vous avez perdu !");
					fini = true;
					for (var x = 0; x < 4; x++) {
				 		document.images[lignes[10]+x].src = fcouleurs[serie[x]];
					}
				}
			}
			else {
				window.alert("Vous avez gagné !");
				fini = true;
				for (var x = 0; x < 4; x++) {
			 		document.images[lignes[10]+x].src = fcouleurs[serie[x]];
				}
			}
		}
	}
	
	
	function UpdateStatusBar(Num) {
		window.status = commentaires[Num];
	}
	
	//--></SCRIPT>

Remplacez entièremenent la ligne de votre body par celle-ci :

<BODY BGCOLOR="#808080" VLINK="#FFFFBE" onload=GenereSerie();>

Collez avnt la balise </body> le script-cidessous :

<P><CENTER><TABLE BORDER=1>
   <TR>
      <TH COLSPAN=13 align=middle>
         <P><FONT SIZE="+3">JavaScript Mind</FONT>
      </TH><TD>
         <P>
      </TD></TR>
   <TR>
      <TD VALIGN=top ROWSPAN=24 align=middle bgcolor=blak>
         <P><BR>
         
         <BR>
         
         <BR>
         
         <A HREF="#"
         onclick=PlacePion(bleu); onmouseout="UpdateStatusBar(0); return true;" onmouseover="UpdateStatusBar(1); return true;"><IMG
         SRC="jsmind/blueball.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom></A><A HREF="#"
         onclick=PlacePion(vert); onmouseout="UpdateStatusBar(0); return true;" onmouseover="UpdateStatusBar(2); return true;"><IMG
         SRC="jsmind/greenball.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom></A><A HREF="#"
         onclick=PlacePion(orange); onmouseout="UpdateStatusBar(0); return true;" onmouseover="UpdateStatusBar(3); return true;"><IMG
         SRC="jsmind/orangeball.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom></A><A HREF="#"
         onclick=PlacePion(violet); onmouseout="UpdateStatusBar(0); return true;" onmouseover="UpdateStatusBar(4); return true;"><IMG
         SRC="jsmind/purpleball.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom></A><A HREF="#"
         onclick=PlacePion(rouge); onmouseout="UpdateStatusBar(0); return true;" onmouseover="UpdateStatusBar(5); return true;"><IMG
         SRC="jsmind/redball.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom></A><A HREF="#"
         onclick=PlacePion(jaune); onmouseout="UpdateStatusBar(0); return true;" onmouseover="UpdateStatusBar(6); return true;"><IMG
         SRC="jsmind/yellowball.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom></A><BR>
         
         <BR>
         
         <BR>
         
         <BR>
         
         <INPUT onclick=Test(); type=button value=   Jouer   ><BR>
         
         <BR>
         
         <INPUT onclick=Efface(); type=button value= Annuler ><BR>
         
         <BR>
         
         <INPUT onclick=GenereSerie(); type=button value=Rejouer><BR>
         
         <BR>
         
         
         
         <BR>
         
         <BR>
         
         <SUB><A HREF="mailto:webmaster@gendnetclub.com"
         onmouseout="UpdateStatusBar(0); return true;" onmouseover="UpdateStatusBar(7); return true;">&copy;2000 - Patrick
         IRENEE</A><BR>
         
         <A HREF="http://www.gendnet.com/" TARGET="_top"
         onmouseout="UpdateStatusBar(0); return true;" onmouseover="UpdateStatusBar(8); return true;">Retour a Gendnet</A></SUB>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/position_free.gif" WIDTH=20 HEIGHT=20
         BORDER=0 ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/position_free.gif" WIDTH=20 HEIGHT=20
         BORDER=0 ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/position_free.gif" WIDTH=20 HEIGHT=20
         BORDER=0 ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/position_free.gif" WIDTH=20 HEIGHT=20
         BORDER=0 ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/position_free.gif" WIDTH=20 HEIGHT=20
         BORDER=0 ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/position_free.gif" WIDTH=20 HEIGHT=20
         BORDER=0 ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/position_free.gif" WIDTH=20 HEIGHT=20
         BORDER=0 ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/position_free.gif" WIDTH=20 HEIGHT=20
         BORDER=0 ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/position_free.gif" WIDTH=20 HEIGHT=20
         BORDER=0 ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/position_free.gif" WIDTH=20 HEIGHT=20
         BORDER=0 ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P><IMG SRC="jsmind/hole2.gif" WIDTH=10 HEIGHT=10 BORDER=0
         ALIGN=bottom>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD COLSPAN=13 align=middle>
         <P><B>S O L U T I O N</B>
      </TD></TR>
   <TR><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD ROWSPAN=2 COLSPAN=2 align=middle WIDTH=30 HEIGHT=30>
         <P><IMG SRC="jsmind/hole.gif" WIDTH=14 HEIGHT=14 BORDER=0
         ALIGN=bottom>
      </TD><TD align=middle>
         <P>
      </TD><TD align=middle>
         <P>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD align=middle>
         <P>
      </TD><TD align=middle>
         <P>
      </TD><TD>
         <P>
      </TD></TR>
   <TR><TD>
         <P>
      </TD><TD>
         <P>
      </TD><TD>
         <P>
      </TD><TD>
         <P>
      </TD><TD>
         <P>
      </TD><TD>
         <P>
      </TD><TD>
         <P>
      </TD><TD>
         <P>
      </TD><TD>
         <P>
      </TD><TD>
         <P>
      </TD><TD>
         <P>
      </TD><TD>
         <P>
      </TD><TD>
         <P>
      </TD></TR>
</TABLE></CENTER></P>

 

  ©2000 - JavaManiaLand
WebMaster : ©2000 -Patrick IRENEE

 © Copyright GendNet 2000 Tout droit de reproduction strictement réservé aux membres de l'association ®