document.getElementById('time').focus();

var form = document.getElementsByTagName('form')[0];
form.onsubmit = function() {
 var time = document.getElementById('time').value;
 window.location = this.action+'/'+escape(time);
 return false;
}
