//	Removes all white space from a string and returns the new string.
function whiteSpace(data){
	return (data).replace(/^\s*|\s*$/g,'');
}
