	var ContentId = "";
	var CategoryId = "";
	var topmoreusersURL = "";
	var ReferringURL = "";

	CategoryId = getQueryVariable('CategoryId');
	ContentId = getQueryVariable('ContentId');
	ReferringURL = getQueryVariable('ref');

		
function getQueryVariable( name )
{  
	name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]").replace(/&/g, "&amp;"); 
	var regexS = "[\\?&]"+name+"=([^&#]*)";  
	var regex = new RegExp( regexS );  
	var results = regex.exec( window.location.href );  
	if( results == null )    
		return "";  
	else    
		return results[1];
}

function getTopMoreUsersURL()
{
	if (ReferringURL.length > 0){
	topmoreusersURL += "<iframe src=\"http://media1.break.com/static/app/v1/global/mod/topmoreusers/diggtopmoreusers.html?CategoryId=" ;
	topmoreusersURL +=  CategoryId; 
	topmoreusersURL += 	"&ContentId=";
	topmoreusersURL += 	ContentId;
	topmoreusersURL += 	"\" width=\"367\" height=\"1000\" frameborder=\"0\" scrolling=\"no\"></iframe>";
	document.getElementById("TopMoreUsersLink").innerHTML = topmoreusersURL;	
	}	
	else {
	topmoreusersURL += "<iframe src=\"http://media1.break.com/static/app/v1/global/mod/topmoreusers/topmoreusers.html?CategoryId=" ;
	topmoreusersURL +=  CategoryId; 
	topmoreusersURL += 	"&ContentId=";
	topmoreusersURL += 	ContentId;
	topmoreusersURL += 	"\" width=\"367\" height=\"1000\" frameborder=\"0\" scrolling=\"no\"></iframe>";
	document.getElementById("TopMoreUsersLink").innerHTML = topmoreusersURL;
	}
}
