var xmlhttp7,xmlhttp6,xmlhttp8,xmlhttp9,xmlhttp10;
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 chkuname()
{
xmlhttp7=getxmlhttpobject()
var uname=document.getElementById("uname").value;
var query="uname="+uname;

xmlhttp7.onreadystatechange=function(){
if (xmlhttp7.readyState==4)
 {
  document.getElementById("chkuname").innerHTML=xmlhttp7.responseText;
        }
 }

xmlhttp7.open("GET","pass.php?action=chkuname&"+query,true)
xmlhttp7.send(null)
}


function show_sub5(cat1)
{
xmlhttp10=getxmlhttpobject()
var cat=document.getElementById(cat1).value;
var query="cat="+cat+"&cat1="+cat1;
/*if(document.getElementById('country'))
if(document.getElementById('country').value)
{
	document.getElementById("state_div").innerHTML='<select name="city" id="city"><option value="0">--City--</option></select>';
}*/
xmlhttp10.onreadystatechange=function(){
if (xmlhttp10.readyState==4)
 {
  document.getElementById(cat1+"_div").innerHTML=xmlhttp10.responseText;
        }
 }
 
xmlhttp10.open("GET","pass.php?action=show_drop5&"+query,true)
xmlhttp10.send(null)
}

function show_sub(cat1)
{
xmlhttp9=getxmlhttpobject()
var cat=document.getElementById(cat1).value;
var query="cat="+cat+"&cat1="+cat1;
/*if(document.getElementById('country'))
if(document.getElementById('country').value)
{
	document.getElementById("state_div").innerHTML='<select name="city" id="city"><option value="0">--City--</option></select>';
}*/
xmlhttp9.onreadystatechange=function(){
if (xmlhttp9.readyState==4)
 {
  document.getElementById(cat1+"_div").innerHTML=xmlhttp9.responseText;
        }
 }
 
xmlhttp9.open("GET","pass.php?action=show_drop&"+query,true)
xmlhttp9.send(null)
}

function show_sub1(cat1)
{
xmlhttp6=getxmlhttpobject()
var cat=document.getElementById(cat1).value;
var query="cat="+cat+"&cat1="+cat1;
/*if(document.getElementById('country'))
if(document.getElementById('country').value)
{
	document.getElementById("state_div").innerHTML='<select name="city" id="city"><option value="0">--City--</option></select>';
}*/
xmlhttp6.onreadystatechange=function(){
if (xmlhttp6.readyState==4)
 {
  document.getElementById(cat1+"_div").innerHTML=xmlhttp6.responseText;
        }
 }
 
xmlhttp6.open("GET","pass.php?action=show_drop1&"+query,true)
xmlhttp6.send(null)
}



function show_sub2(cat1)
{
xmlhttp8=getxmlhttpobject()
var cat=document.getElementById(cat1).value;
var query="cat="+cat+"&cat1="+cat1;
/*if(document.getElementById('country'))
if(document.getElementById('country').value)
{
	document.getElementById("state_div").innerHTML='<select name="city" id="city"><option value="0">--City--</option></select>';
}*/
xmlhttp8.onreadystatechange=function(){
if (xmlhttp8.readyState==4)
 {
  document.getElementById(cat1+"_div").innerHTML=xmlhttp8.responseText;
        }
 }
 
xmlhttp8.open("GET","pass.php?action=show_drop2&"+query,true)
xmlhttp8.send(null)
}


