var Equip = {
	
	Utilities: {
		getWindowSize: function(w) {
		        w = w ? w : window;
		        var width = w.innerWidth || (w.document.documentElement.clientWidth || w.document.body.clientWidth);
		        var height = w.innerHeight || (w.document.documentElement.clientHeight || w.document.body.clientHeight);
				var top = w.pageYOffset || w.document.body.scrollTop || w.document.documentElement.scrollTop;
		        return [width, height, top];
		}
	}
};

String.prototype.widont = function() {
	space = this.lastIndexOf(' ');
	if (space == -1) {
		return this;
	} else {
		return this.substr(0, space) + '&nbsp;' + this.substr(space+1);
	}
};