function Trim(sText) {
	return sText.replace(new RegExp("(^[\\s]*)|([\\s]*$)", "g"), ""); 
}

