<!--
	// THIS FUNCTION TRIMS THE STRING WITH PRECEDING OR TRAILING WHITESPACES.
	function trim(theString) {
		// return the string trimmed of white spaces.
		return theString.replace(/^\s*/, "").replace(/\s*$/, "");
	}
//-->