function Trim(Stringa) {
	re = /\s+$|^\s+/g;
	return Stringa.replace(re, '');
}

