// 中文免費網留言板 Java Script 檔

var dw=document.write; // 簡化 dowcument.write

function setname(){ // 設定視窗
	window.name=myid;
}

function chkframe(){ // 檢查是否為上層頁框
	if (self.location!=top.location){
		top.location.href=self.location;
	}
}

function chkfocus(){ // 取得視窗顯示權
	if (self.focus != null) self.focus();
}

function chkcookie(){ // 檢查 cookie
	if (!document.cookie){
		alert("煩請打開您的 Cookies，謝謝!");
		self.location="sorry.asp";
	}
}

function menustr(str){ // 選單文字
	dw("<td><font class=f2m color=midnightblue>" + str + "</font></td>");
}

