
function Trim(Str){	while(Str.charCodeAt(0)==32)	{		Str=Str.substr(1);	}	while (Str.charCodeAt(Str.length-1)==32)	{		Str=Str.substr(0,(Str.length-1));	}	return Str;
}
