function criaXMLHttp(){if(typeof XMLHttpRequest!="undefined")
return new XMLHttpRequest();else if(window.ActiveXObject){var versoes=["MSXML2.XMLHttp.5.0","MSXML2.XMLHttp.4.0","MSXML2.XMLHttp.3.0","MSXML2.XMLHttp","Microsoft.XMLHttp"];}
for(var i=0;i<versoes.length;i++){try{return new ActiveXObject(versoes[i]);}catch(e){}}
throw new Error("Seu browser nao suporta AJAX");}
function recomenda(){var Submitted=false;function Submit(){if(document.contato.nome.value==""){alert("Por favor entre com seu Nome.");document.contato.nome.focus();document.contato.Envia.style.display='';document.contato.Limpar.style.display='';return false;}
if(document.contato.email.value==""){alert("Por favor entre com seu Email.");document.contato.email.focus();document.contato.Envia.style.display='';document.contato.Limpar.style.display='';return false;}
if(document.contato.emailamigo1.value==""){alert("Por favor entre com seu Email do seu amigo.");document.contato.emailamigo1.focus();document.contato.Envia.style.display='';document.contato.Limpar.style.display='';return false;}
Submitted=true;document.contato.Envia.style.display='none';document.contato.Limpar.style.display='none';return true;}
var nome=document.contato.nome.value;var email=document.contato.email.value;var emailamigo1=document.contato.emailamigo1.value;var nomeamigo=document.contato.nomeamigo.value;var comentario=document.contato.comentario.value;var url=document.contato.url.value;var divInfo=document.getElementById("resultado_envia");Submit();if(Submitted==true){var XMLHttp=criaXMLHttp();XMLHttp.open("get","http://www.ejogosonline.com.br/rec/index.php?nome="+ nome+"&email="+ email+"&emailamigo1="+ emailamigo1+"&nomeamigo="+ nomeamigo+"&comentario="+ comentario+"&url="+ url,true);XMLHttp.onreadystatechange=function(){if(XMLHttp.readyState==4)
if(XMLHttp.status==200){divInfo.innerHTML=XMLHttp.responseText;}else{divInfo.innerHTML="Um erro ocorreu"+ XMLHttp.statusText;}};XMLHttp.send(null);}}
