var Gezisitesi = window.Gezisitesi || {};

Gezisitesi.ProductComments = function( container, category, journeyId, commentTop, pageNumber, webRoot, type )
{
	this.Container = $('#'+container);
	this.Category = category;
	this.JourneyID = journeyId;
	hid = journeyId;
	this.CommentTop = commentTop;
	this.PageNumber = pageNumber;
	this.WebRoot = webRoot;
	this.Type = type;
}

Gezisitesi.ProductComments.prototype.GetRequestUrl = function()
{
	return webroot + 'forms/comments.aspx' + '?fpc=' + this.Category + '&fpj=' + this.JourneyID + '&fpct=' + this.CommentTop + '&fppn=' + this.PageNumber +'&typ='+ this.Type +'&fpr='+GetRandomNumberString();
}

Gezisitesi.ProductComments.prototype.Load = function()
{
	if ( this.Container != null && this.Container != 'undefined' )
	{
		this.Container.load( this.GetRequestUrl() );		
	}
}