t = "<speak version=~1.0~ xmlns=~http://www.w3.org/2001/10/synthesis~" & CRLF
t = t & "xmlns:xsi=~http://www.w3.org/2001/XMLSchema-instance~" & CRLF
t = t & "xsi:schemaLocation=~http://www.w3.org/2001/10/synthesis" & CRLF
t = t & "http://www.w3.org/TR/speech-synthesis/synthesis.xsd~" & CRLF
t = t & "xml:lang=~en-US~>" & CRLF
t = t & "That Is a <emphasis> big </emphasis> car!" & CRLF
t = t & "That Is a <emphasis level=~strong~> huge </emphasis>" & CRLF
t = t & "bank account!" & CRLF
t = t & "</speak>"
t = t.Replace("~",QUOTE)
TTS1.Speak(t, True)