﻿function trim(mystr)
{
    return mystr.replace(/(^\s*)|(\s*$)/g,"");
}

