function getReportSpamPopup(el, id, username, timestamp, shopurl)
{
	var x 										= findPosX(el);
	var y 										= findPosY(el);
	
	var reportSpamPopup 						= document.getElementById('reportSpamPopup');
	
	document.getElementById('f_reaction_id').value 			= id;
	document.getElementById('f_reaction_username').value 	= username;
	document.getElementById('f_reaction_timestamp').value 	= timestamp;
	document.getElementById('f_reaction_shopurl').value 	= shopurl;
	
	reportSpamPopup.style.left 					= x + 'px';
	reportSpamPopup.style.top 					= y + 'px';
	reportSpamPopup.style.display				= 'block';
}