﻿// Extensions of javascript predefined objects

if (typeof(_fileVersions) == 'undefined')
	eval('var _fileVersions = new Array()');
_fileVersions.push('JavaScriptExtension 6.6.0.0');

String.prototype.LTrim = function() 
{ 
	return this.replace(/^\s+/,'');
}

String.prototype.RTrim = function() 
{
	return this.replace(/\s+$/,'');
}

String.prototype.Trim = function() 
{
	return this.replace(/^\s+|\s+$/g,'');
}


