/*
    This routine will take the focus to that input.
*/
function input_focus() {
    var input = $('#input');
    if (input) input.focus();
}

$(document).ready(input_focus);
