//// Form Validation Routine  //////////////

function checkForm()
{

	if ((document.frmSurvey.security.value != 'hot') || (document.frmSurvey.security.value-=''))
	{
		//security answer is blank or incorrect
		alert('Oops! The Security Question was not answered correctly.');
		return false;
	}

	return true;
}