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


