function gfnTrimLeadingTrailingSpaces(ptxValue) {
	ptxValue = ptxValue.replace(/^[ ]+/i,"");
	return ptxValue.replace(/[ ]+$/i,"");
}

