Ext.apply( Ext.form.VTypes, {
		'phonenum': function() {  
			var req = /^([0-9]){1,}$/;
			return function(v) { return req.test(v); }
		}()
	,	'phonenumText' : '請輸入數字'
}); 

