
function utmLinkWrapper(href){
       //var href = node.href;
       if(href.indexOf('ld=') <=0){
               var ldsrc = getLeadSource();
               if(href.indexOf('?') >0){
                       href = href + '&ld=' + ldsrc;
               }else{
                       href = href + '?ld=' + ldsrc;
               }
       }
       document.location = href;
}


function utmLinkWrapperPassthrough(href){
       //var href = node.href;
       if(href.indexOf('ld=') <=0){
		   var ldsrc = getLeadSource();
            if(href.indexOf('https://sellercentral.amazon.com/gp/on-board/workflow/Registration/login.html') >= 0){   
               if(href.indexOf('?') >0){
                       href = href + '&passthrough%2Fld=' + ldsrc;
               }else{
                       href = href + '?passthrough%2Fld=' + ldsrc;
               }
			 } else  {
               if(href.indexOf('?') >0){
                       href = href + '&ld=' + ldsrc;
               }else{
                       href = href + '?ld=' + ldsrc;
               }
			 }
       }
       document.location = href;
}

function addLeadPC(href){
	var ldsrc = getLeadSource();
	var pcsrc = getPromotionCode();

        href = href + '?ld=' + ldsrc + '&pc=' + pcsrc;
	document.location = href;
} 
