

/* FUNCTIONS
----------------------------------------------------------------------------------------------------*/

function goTo(url) {
	window.location.href = baseHref(url);
}

/**
 * Apply the base href to a url (if it exists)
 */
function baseHref(loc) {
	// loc is the relative path your wish to redirect to
	var b = document.getElementsByTagName('base');
	if (b && b[0] && b[0].href) {
		loc = b[0].href + loc;
	}
	return loc;
}


function goBack() {
	window.history.go(-1);
}
