function loadTabContent(event,element,value,cid,pid,callback){
	var xhr_object = null; 
	if(window.XMLHttpRequest) // Firefox 
		xhr_object = new XMLHttpRequest(); 
	else if(window.ActiveXObject) // Internet Explorer 
			xhr_object = new ActiveXObject("Microsoft.XMLHTTP"); 
	else { // XMLHttpRequest non supporté par le navigateur 
		alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest..."); 
		return; 
	}
	
	//xhr_object.open("POST", "index.php?eID=ics_dynamictab&tx_icsdynamictab_pi1[changeActiveTab]=1", true);
	var subelement=element + 'sub';
	
	document.getElementById(subelement).innerHTML = '<img style="position:absolute;top:55%;left:50%;" width="16px" height="16px" src="typo3conf/ext/ics_dynamictab/res/ajax-loader.gif" alt=""/>';
	
	xhr_object.open("POST", "index.php?id=" + pid + "&type=155&tx_icsdynamictab_pi1[activeTab]["+cid+"]=" + value + "&cid=" + cid + '&nowrap'+cid+'=1', true);

	xhr_object.onreadystatechange = function()
	{
		if(xhr_object.readyState == 4 && xhr_object.status == 200)
		{
			document.getElementById(element).innerHTML = xhr_object.responseText;
			if(callback) callback();
		}
	};

	xhr_object.setRequestHeader("Content-type", "application/x-www-form-urlencoded;charset=utf-8"); 
	var data = "tx_icsdynamictab_pi1[activeTab]=" + value;
	xhr_object.send(data);
}

