function button_onMouseOver()
	{
		document.ImgEuro.src='./photos/Euro2.jpg';
		document.ImgEuro.width=75;
		document.ImgEuro.height=75;
	}
		
	function button_onMouseOut()
	{
		document.ImgEuro.src='./photos/Euro1.jpg';
		document.ImgEuro.width=50;
		document.ImgEuro.height=50;
	} 
	function cart_onClick(page,nom,option)
	{
		window.open(page,nom,option);
	}
	function heure ()
	{
		var Maintenant = new Date();
		var heures = Maintenant.getHours();
		var minutes = Maintenant.getMinutes();
		var secondes = Maintenant.getSeconds();
		heures = ((heures < 10) ? " 0" : " ") + heures;
		minutes = ((minutes < 10) ? ":0" : ":") + minutes;
		secondes = ((secondes < 10) ? ":0" : ":") + secondes;
		document.formhorloge.horloge.value = heures + minutes + secondes;
		setTimeout("heure()",1000);
	}
	
