﻿//Used to set focus to a control on page load
Sys.Application.add_load
(
    function() 
    {
        window.setTimeout(SetFocus, 1);
    }
)

