// JavaScript Document
function goBack() {
	if (window.history.length > 1) {
		window.history.back();
		return false;
	}
}