function ajaxFunction(page,div_id)
  {

    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)
        {

            //Lê o texto
          //  var texto=xmlHttp.responseText
            
             /*
            //Desfaz o urlencode
            texto=texto.replace(/\+/g," ")
            texto=unescape(texto)
               */
            //Exibe o texto no div conteúdo
            var id_div=document.getElementById(div_id)
            //id_div.innerHTML=texto

            //document.myForm.time.value=xmlHttp.responseText;
            id_div.innerHTML = xmlHttp.responseText;
			
			//get rid of the loading image
		    document.getElementById("img_load").style.display="none"; 

        }
		else
		{
			document.getElementById("img_load").style.display="";  

		}
    }
    xmlHttp.open("GET",page,true);
    xmlHttp.send(null);

     
      //document.getElementById("teste") = "blalablbalb";
}