﻿function ModifyLinks(ppcValue, dlType) {
    var hyperlinks = document.getElementsByTagName('a');
    for (var i = 0; i < hyperlinks.length; i++) 
    {
        var link = hyperlinks[i].href;
        link = link.toLowerCase();
        
        if(link.indexOf("downloadfile.aspx") > 0 && dlType == "PlusName")
        {
			if(ppcValue == null || ppcValue == "")
			{
            var indexstart = link.indexOf("name=");
            var name = link.substring(indexstart + 5);
                hyperlinks[i].setAttribute("onclick", "pageTracker._trackPageview('/" + name + "')");
                //console.log('download');
			}
			else
			{
			var indexstart = link.indexOf("name=");
            var name = link.substring(indexstart + 5);
                hyperlinks[i].setAttribute("onclick", "pageTracker._trackPageview('/" + name + "_" + ppcValue + "')");
			}
        }
        
        if (link.indexOf("pdf") > 0) 
        {
            if (ppcValue == null || ppcValue == "") 
            {
                hyperlinks[i].setAttribute("onclick", "pageTracker._trackPageview('/' + this.text )");
                //console.log('no');
            }
            else 
            {
                hyperlinks[i].setAttribute("onclick", "pageTracker._trackPageview('/' + this.text + '" + ppcValue + "')");
                //console.log('yes');
            }
        }
        
        
    }
}
