var toolbar = {
	url: null,
	ieOrFirefox: true,
	init: function() {
		
	},
	getUrl: function() {
		if(sniff.isIE || navigator.userAgent.indexOf("MSIE 8.0") != -1) {
			this.url = 'http://GameProcom.OurToolbar.com/exe';
		} else if (navigator.userAgent.indexOf("Firefox") != -1 || sniff.isFFMac) {
			this.url = 'http://GameProcom.OurToolbar.com/xpi';
		} else {
			this.ieOrFirefox = false;
		}
		
		if(this.ieOrFirefox == false) {
			var mssg = {
			"header": 'Message Alert',
			"bodyContent": "<p>GamePro Tool v1.0 is only compatible with IE and Mozilla Firefox.</p>"
			}
			util.talkbox($H(mssg).toJSON());
		} else {
			window.location.href = this.url;
		}
	}
}