function go(u,n) {
	if (n) {
		return window.open(u);
	} else {
		return document.location.href = u;
	}
}

function back() {
	history.back(-1);
}

