function trim(a){var b=a.value;var c=/^\s*(\w*)/gi;b=b.replace(c,"$1");c=/(\w*)\s*$/gi;b=b.replace(c,"$1");a.value=b};
