﻿function Browser() {}
Browser.prototype = {
  agent: navigator.userAgent,

  isIE: function() {
      return this.agent.indexOf('MSIE') != -1 ? true : false;
  },

  isGecko: function() {
      return this.agent.indexOf('Gecko/') != -1 ? true : false;
  },

  isOpera: function() {
      return this.agent.indexOf('Opera') != -1 ? true : false;
  }
}

var browser = new Browser();

