// JavaScript Document
function isEmpty( inputStr ) { if ( null == inputStr || "" == inputStr ) { return true; } return false; }
