<!--
// This code requires the file, form_validation_funcs.js in order to work.

function checkPoll(objForm) {
	if (isFormElementBlank(objForm.responseid,'')) {
		alert ('You forgot to answer!')
		return false;
	}
	else {
		return true;
	}
}

//-->