function ajaxFunction(url,path)
  {
	//img_loading.style.visibility="visible";
	
	obj = document.getElementById("div_Poll");
	//obj.innerHTML="loading...";
	var xmlHttp;
  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)
        {
		//alert(xmlHttp.responseText);
		  	//obj.innerHTML=xmlHttp.responseText;
			//img_loading.style.visibility="hidden";
			//result2.innerHTML=Count;
        }
      }
	  var  randomnumber=Math.random();
	  strURL = path +url+"path=" + path;
	  //alert(strURL);
  	  //strURL=strURL+"&rand="+randomnumber;
	  xmlHttp.open("GET",strURL,true);
	  xmlHttp.send(null); 
  }
function  getdata(url,path)
  {
	ajaxFunction(url,path);
  }











function ajaxFunction1(url,path)
  {
	//img_loading.style.visibility="visible";
	
	obj1 = document.getElementById("div_czWindow");
	//obj1.innerHTML="loading...";
	var xmlHttp1;
  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)
        {
		//alert(xmlHttp.responseText);
		  	obj1.innerHTML=xmlHttp1.responseText;
			//img_loading.style.visibility="hidden";
			//result2.innerHTML=Count;
        }
      }
	  strURL = path + url;
	  //alert(strURL);
  	  //strURL=strURL+"&rand="+randomnumber;
	  xmlHttp1.open("GET",strURL,true);
	  xmlHttp1.send(null); 
  }
function getdata1(url,path)
  {
	ajaxFunction1(url,path);
  }