function convertDate(datein,language) {
    var date ='';

    date = datein.split(" ");

    date = date[0]+' '+changeMonthLang(language,date[1])+' '+date[2];
    
    document.write(date);
}
function changeMonthLang(lang,monthin) {
   var month = '';

   if (monthin!=10)
   monthin = monthin.replace('0','');
   
   var enMonth = new Array();
   var frMonth = new Array();
   var esMonth = new Array();

   enMonth[1] = "January";	frMonth[1] = "janvier";		esMonth[1] = "enero";
   enMonth[2] = "February";	frMonth[2] = "f&#233;vrier";		esMonth[2] = "febrero";
   enMonth[3] = "March";	frMonth[3] = "mars";		esMonth[3] = "marzo";
   enMonth[4] = "April";	frMonth[4] = "avril";		esMonth[4] = "abril";
   enMonth[5] = "May";		frMonth[5] = "mai";		esMonth[5] = "mayo";
   enMonth[6] = "June";		frMonth[6] = "juin";		esMonth[6] = "junio";
   enMonth[7] = "July";		frMonth[7] = "juillet";		esMonth[7] = "julio";
   enMonth[8] = "August";	frMonth[8] = "ao&#251;t";		esMonth[8] = "agosto";
   enMonth[9] = "September";	frMonth[9] = "septembre";	esMonth[9] = "septiembre";
   enMonth[10] = "October";	frMonth[10] = "octobre";	esMonth[10] = "octubre";
   enMonth[11] = "November";	frMonth[11] = "novembre";	esMonth[11] = "noviembre";
   enMonth[12] = "December";	frMonth[12] = "d&#233;cembre";	esMonth[12] = "diciembre";

   if(lang=='en') {
	month = enMonth[monthin];
   }
   if(lang=='fr') {
       month = frMonth[monthin];
   }
   if(lang=='es') {
	month = esMonth[monthin];
   }

    return month;
}

