var before1="A vos marques! Le Grand Jour c'est demain."
var current1="C'est parti!"
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")

function countdown1(yr,m,d){
var today=new Date()
var todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy
var futurestring=montharray[m-1]+" "+d+", "+yr
var difference1=(Math.round((Date.parse(futurestring)-Date.parse(todaystring))/(24*60*60*1000))*1)
if (difference1==0)
document.write(current)
else 
document.write("Eh oui ... d&#233;j&#224; "+-(difference1)+" jours !!!")
}
//enter the count down date using the format year/month/day
countdown1(2009,6,12)

