function submitcomment()
{  
    if (document.NewComment.commentText.value.length == 0) {
        alert('Please input comment contents，請填寫意見內容');
        return false;
    }
    document.NewComment.action = "http://plog.longwin.com.tw/index.php";
    document.NewComment.submit();
}
