// string.js

function is_empty(str){
	str.replace(/^\s+|\s+$/, '');
	if (str=='' || str==null) return true;
	else return false;
}
