function DropTest(source, arguments) {
	if (arguments.Value != "0")
		arguments.IsValid = true;
	else
		arguments.IsValid = false;
}

function NickNameTest(source, arguments) {
	if ( arguments.Value.match(/(<.*>|'|\"){1,16}/) )
		arguments.IsValid = false;
	else
		arguments.IsValid = true;
}

