var check = {
	url			:function(str)		{	return RegExpLib.url.test(str);			},
    zip			:function(code)		{	return RegExpLib.zip.test(code);		},	
	email		:function(str)		{	return RegExpLib.email.test(str);		},
	len			:function(str,len)	{	return str.length >= len;				},
	gt			:function(a,b)		{	return a > b;							},
	min_len		:function(str, len)	{	return str.length < len;				},
	max_length	:function(str, len)	{	return str.length > len;				},
	exact_length:function(str, len)	{	return str.length == len;				},
	empty		:function(str)		{	return str.replace(/\s/g,"") == "";		},
	match		:function(one, two)	{	return one == two;						},
	user		:function(str)		{	return RegExpLib.user.test(str);		},
	time_long	:function(str)		{	return RegExpLib.time_long.test(str);	},
	time_short	:function(str)		{	return RegExpLib.time_short.test(str);	},
	date_iso	:function(str)		{	return RegExpLib.date_iso.test(str);	},
	zero		:function(str)		{	return str == 0;						}
}