﻿function validateForm()
					{
					    valid = true;

					    if ( document.getElementById('verify').value != "michelle" )		
					    {
        					alert ( "You must answer the 'Michelle' question to submit this form. This is an attempt to prevent spam." );
							document.getElementById('verify').value = "";
							document.getElementById('verify').focus();
							valid = false;
					    }

					    return valid;
					}
