function Back(){
	history.back();
	return false;
}
function Mcheck(){
	if (document.MAIL.Namae.value==""){
		window.alert("名前を入力してください");
		return false;
	}
	Memo();
	return true;
}
function Memo(){
	var now = new Date();
        var time = now.toLocaleString();
        var tit = document.title;
        document.MAIL.memo.value = "送信時間:" + time + " 送信場所:" + tit;
}
function direction(lo){
	var sLoc = lo + ".html"
	location.replace(sLoc);
	return false;
}
function hidden(){
	location.replace("hiddenidx.html")
}

