function getBasePath() {
	base = document.location.href;
	lastAnchorSolidusIndex = base.lastIndexOf('#/');
	lastSolidusIndex = base.lastIndexOf('/') + 1;
	base = lastAnchorSolidusIndex != -1 ? base.substring(0, lastAnchorSolidusIndex) : base.substring(0, lastSolidusIndex);
	return base;
}