// JavaScript Document
function removeSpaces(string)
{
	 return string.split(' ').join('');
}