function Activity()
{
	 this.storeId = '';
	 this.catalogId= '';
	 this.langId= ''; 
	 this.klnr='0';
	 this.activity= '';
	 this.site= '';
	 this.siteId= '';
	 this.field1= '';
	 this.field2= '';
	 this.field3= '';
	 this.field4= '';
	 this.predictions = '';
	 this.shopcartitems = '';
	 this.prevpage= '';
	 this.errmsg= '';	
}


Activity.prototype.doActivity = function()
{
	$.ajax({
		   type: "GET",
		   url: "ActivityLogView",
		   data: "catalogId="+this.catalogId+
		   		 "&langId="+this.langId+
		   		 "&storeId="+this.storeId+
		   		 "&klnr="+this.klnr+
		   		 "&activity="+this.activity+
		   		 "&site="+this.site+
		   		 "&siteid="+this.siteid+
		   		 "&field1="+this.field1+
		   		 "&field2="+this.field2+
		   		 "&field3="+this.field3+
		   		 "&field4="+this.field4+
		   		 "&prevpage="+this.prevpage+
		   		 "&predictions="+this.predictions+
		   		 "&shopcartitems="+this.shopcartitems+
		   		 "&errmsg="+this.errmsg
		 		});  
}
