function change(casse)
	{
	if (casse==1)
	{
	photo=document.getElementById("toto");
	photo.src="images/motsjoueur.gif";
	}
	if (casse==2)
	{
	photo=document.getElementById("toto");
	photo.src="images/motsfemme.gif";
	}
	if (casse==3)
	{
	photo=document.getElementById("toto");
	photo.src="images/motshomme.gif";
	}
	}
function restart()
	{
	res=document.getElementById("toto");
	res.src="images/mots.gif";
	}

function formCallback(result, form) {
							window.status = "valiation callback for form '" + form.id + "': result = " + result;
						}
						
						var valid = new Validation('test', {immediate : true, onFormValidate : formCallback});