Private Function NewWord(strWord )
    Dim i
    Dim strNewWord   
    For i = 1 To Len(strWord)
        If Asc(Mid(strWord, i, 1)) ="|" then
            strNewWord  = strNewWord  & "|"
        else
            strNewWord = strNewWord & "0"
        end if      
     Next
    NewWord = strNewWord 
End Function