﻿function GlobalEdgeStatistics()
{
	this.ObjectType = "";
	this.ObjectId = "0";
	this.StatisticsType = "";
	
	this.MakeRequest = function()
	{

		var url = "?ObjectType=" + this.ObjectType + 
		          "&ObjectId=" + this.ObjectId + 
		          "&StatisticsType=" + this.StatisticsType + 
		          "&rnd=" + Math.random();;

		var image = new Image();
		image.src = "/increase-statistics.axd" + url;
	}
}
