function display(url,control,hideControl)
{
  var countryId = document.getElementById("country").value;
  var stateId = document.getElementById("state").value;
  var industryId = document.getElementById("industry").value;
  var xmlHttp;

	var file1=url+industryId+"/"+countryId+"/"+stateId;
  //alert(file1);

 try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("Your browser does not support AJAX!");
        return false;
        }
      }
    }
    xmlHttp.onreadystatechange=function()
      {
      if(xmlHttp.readyState==4)
        {
	   
		var inner = xmlHttp.responseText; 
		
		//select_innerHTML(document.getElementById(control),inner);
		document.getElementById(control).innerHTML ="";
		document.getElementById(hideControl).innerHTML ="";
		document.getElementById(hideControl).style.visibility ="hidden";
		 document.getElementById(control).innerHTML = xmlHttp.responseText;
		 		jQuery('#countryWise').ready(function($) {
		$('a[rel*=facebox]').facebox({
		loading_image : 'loading.gif',
		close_image   : 'closelabel.gif'
		}) 
		})

        }else {
			document.getElementById(hideControl).style.visibility ="hidden";
			document.getElementById(hideControl).innerHTML ="";
			document.getElementById(control).innerHTML = '<img src="/cvtohr/images/ajax-loader.gif">  Loading...please wait';	
		}
		
      }
	

    xmlHttp.open("GET",file1,true);
    xmlHttp.send(null);
  }


function industrywall_display(url,control)
{
  var countryId = document.getElementById("country").value;
  var industryId = document.getElementById("industry").value;
   var category = document.getElementById("category").value;
  var xmlHttp1;
  

	if(industryId == "") {
			industryId = 0;
		}
	var file1=url+category+"/"+industryId+"/"+countryId;
  //alert(file1);

 try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp1=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp1=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp1=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("Your browser does not support AJAX!");
        return false;
        }
      }
    }
    xmlHttp1.onreadystatechange=function()
      {
      if(xmlHttp1.readyState==4)
        {
	   
		var inner = xmlHttp1.responseText; 
		
		//select_innerHTML(document.getElementById(control),inner);
		document.getElementById(control).innerHTML ="";
		document.getElementById(control).innerHTML = xmlHttp1.responseText;
 		//jQuery('#countryWise').ready(function($) {
//			$('a[rel*=facebox]').facebox({
//			loading_image : 'loading.gif',
//			close_image   : 'closelabel.gif'
//			}) 
//		})

        }else {
			document.getElementById(control).innerHTML = '<img src="/cvtohr/images/ajax-loader.gif">  Loading...please wait';	
		}
		
      }
	

    xmlHttp1.open("GET",file1,true);
    xmlHttp1.send(null);
  }
  
function industrywall_seeker(url,control)
{
 
 var countryId = document.getElementById("country1").value;
  var industryId = document.getElementById("industry1").value;
   var category = document.getElementById("category1").value;
 
 var xmlHttp1;
  

	if(industryId == "") {
			industryId = 0;
		}
	var file1=url+category+"/"+industryId+"/"+countryId;
  //alert(file1);

 try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp1=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp1=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp1=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("Your browser does not support AJAX!");
        return false;
        }
      }
    }
    xmlHttp1.onreadystatechange=function()
      {
      if(xmlHttp1.readyState==4)
        {
	   
		var inner = xmlHttp1.responseText; 
		
		//select_innerHTML(document.getElementById(control),inner);
		document.getElementById(control).innerHTML ="";
		document.getElementById(control).innerHTML = xmlHttp1.responseText;
		// alert( xmlHttp1.responseText);
		/*jQuery('#countryWise').ready(function($) {
			$('a[rel*=facebox]').facebox({
			loading_image : 'loading.gif',
			close_image   : 'closelabel.gif'
			}) 
		})*/

        }else {
			document.getElementById(control).innerHTML = '<img src="/cvtohr/images/ajax-loader.gif">  Loading...please wait';	
		}
		
      }
	

    xmlHttp1.open("GET",file1,true);
    xmlHttp1.send(null);
  }