function isEmpty (va){ if("undefined" == va){ return true; } if(null == va){ return true; } if("" == va){ return true; } return false; }