

var app = {
    isIE:       (navigator.userAgent.indexOf('MSIE')  > 0),
    isGecko:    (navigator.userAgent.indexOf('Gecko') > 0),
    isOpera:    (navigator.userAgent.indexOf('Opera') > 0),

    get: function(id) {
        //alert(id);
        return document.getElementById(id);
    }

}

