
var __ServerName="portal.daledental.com"
var __WebSiteName="livehelp"
var offlineWindow = 0

/*
var __ServerName="army-dev01"
var __WebSiteName="DDTalkToUs"
var offlineWindow = 0
*/

document.write("<input type=hidden id=__ChatStatusType name=__ChatStatusType value=1>")

function chat(uid, init){				
	var windowLeft = (screen.availWidth / 2) - (375 / 2) - 5
	var windowTop = ((screen.availHeight / 2) - (340 / 2)) - 14	
	if (document.all("imgChat").height==59){
		if(offlineWindow==1){
			window.open("http://www.daledental.com/Contact/ContactForm.aspx")
		}else{
			window.navigate("http://www.daledental.com/Contact/ContactForm.aspx")
		}
	}
	else {
		newWin = window.open("https://" + __ServerName + "/" + __WebSiteName + "/chat/login.asp?init="+init+"&uid="+uid, "chatWin", "width=375,height=340, left=" + windowLeft + ", top=" + windowTop);
		newWin.focus();
	}
	
}

function LiveHelpStatus(){
	var _urlChatStatus = "https://" + __ServerName + "/" + __WebSiteName + "/chat/namePage.asp?uid=help&ssl=1"

	if (document.all("imgChat")!=null && document.all("__ChatStatusType")!=null){
		if (document.all("__ChatStatusType").value=="1"){
			document.all("imgChat").src = _urlChatStatus.replace("namePage","chat_status");
			document.all("__ChatStatusType").value = 2;
		}else{
			document.all("imgChat").src = _urlChatStatus.replace("namePage","chat_statusoff");
			document.all("__ChatStatusType").value = 1;
		}
		setTimeout('LiveHelpStatus()', 60000);
	}
}
function IsChatAvailable() {
	if (document.all("imgChat").height==59){
		return false;
	}
	else {
		return true;
	}
}