

var app = {
    IsIE:       (navigator.userAgent.indexOf('MSIE')  > 0),
    IsGecko:    (navigator.userAgent.indexOf('Gecko') > 0),
    IsOpera:    (navigator.userAgent.indexOf('Opera') > 0)
}


function get(el) {
    return (typeof el == 'string') ? document.getElementById(el) : el;
}