function checkForm(code) { 
	submitOK = true;
	userCaptcha = document.feedback.strCAPTCHA.value.toUpperCase();
	if( userCaptcha != code ) {
		alert('Please input the correct verification code.');
		submitOK = false;
	}
	if( submitOK == true ) {
		document.feedback.submit();
	}
}
