<!-- breadcrumb javascript for this site -->

function appendBreadCrumbIssue(aMonth, aYear) {

	issueMonthLong = aMonth;

	if (aMonth == "jan") { issueMonthLong = "January"; }
	if (aMonth == "feb") { issueMonthLong = "February"; }
	if (aMonth == "mar") { issueMonthLong = "March"; }
	if (aMonth == "apr") { issueMonthLong = "April"; }
	if (aMonth == "may") { issueMonthLong = "May"; }
	if (aMonth == "jun") { issueMonthLong = "June"; }
	if (aMonth == "jul") { issueMonthLong = "July";	}
	if (aMonth == "aug") { issueMonthLong = "August"; }
	if (aMonth == "sep") { issueMonthLong = "September"; }
	if (aMonth == "oct") { issueMonthLong = "October"; }
	if (aMonth == "nov") { issueMonthLong = "November"; }
	if (aMonth == "dec") { issueMonthLong = "December"; }

	appendBreadCrumb("www.bpo-outsourcing-journal.com/issues/" + aMonth + aYear + "/index.html", issueMonthLong + " " + aYear + " issue");

}

function appendBreadCrumbIssueFlat(aMonth, aYear) {

	issueMonthLong = aMonth;

	if (aMonth == "jan") { issueMonthLong = "January"; }
	if (aMonth == "feb") { issueMonthLong = "February"; }
	if (aMonth == "mar") { issueMonthLong = "March"; }
	if (aMonth == "apr") { issueMonthLong = "April"; }
	if (aMonth == "may") { issueMonthLong = "May"; }
	if (aMonth == "jun") { issueMonthLong = "June"; }
	if (aMonth == "jul") { issueMonthLong = "July";	}
	if (aMonth == "aug") { issueMonthLong = "August"; }
	if (aMonth == "sep") { issueMonthLong = "September"; }
	if (aMonth == "oct") { issueMonthLong = "October"; }
	if (aMonth == "nov") { issueMonthLong = "November"; }
	if (aMonth == "dec") { issueMonthLong = "December"; }

	appendBreadCrumb("www.bpo-outsourcing-journal.com/" + aMonth + aYear + "-index.html", issueMonthLong + " " + aYear + " issue");

}
appendBreadCrumbPublications();
appendBreadCrumb("www.bpo-outsourcing-journal.com/index.html", "BPO Outsourcing Journal");