﻿<!--

/// left trim
String.prototype.LTrim = function() {
  return this.replace(/^\s*/g, '');
}

/// right trim
String.prototype.RTrim = function() {
  return this.replace(/\s*$/g, '');
}

/// left and right trim
String.prototype.Trim = function() {
	return this.LTrim().RTrim();
}

//-->
