/** Used to strip characters from 
    order number in tracking panel **/
function removeSpaces(string) {
	return string.split('-').join('');
}