function trimString(str){
	return str.replace(/^\s+/g,'').replace(/\s+$/g,'');
}