function validateForm(strSection) {
	var boolError		= false;
	var strErrorText	= '';
	
	switch (strSection.toLowerCase()) {
		case "comment" :
			if (!validateField('frmComment', 'strName', TYPE_TEXT)) {
				boolError		= true;
				strErrorText	+= ' - Please enter your name.\n';
			}
			if (!validateField('frmComment', 'txtComment', TYPE_TEXT)) {
				boolError		= true;
				strErrorText	+= ' - Please enter your comment.\n';
			}
			break;
	}
	
	if (boolError) {
		alert(STR_STANDARD_ERROR + strErrorText);
		return false;
	} else {
		return true;
	}
}