function CheckForHTML(source, arguments) {
	arguments.IsValid = true;

	if (arguments.Value.match(/<[^<>]+>/))
		arguments.IsValid = false;
}