function openEpisode() {

  var myForm = document.getElementById('archiveform');
var theMonth = myForm.month.value;
var theDay = myForm.day.value;
var theYear = myForm.year.value;
 document.location = "http://dcovideo.dco1.com/" + theMonth + "-" + theDay + "-" + theYear + ".html";

return false;
}



