function check() {
	var chars = /^[\w\s$%\.\?(),'"!:#\-/;@\[\]]+$/;
	if (document.comment.name.value && !chars.test(document.comment.name.value)) {
		document.comment.name.value = document.comment.name.value.replace(/[^\w\s$%\.\?(),'"!:#\-/;@\[\]]/ig,"");
		alert("You entered a character that is not permitted in Your Name.  This character has been removed.");
		return false;
	}
	if (document.comment.comment.value && !chars.test(document.comment.comment.value)) {
		document.comment.comment.value = document.comment.comment.value.replace(/[^\w\s$%\.\?(),'"!:#\-/;@\[\]]/ig,"");
		alert("You entered a character that is not permitted in Your Comment.  This character has been removed.");
		return false;
	}
}
function post() {
	if (!document.comment.name.value) {
		alert("You must enter your name.  Please enter your name and try again.");
		return false;
	}
	if (!document.comment.comment.value) {
		alert("You must enter a comment.  Please enter a comment and try again.");
		return false;
	}
}
