
function jump(page) {
	//document.location = page;
	location.href = page;
}

function goBack() {
	history.go(-1);
	
}
