function FuncaoAjax(form){
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;
     }
     }
     }
var nome = document.getElementById("sbi").value;
var URL = "http://www.jogarjogosdabarbie.com/oi.php?nome="+form;
xmlHttp.open("GET",URL,true);
//var stringX = "nome="+nome;
/*xmlHttp.setRequestHeader('encoding','ISO-8859-1'); 
xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); 
xmlHttp.setRequestHeader('Content-length', stringX.length ); */
xmlHttp.send(null);

xmlHttp.onreadystatechange= function()
   {
if(xmlHttp.readyState==4)
   {
    var resposta = xmlHttp.responseText; //Uma janela popup de alerta com nome e sobrenome executado por exemplo.php
	document.getElementById('searchform').action = 'http://www.google.com.br/cse';
    document.getElementById('searchform').submit();
  }
 }
}

