// JavaScript Document
// JavaScript Document
var xmlHttp
var id
function MakeXmlHttpObject(){
	var xmlHttp=null;
	try{
		// XmlHttpRequest para Firefox,Opera, Safari e derivados.
		xmlHttp = new XMLHttpRequest();
	}
	catch (e){
		// XmlHttpRequest para InternetExplorer.
		try{
			// Internet Explorer 6.0+
			xmlHttp = new
			ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e){
			// Internet Explorer.
			xmlHttp = new
			ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	return xmlHttp;
}
function pagstateChanged() {
	if (xmlHttp.readyState==4){
		document.getElementById("resposta").innerHTML=xmlHttp.responseText;
	}
}


function pedido(b){
	
	if (b==1)
	{
		doc = "cadastro_empresa.php";
	}
	else
	{
		doc = "cadastro_prof_liberal.php";
	}
	
	document.getElementById("resposta").innerHTML= '<img src="images/loadingAnimation.gif" >';
	xmlHttp=MakeXmlHttpObject()
	
	if (xmlHttp==null){
		alert ("O browser não suporta AJAX!");
	return ;
	}
	rand=Math.floor(Math.random( ) * (999999999+1));

		var pedido=doc+"?rand="+rand;
	
	xmlHttp.onreadystatechange =  pagstateChanged;
	xmlHttp.open("GET",pedido,true);
	xmlHttp.send(null);
}
function registra(f){
	
	xmlHttp=MakeXmlHttpObject()

	if (xmlHttp==null){
	return ;
	}
	
	rand=Math.floor(Math.random( ) * (999999999+1));

		var pedido=Url+"webpage.php?id="+f+"&rand="+rand;
	xmlHttp.onreadystatechange =  function(){if (xmlHttp.readyState==4){return;}}
	xmlHttp.open("GET",pedido,true);
	xmlHttp.send(null);
}
