I am using .NET 4.0 and C# to develop a standard forms application. I have a help menu that I wanted to provide a "Chat" option. We are currently using LiveChat for our "chat client". They provide similar Javascript that you would use in a web browser to use as your chat client. If I have a user click on the "Chat" Menu Item, how could I launch a browser and use this java script to open up a chat session?
(function() {
delete(window.LC_API);
delete(window.LC_Invite);
delete(window.__lc_iframe_current_skill);
delete(window.__lc_inited);
delete(window.__lc_lang);
var lc = document.createElement('script'); lc.type = 'text/javascript'; lc.async = true;
lc.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'cdn.livechatinc.com/tracking.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(lc, s);
})();