


var Activity = new Class({
	initialize: function() {
		this.PROPERTY_SALES_VIEW = "1";
		this.PROPERTY_LETTINGS_VIEW = "2";
		this.BROSHURE_VIEW = "3";
		this.host ="http://www.thebu2iness.com/activity.do";
	},

	save: function(propertyId, companyId,eventId){
		var url = this.host +"?" + Object.toQueryString({propertyId: propertyId, companyId: companyId, eventId:eventId});
		//new Ajax(url, {method: 'get'}).request();
		new Asset.javascript(url, {id: 'myScript'});
		return true;
	}
});

var ActivityTrigger = new Activity();

