var TRUE  = new Boolean(true);
var FALSE = new Boolean(false);

/*
*
*/
String.prototype.trim = function()
{
	return this.replace(/^\s+|\s+$/, '');

} // String.trim()