function refresh_div(annee,mois) { var param = 'annee:'+annee+',mois:'+mois ; var myAjax = new Ajax.Request('http://www.le-music-hall.fr/pages/contenu-calendrier.php', { method: 'post', asynchronous: false, encoding: 'ISO-8859-15', postBody: param, onSuccess: function(req) { document.getElementById('calendrier').innerHTML = req.responseText ; }.bind(this) }); } function refresh_div_photos() { var myAjax = new Ajax.Request('http://www.le-music-hall.fr/pages/photos-revue.php', { method: 'post', asynchronous: false, encoding: 'ISO-8859-15', postBody: "", onSuccess: function(req) { document.getElementById('image-revue').innerHTML = req.responseText ; }.bind(this) }); } function refresh_div_coulisses() { var myAjax = new Ajax.Request('http://www.le-music-hall.fr/pages/coulisses-revue.php', { method: 'post', asynchronous: false, encoding: 'ISO-8859-15', postBody: "", onSuccess: function(req) { document.getElementById('image-revue').innerHTML = req.responseText ; }.bind(this) }); }