   function getTrueLength(word){
	 var trueLength=0;
        for(i=0;i<word.length;i++){
           if(word.charCodeAt(i)>0&&word.charCodeAt(i)<255){
               trueLength++;
          }else{
               trueLength+=2;
             }
	 }
	 	 return trueLength;
	 }
