//BDX.Prototype.js 代码--------------------------------------------------------------

//Object:prototype-----------------------------------------------------------//
Number.prototype.NaN = function(num){return isNaN(this)?num:this;}
String.prototype.Trim = function(){return this.replace(/(^\s*)|(\s*$)/g,'');}

