
function check_field(reg, value, msg)
{
	if (! reg.test(value))
	{
		alert(msg);
		return false;
	}
	return true;
}