// If user is not logged in, prepend anonymous user login js call to all the links with the specified class
function setupPromoLinkOff(sLinkOffClass, sPortalID, sPromoCreditUser) {
		$(sLinkOffClass).each(function(i) {
 		var sHREF = escape(escape($(this).attr("href").replace(("="+sPromoCreditUser), "=[creditUser]").replace(("%3D"+sPromoCreditUser), "%3D%5BcreditUser%5D")));
		
			$(this).attr("href", "javascript:getBannerURL('index%252Ecfm%253Faction%253Dgateway%252EredirectGateway%2526gatewayUrl%253D"+sHREF+"', 'W');");
		});
}
