﻿function SetFocus() {
    var firstFormField = document.getElementById("firstNameBox");
    firstFormField.focus();
}

