<!--
function submitDiscussion() {
	var strTitle = String(document.frm_comments.d_title.value);
	var strText = String(document.frm_comments.d_text.value);
	
	if ("undefined" == strTitle || "" == strTitle) {
		alert('Please enter the title of the discussion.');
		return false;
	}

	if ("undefined" == strText || "" == strText) {
		alert('Please enter the text of the discussion.');
		return false;
	}

	document.frm_comments.submit();
}
//-->