//嚚
frm.onsubmit = function()
{
	var ok = true;
	if (ok) ok &= toCheckData(this.title, "請輸入您的發問標題!!");
	if (ok) ok &= toCheckData(this.cname, "請輸入您姓名!!");
	if (ok) ok &= toCheckData(this.content_q, "請輸入您的發問內容!!");
	if (ok) ok &= IsCheckCode(this.UCode, "請輸入驗證碼!!");
	return ok ? true : false;
}

