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