function setTargetDate(m,y) {
  var ms = document.getElementById(m);
  alert('Success One!');
  var ys = document.getElementById(y);
  alert('Success Two!');
}

function jumpToDate(i) {
  var m = document.forms[i].month.value;
  var y = document.forms[i].year.value;
  var f = m + y + ".inc";
  var l = "http://www.born-2-fly.com/calendar.php?req=" + f;
  document.location.href=l;
}
