function doSwitch(which){
	for(i=1;i<=3;i++){
		var n = document.getElementById("highlight"+i);
		var m = document.getElementById("hlink"+i);
		n.style.display="none";
		m.firstChild.className="";
	}	
	var n = document.getElementById("highlight"+which);
	var m = document.getElementById("hlink"+which);
	n.style.display="block";
	m.firstChild.className="on";
}



function showWin() {
	
	//alert(" dfhdfh "+document.getElementById("chatwindow"));
	
	if(document.getElementById("chatwindow") == null) return;
	
	//alert("fsdf1");
	
	if(!focused && !hidchat){
	//	alert("fsdf2");
	document.getElementById("chatwindow").style.visibility='hidden';	
	px = 50;	
	if (this.event)
	{
		//alert("fsdf3");
		px = this.event.x + 50;	
	}
	px = 50;	
	//alert("fsdf4");
	document.getElementById("chatwindow").style.top = px +"px";
	document.getElementById("chatwindow").style.visibility='visible';	
	document.getElementById("chatwindow").style.position="absolute";
	//alert("fsdf5");
	document.getElementById("chatwindow").focus();
	//alert("fsdf6");
	}
}

function openChatWin() {
	hideChatWin();
	openLiveHelp();
}

function setFocus() {
	focused = true;
}

function hideChatWin() {
	hidchat = true;
	document.getElementById("chatwindow").style.visibility='hidden';	
}

function unSetFocus() {
	focused = false;
}

function startWindow() {
	hidchat = false;
	showWin();
}

function hideChatWinAndOpen() {
	hideChatWin();
	opennew('http://www.800pbx.com/support/visitor/index.php?_m=livesupport&_a=startclientchat&sessionid=b377f089e10c31cbb6f4c801171df70a&proactive=0&departmentid=0&randno=31&fullname=&email=','window',500,450);
}
