
monthNameArray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
monthNameTArray=new Array("Jan","F\u00E9v","Mars","Avril","Mai","Juin","Juillet","Ao\u00FBt","Sept","Oct","Nov","D\u00E9c");
var dObj=new Date();

var today = dObj.getDate();
var month = dObj.getMonth();

today=today+7; //this is where we add the number of days
if (today > 31)
{
month=month+1;
}
var i;

for(i=0; i<=11; i++)
{
if(i==month)
{
document.write("<option value="+monthNameArray[i]+" selected>"+monthNameTArray[i]);

}
else
{
document.write("<option value="+monthNameArray[i]+">"+monthNameTArray[i]);
}
}
