var xmlHttp_left_pane_category
var vDivName;
var vtemplateID;
function fLeftPaneCategory(templateID, aDiv)
{ 
vDivName = aDiv;
vtemplateID = templateID;
//alert(templateID);
xmlHttp_left_pane_category=GetXmlHttpObject();
//alert(templateID);

if (xmlHttp_left_pane_category==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 

//var url="modules/common/templates/videoplayer.php";
//var url="modules/main/templates/_left_pane_categoryItem.php";

var url="modules/food/templates/"+templateID;

//url=url+"?id="+food_rightID;
//if(food_rightItemID)
//url=url+"&ItemID="+food_rightItemID;

xmlHttp_left_pane_category.onreadystatechange=stateChanged_left_pane_category;
xmlHttp_left_pane_category.open("GET",url,true); // change GET -> POST for jorip update
xmlHttp_left_pane_category.send(null);
}

function stateChanged_left_pane_category() 
{ 
	if (xmlHttp_left_pane_category.readyState==4)
	{ 
		document.getElementById('div_left_pane_category44').innerHTML=xmlHttp_left_pane_category.responseText;
	}
}

function GetXmlHttpObject()
{
var xmlHttp_left_pane_category=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp_left_pane_category=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp_left_pane_category=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp_left_pane_category=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
//showMiddleUnit();  
//fLeftPaneCategory(templateID, aDiv);
return xmlHttp_left_pane_category;
}