function moisAvant(ts){
    element = Element.getChildElements(document.getElementById('calendrier'), 'DIV');
    chaine = "idElement="+encodeURIComponent("calendrier")+"&type="+encodeURIComponent("Widgets")+"&ts="+ts+"&sens=av";
    new Moteur(chaine, element[1],'TXT');
}

function moisApres(ts){
    element = Element.getChildElements(document.getElementById('calendrier'), 'DIV');
    chaine = "idElement="+encodeURIComponent("calendrier")+"&type="+encodeURIComponent("Widgets")+"&ts="+ts+"&sens=ap";
    new Moteur(chaine, element[1], 'TXT');
}

function Calendrier(idElement){
    this.calendrier = document.getElementById(idElement);
}

Calendrier.prototype = {
    setComportement: function(){
	
    }
}
