var WebPage = function(params){
	if ("object" == typeof params) {
		for (var i in params) {
			if (params[i]) {
				this['__externalParams'][i] = params[i];
			}
		}
	}
};
WebPage.prototype = new WebPageBase();

WebPage.prototype.init = function() {};
WebPage.prototype['init'] = WebPage.prototype.init;

WebPage.prototype.bindEvents = function() {};
WebPage.prototype['bindEvents'] = WebPage.prototype.bindEvents;

WebPage.prototype.attachPlugins = function() {};
WebPage.prototype['attachPlugins'] = WebPage.prototype.attachPlugins;

