window.onload = function () {

    var eml = document.getElementById('email');

    if(eml) {
        eml.focus();
    }

    eml = undefined;
};

