function goback(){
if (window.history.length > 0)
  window.history.go(-1);
else
  alert("無上一頁可回");
}

