If Sip.IsInitialized = False Then
'Check if SIP and VOIP are supported.
If Sip.IsSipSupported = False OR Sip.IsVoipSupported = False Then
Log("Not supported.")
ToastMessageShow("SIP not supported.", True)
Else
'Register with the VOIP service
'Sip.Initialize2("SIP", SipText , SipPort)
'Pwd generated by soho66
'variations used are sip.soho66.co.uk, sip:sip.soho66.co.uk and sip.soho66.co.uk:8060
Sip.Initialize2("SIP","soho66.co.uk","xxxxxxx")
Sip.Register
End If
End If