var xmlHttp

function showbundle3(str,str2,str3,str4)
{
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url="bundle3.php";
url=url+"?mob="+str;
url=url+"&pro="+str2;
url=url+"&c="+str3;
url=url+"&r="+str4;
url=url+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChangedBundle3;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
} 

function stateChangedBundle3() 
{ 
if (xmlHttp.readyState==4)
{ 
document.getElementById("bundlelist3").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;
}

//###############################

function oldpageb(str,str2,str3,str4,str5)
{
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url="bundle3.php";
url=url+"?mob="+str;
url=url+"&pro="+str2;
url=url+"&c="+str3;
url=url+"&r="+str4;
url=url+"&startA="+str5;
url=url+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChangedBundle3;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
} 