// Validate that the evaluation field is not empty
// by Marlon A. Griffith
function verify( formObj )
{
	var evaluation = formObj.evaluation.value;
	var canPost = formObj.canPost.value;

	/* For debugging purposes:
	 window.alert('the evaluation is: ' + evaluation + '\n' + 'the Can we post is: ' + canPost);
	*/
	if( evaluation == 'Place your evaluation here...' || !hasMyWords( evaluation ) )
	{
		window.alert('You have not filled out an evaluation.\n'
		+ 'The form will not be sent.');
		return false;
	}
	else
	{
		window.alert('Thank you for filling out an evauation.\n'
		+ 'We appreciate any feedback you give us');
		return true;
	}
}


function initWin()
{
  if( document.getElementById )
  {
  	document.getElementById('evaluation').select();
  }
};


window.onload = initWin;