
	function trim(string){
	
		while(string.charAt(0) == " "){
		
			string = string.substring(1,string.length)
		}
		
		return string
	}