	function stripSpaces(stringToStrip)
	{
		temp							=	stringToStrip;
		while (temp.charAt(temp.length - 1) == ' ')
			temp						=	temp.slice(0, temp.length - 1);
				
		while (temp.charAt(0) == ' ')
			temp						=	temp.substr(1);
			
		return temp;
	}


