//TRIM TRAILING AND LEADING SPACES
function trim(str)
{
	var newstr = '';
	for(var i = 0;i<str.length;i++) { newstr = (str.charAt(i)!=' ' && str.charAt(i)!='')? newstr + str.charAt(i):newstr; }
	return newstr;
}
// Ends the "trim" function

