﻿var currentTabID = "";
var currentContentID = "";
function ShowContent(newTabID, newContentID) {
	oldTab = document.getElementById(currentTabID);
	oldTab.style.backgroundImage = "url(../images/content/contactus/button_" + currentTabID + "_off.png)";
	newTab = document.getElementById(newTabID);
	newTab.style.backgroundImage = "url(../images/content/contactus/button_" + newTabID + "_on.png)";
	currentTabID = newTabID;
	oldContent = document.getElementById(currentContentID);
	oldContent.style.display = "none";
	newContent = document.getElementById(newContentID);
	newContent.style.display = "block";
	currentContentID = newContentID;
}
function InitializeTabs(TabID, ContentID) {
	currentTabID = TabID;
	currentContentID = ContentID;
	newTab = document.getElementById(currentTabID);
	newTab.style.backgroundImage = "url(../images/content/contactus/button_" + TabID + "_on.png)";
	newContent = document.getElementById(currentContentID);
	newContent.style.display = "block";
}
function StartLiveChat() {
	win = window.open("http://server.iad.liveperson.net/hc/31854838/?cmd=file&amp;file=visitorWantsToChat&amp;site=31854838&amp;byhref=1&amp;AEPARAMS", "chat31854838", "target='chat31854838', width=472,height=320"); return false;
}