<!-- 
function FieldCheck(comments)
{
	var goAhead = true;
	var ErrMsg = "Please provide the following information:\n\n" ;
	var counter = 1;
	
	if(comments.txtName.value.length == 0)
	{
		ErrMsg = ErrMsg + counter + ") Your Name\n";
		goAhead = false;
		counter++;
	}
	if(comments.txtComments.value.length == 0)
	{
		ErrMsg = ErrMsg + counter + ") Comments\n";
		goAhead = false;
		counter++;
	}
	if(comments.txtSecurity.value.length == 0)
	{
		ErrMsg = ErrMsg + counter + ") Anti-Spam Security Code\n";
		goAhead = false;
		counter++;
	}
	
	
	if (!goAhead)
	{
		alert(ErrMsg)
		return (false);
	}
		return (true);
}
-->