function getCategoryContent(Lang,Category,CategoryID,LayerID)
{

	var doCategoryContent = function(doCategoryContentResponse)
								{
									document.getElementById(LayerID).innerHTML=doCategoryContentResponse;
 									document.getElementById(LayerID).style.display='block';
								}
	/*(url, postData, hand, format)*/
	oAjax.doPost('CategoryContent.php', 'Lang='+Lang+'&Category='+Category+'&CategoryID='+CategoryID ,doCategoryContent, 'text');
}



	