// JavaScript Document


var calendario; /*must be declared in global scope*/
/*put the calendar initializations in the window's onload() method*/
window.onload = function() {
calendario = new Epoch('fecha','flat',document.getElementById('calendario_container'),false);
};


