// JavaScript Document
var xmlhttpPSTab;
var currentTabSelected="";

function ajaxPSTabFunction(tab) {
	xmlhttpPSTab=GetXmlHttpObject();
	if (xmlhttpPSTab==null) {
		window.location="/en/privacy-suite/index.php?tab="+tab;
		return;
	}
	
	var url="/scripts/psTabAjax.php?tab="+tab;
	url=url+"&sid="+Math.random();
	xmlhttpPSTab.onreadystatechange=stateChangedPSTab;
	xmlhttpPSTab.open("GET",url,true);
	xmlhttpPSTab.send(null);
	
	if(""!=currentTabSelected)
	  document.getElementById(currentTabSelected).className = "rounded_tab";
	document.getElementById(tab).className = "rounded_tab_selected";
	currentTabSelected = tab;
}

function stateChangedPSTab() {
	if (xmlhttpPSTab.readyState==4) {
		document.getElementById("tabContent").innerHTML=xmlhttpPSTab.responseText;
		pageTracker._trackPageview("/en/privacy-suite/index.php?tab="+currentTabSelected);
	}
}

