

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


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