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