


function afficheMaxi(chemin)
{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HEAD><title>Graphisite.com</title></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 onload="window.moveTo(0, 0)"><CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></CENTER></BODY></HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
};

			function Verifier_Numero_Telephone(num_tel)
			{
				// Definition du motif a matcher
				var regex = new RegExp(/^(01|02|03|04|05|06|08)[0-9]{8}/gi);
				
				// Definition de la variable booleene match
				var match = false;
				
				// Test sur le motif
				if(regex.test(num_tel))
				{
					match = true;
				}
				  else
				{
					match = false;
				}
				
				// On renvoie match
				if(match==true)	{ document.forms[0].submit(); 							return match;	}
				else			{ alert("Le numéro de téléphone n'est pas valide !");	return false;	}
				return match;
			}
