var xmlHttp

function productsload(str2){ 

xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url="/products/productslist/";
url=url+str2;
url=url+"/sid/"+Math.floor(Math.random());
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}

function stateChanged() { 
if ((xmlHttp.readyState==1)||(xmlHttp.readyState==2)||(xmlHttp.readyState==3)){ 
document.getElementById("contentin").innerHTML="<div style='width:100px;padding:20px;float:middle;'><img src='/images/ajax-loader.gif' width='35' height='35' /></div>";
}

if (xmlHttp.readyState==4){ 
document.getElementById("contentin").innerHTML=xmlHttp.responseText;
}
}

function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}