if(document.URL.indexOf("?") > 0) {
	var hpparamarray = document.URL.split("?")[1].split("&");
	for(var i=0; i < hpparamarray.length; i++) {
		var hppair = hpparamarray[i].split("=");
		if(hppair[0] == "sc") { var expReplaceSC = hppair[1] }
		if(hppair[0] == "bcd") { var expReplaceBCD = hppair[1] }
		if(hppair[0] == "pmidsc") { var expReplacePMIDSC = hppair[1] }
		if(hppair[0] == "pmidbcd") { var expReplacePMIDBCD = hppair[1] }
	}
}

var sessId = mboxFactoryDefault.getSessionId().getId();
for(var i=0, j=document.links.length; i<j; i++) {
	var linko = document.links[i].href;
	var CEprop = 0;

	if(linko.indexOf('creditexpert.co.uk') > -1 || linko.indexOf('joincreditexpert.com') > -1) {
		if(typeof(window.expReplaceSC) !== 'undefined') { linko = linko.replace(/sc=(\w*)/,'sc=' + expReplaceSC) }
		if(typeof(window.expAppendToSC) !== 'undefined') { linko = linko.replace(/sc=(\w*)/,'sc=$1' + expAppendToSC) }
		if(typeof(window.expReplaceBCD) !== 'undefined') { linko = linko.replace(/bcd=(\w*)/,'bcd=' + expReplaceBCD) }
		if(typeof(window.expAppendToBCD) !== 'undefined') { linko = linko.replace(/bcd=(\w*)/,'bcd=$1' + expAppendToBCD) }
		CEprop = 1;
	}
	
	if(linko.indexOf('protectmyid.co.uk') > -1) {
		if(typeof(window.expReplacePMIDSC) !== 'undefined') { linko = linko.replace(/sc=(\w*)/,'sc=' + expReplacePMIDSC) }
		if(typeof(window.expAppendToPMIDSC) !== 'undefined') { linko = linko.replace(/sc=(\w*)/,'sc=$1' + expAppendToPMIDSC) }
		if(typeof(window.expReplacePMIDBCD) !== 'undefined') { linko = linko.replace(/bcd=(\w*)/,'bcd=' + expReplacePMIDBCD) }
		if(typeof(window.expAppendToPMIDBCD) !== 'undefined') { linko = linko.replace(/bcd=(\w*)/,'bcd=$1' + expAppendToPMIDBCD) }
		CEprop = 1;
	}

	if(CEprop == 1 && linko.indexOf('mboxSession') < 0) {
		if(linko.indexOf('?') > 0) { document.links[i].href = (linko + '&mboxSession=' + sessId) } else { document.links[i].href = (linko + '?mboxSession=' + sessId) }
	}
}
