//autoselect a textfield
window.onload = function()
{
	if(document.getElementById('start_input')!=null)
	{
		document.getElementById('start_input').focus();
	}
}
