
var imgOrgSrc= "http://demo.ciscovideo.com:8080/NatC_Metrics/clickImage.jsp";
var reportingImage;
/*===========================
Write Image Functions
============================*/
reportingImage= new Image(1,1);

/*===========================
Send Tracking Functions
============================*/

// variables being sent: clickLocation, action, contentType, contentID, userID
function sendReport(s_clickLocation,s_action,s_contentType,s_contentID,s_userID){
	if (!document.getElementById) return
	var today= new Date();
	var imgSrc= imgOrgSrc + "?clickLocation=" + s_clickLocation + "&action=" + s_action + "&contentType=" + s_contentType + "&contentID=" + escape(s_contentID) + "&userID=" + s_userID + "&random=" + today.getTime()+ "&referrer="+ escape(document.referrer);
	reportingImage.src=imgSrc;
} 
