loupeurl = "http://www.louvre.fr/templates/llv/flash/bertin/bertin_fr.html";

function getCalendarDate()
{

var now = new Date();
var monthnumber = now.getMonth();
var monthday = now.getDate();
var year = now.getYear();
if(year < 2000) { year = year + 1900; }
var dateString =monthday +"-"+( monthnumber+1) + '-'+ year;
return dateString;
} // function getCalendarDate()

