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