function myTrim(str) 
{
   return str.replace(/^\s+|\s+$/g, '');
}