		function ShowItem()
		{
			var Index = document.getElementById("fichiers").selectedIndex;
			if(document.getElementById("message").value != '') 
			{
				var texte = document.getElementById("message").value;
				var index_new = document.getElementById("fichiers").options[Index].text;
				//texte = texte+" "+index_new;
				texte = texte+index_new;
				document.getElementById("message").value = texte;
			} 
			else 
			{
				document.getElementById("message").innerHTML = document.getElementById("fichiers").options[Index].text;
			}
		}

		function Fermer()
		{
			opener=self;
			self.close();
		}
		
		/*
		Count down until any date script-
		By JavaScript Kit (www.javascriptkit.com)
		Over 200+ free scripts here!
		*/
		//change the text below to reflect your own,
		var before="la fin du concours";
		var current="Le concours est clos !";
		var montharray = new Array("Janvier","Fevrier","Mars","Avril","Mai","Juin","Juillet","Aout","Septembre","Octobre","Novembre","Decembre");


		function the_final_countdown(yr, m, d, h, mn, s)
		{
			var theyear = yr;
			var themonth = m;
			var theday = d;
			
			var today = new Date();
			var todayy = today.getYear();
			if (todayy < 1000) todayy += 1900;
			var todaym = today.getMonth()+1;
			var todayd = today.getDate();
			var todayh = today.getHours();
			var todaymin = today.getMinutes();
			var todaysec = today.getSeconds();
			
			var todaystring = todaym+"/"+todayd+"/"+todayy+" "+todayh+":"+todaymin+":"+todaysec;
			var futurestring = m+"/"+d+"/"+yr+" "+h+":"+mn+":"+s;
			
			dd = (Date.parse(futurestring)-Date.parse(todaystring))/1000;
			dday = Math.floor(dd/(60*60*24));
			dhour = Math.floor((dd%(60*60*24))/(60*60));
			dmin = Math.floor(((dd%(60*60*24))%(60*60))/60);
			dsec = Math.floor(((dd%(60*60*24))%(60*60))%60);
			
			if(Date.parse(futurestring) < Date.parse(todaystring))
			{
				document.getElementById('countdown').innerHTML = current;
			}
			else
			{
				document.getElementById('countdown').innerHTML = "Plus que "+dday+ " jours, "+dhour+" heures, "+dmin+" minutes, et "+dsec+" secondes avant "+before;
				setTimeout("the_final_countdown("+yr+","+m+","+d+","+h+","+mn+","+s+")", 1000);
			}
		}