
function trim(myString){
	return myString.replace(/^\s+/g,'').replace(/\s+$/g,'')
}
