function initCalendar2(y, m, d) {
var cal1 = new YAHOO.widget.Calendar("cal1Container");
  cal1.cfg.setProperty("MONTHS_LONG",    ["Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis", "Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis"]); 
  cal1.cfg.setProperty("WEEKDAYS_1CHAR", ["S", "P", "A", "T", "K", "P", "Š"]); 
  cal1.cfg.setProperty("WEEKDAYS_SHORT", ["S", "Pr", "A", "T", "K", "Pn", "Š"]); 
  cal1.cfg.setProperty("WEEKDAYS_MEDIUM",["Sk", "Pr", "An", "Tr", "Ke", "Pn", "Še"]); 
  cal1.cfg.setProperty("WEEKDAYS_LONG",  ["Sekmadienis", "Pirmadienis", "Antradienis", "Trečiadienis", "Ketvirtadienis", "Penktadienis", "Šeštadienis"]);                             
  cal1.cfg.setProperty("DATE_FIELD_DELIMITER", "-");

  cal1.cfg.setProperty("MDY_DAY_POSITION", 3);
  cal1.cfg.setProperty("MDY_MONTH_POSITION", 2);
  cal1.cfg.setProperty("MDY_YEAR_POSITION", 1);      
  cal1.cfg.setProperty("START_WEEKDAY", true);
  //cal1.cfg.setProperty("selected","3/1/2009",false);
  
  
  cal1.setYear(y);
  cal1.setMonth(m-1);    
  var d = new Date(y, m-1, d); 
  cal1.select(d);
  cal1.render();
  
  return cal1;
}
