MTVM.services.Reporting = {}


MTVM.services.Reporting.Events = 
{
	__PLAYLIST_CREATE__:	'ugc playlist create',
	__PLAYLIST_PLAY__:		'ugc playlist play',
	__QUICKLIST_PLAY__:		'ugc quicklist play'
}

MTVM.services.Reporting.__sendLinkEvent = function(linkName, linkType)
{	
	com.mtvi.reporting.Controller.sendLinkEvent
	(
		{
			linkName:linkName,
			linkType:linkType
		}	
	);
}

MTVM.services.Reporting.sendPlaylistCreateEvent = function()
{	
	MTVM.services.Reporting.__sendLinkEvent(MTVM.services.Reporting.Events.__PLAYLIST_CREATE__, "o");
}


MTVM.services.Reporting.sendPlaylistPlayEvent = function()
{	
	MTVM.services.Reporting.__sendLinkEvent(MTVM.services.Reporting.Events.__PLAYLIST_PLAY__, "o");
}


MTVM.services.Reporting.sendQuicklistPlayEvent = function()
{	
	MTVM.services.Reporting.__sendLinkEvent(MTVM.services.Reporting.Events.__QUICKLIST_PLAY__, "o");
}




