//Author: Tomislav Curman
//Property of avro software. All Rights Reserved.

Comment=function(ID,trackingDataID,date,comment)
{
	this.ID=ID;
	this.trackingDataID=trackingDataID;
	this.date=this.decodeDate(jes.fromHex(date));
	this.comment=comment;
};

Comment.prototype=new WebObject();