//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// FUNCTIONS TO WRITE A BREAD CRUMB TRAIL ON CSA PAGES
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

function setCSABCT(trailID) {
	var trailOutput = "";	
	if (trailID != "") {
		trailOutput = trailID;
	} else {
		trailOutput = "PebblePad Customer Support";
	}
	document.getElementById("csaBCT").innerHTML = trailOutput;
}


