<!--

function adSenseObj(match,compare,show,parameter,tracker,prefix,sufix)
{
	this.Match = match;
	this.Compare = compare;	
	this.Show = show;
	this.Parameter = parameter;
	this.Tracker = tracker;
	this.Prefix = (prefix == null)?'':prefix;
	this.Sufix = (sufix == null)?'':sufix;
	
	this.toString = function(sep)
	{
		var sObj = "";
		sObj += "Match = "+this.Match+sep;
		sObj += "Compare = "+this.Compare+sep;
		sObj += "Show = "+this.Show+sep;
		sObj += "Parameter = "+this.Parameter+sep;
		sObj += "Tracker = "+this.Tracker+sep;
		sObj += "Prefix = "+this.Prefix+sep;
		sObj += "Sufix = "+this.Sufix+sep;
		return sObj;
	}
}

var adSenseKeys = new Array();

// -->
