function DelTopic(TopicID){
	var Str = prompt("請輸入刪除該篇文章的原因","");
	if(confirm("是否確定要刪除該文章？")){
		location.href="forumDel.php?tid="+TopicID+"&Memo="+encodeURI(Str);	
	}
}
function MoveTopic(TopicID){
	var ReturnValue = showModalDialog('/dialogs/MoveTopic.php?tid='+TopicID, '', 'dialogHeight:480px; dialogWidth:640px; resizable:no; status:no'); 
	if(ReturnValue != null){
		alert("已成功搬移文章");
		location.href="forum.php?fid="+ReturnValue;
	}
}