var xmlHttp;


function showCat2(str2)
{ 
xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request");
 return;
 } 

var url="place_order2.php";
url=url+"?cmb1="+str2;
xmlHttp.onreadystatechange=stateChanged1;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}
function stateChanged1() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete");
 { 
 	
	concatStr = xmlHttp.responseText;
	arrstr = concatStr.split("_");
	sing2="<b>(AUD) </b>";
	document.getElementById("txtver").innerHTML = arrstr[0]+sing2;
	document.getElementById("txtver1").innerHTML = arrstr[1]+sing2;
 } 
}





function showCat6(str2)
{ 
xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request");
 return;
 } 

var url="place_order6.php";
url=url+"?cmb1="+str2;
xmlHttp.onreadystatechange=stateChanged6;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}
function stateChanged6() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete");
 { 
 	
	concatStr = xmlHttp.responseText;
	arrstr = concatStr.split("_");
	sing2="<b>(AUD) </b>";
	document.getElementById("txtver8").innerHTML = arrstr[0]+sing2;
	document.getElementById("txtver9").innerHTML = arrstr[1]+sing2;
 } 
}


function showCat1(str1)
{ 

xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request");
 return;
 } 

var url="place_order1.php";
url=url+"?cmb2="+str1;
xmlHttp.onreadystatechange=stateChanged2;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}

function stateChanged2() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete");
 { 
 	
	concatStr1 = xmlHttp.responseText;
	arrstr1 = concatStr1.split("_");
	sing1="<b>(AUD) </b>";
	document.getElementById("txtver2").innerHTML = arrstr1[0]+sing1;
	document.getElementById("txtver3").innerHTML = arrstr1[1]+sing1;
 } 
}


/****************** changes by Deepak ******************/
function showCat1x6(str1)
{ 

xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request");
 return;
 } 

var url="place_order16.php";
url=url+"?cmb2="+str1;
xmlHttp.onreadystatechange=stateChanged2x6;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}

function stateChanged2x6() 
{ 
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete");
 	{ 
 		concatStr1 = xmlHttp.responseText;
		arrstr1 = concatStr1.split("_");
		sing1="<b>(AUD) </b>";
		document.getElementById("txtver11").innerHTML = arrstr1[0]+sing1;
		document.getElementById("txtver12").innerHTML = arrstr1[1]+sing1;
	} 
}
/****************** changes by Deepak ******************/


function showCat3(str1)
{ 

xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request");
 return;
 } 

var url="place_order3.php";
url=url+"?cmb3="+str1;
xmlHttp.onreadystatechange=stateChanged3;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}
function stateChanged3() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete");
 { 
 	
	concatStr3 = xmlHttp.responseText;
	arrstr3 = concatStr3.split("_");
	sing3="<b>(AUD) </b>";
	document.getElementById("txtver4").innerHTML = arrstr3[0]+sing3;
	document.getElementById("txtver5").innerHTML = arrstr3[1]+sing3;
 } 
}

function showCat4(str1)
{ 

xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request");
 return;
 } 

var url="place_order4.php";
url=url+"?cmb4="+str1;
xmlHttp.onreadystatechange=stateChanged4;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}
function stateChanged4() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete");
 { 
 	
	concatStr4 = xmlHttp.responseText;
	arrstr4 = concatStr4.split("_");
	sing4="<b>(AUD) </b>";
	document.getElementById("txtver6").innerHTML = arrstr4[0]+sing4;
	document.getElementById("txtver7").innerHTML = arrstr4[1]+sing4;
 } 
}
function showCat5(str1)
{ 

xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request");
 return;
 } 

var url="place_order5.php";
url=url+"?cmb5="+str1;
xmlHttp.onreadystatechange=stateChanged5;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}
function stateChanged5() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete");
 { 
 	concatStr8 = xmlHttp.responseText;
	arrstr8 = concatStr4;
	
	document.getElementById("txtver8").innerHTML = arrstr8;
 } 
}

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;
}