<!-- javascript common function -->
function trim(testString) {
	testString = testString.replace(/^\s+/, '');
  testString = testString.replace(/\s+$/, '');
	return testString;
}