function SetFocus(strId) {
    var objInputField;
    if (objInputField=document.getElementById(strId)) {
        objInputField.focus();
    }
}
