/**
 * value是否为空
 * script中，null 'null'与''可能都会为空的
 */
function isEmpty(value){
	if (value != null && value != 'null' && value != ''){
		return false;
	}else{
		return true;
	}
}
