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