function LaunchChat(chatqueue) {
if (chatqueue == "general") {
	URL = "http://chat.digi.com:/Chat/servlet/AppMain?__lFILE=ChatForm.jsp";
	} else if (chatqueue == "support") {
	URL = "http://chat.digi.com/Chat/servlet/AppMain?__lFILE=TSChatForm.jsp"
	} else {
	URL = "http://chat.digi.com:/Chat/servlet/AppMain?__lFILE=ChatForm.jsp"
	}
chatWindow = window.open(URL, "framemain", "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=500,height=420");
if (window.focus) {
	chatWindow.focus();
}
}