function XHConn()
{
  var xmlhttp, bComplete = false;
  try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); }
  catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); }
  catch (e) { try { xmlhttp = new XMLHttpRequest(); }
  catch (e) { xmlhttp = false; }}}
  if (!xmlhttp) return null;
  this.connect = function(sURL, sMethod, sVars, fnDone)
  {
    if (!xmlhttp) return false;
    bComplete = false;
    sMethod = sMethod.toUpperCase();
    try {
      if (sMethod == "GET")
      {
        xmlhttp.open(sMethod, sURL+"?"+sVars, true);
        sVars = "";
      }
      else
      {
        xmlhttp.open(sMethod, sURL, true);
        xmlhttp.setRequestHeader("Method", "POST "+sURL+" HTTP/1.1");
        xmlhttp.setRequestHeader("Content-Type",
          "application/x-www-form-urlencoded");
      }
      xmlhttp.onreadystatechange = function(){
        if (xmlhttp.readyState == 4 && !bComplete)
        {
          bComplete = true;
          fnDone(xmlhttp);
        }};
      xmlhttp.send(sVars);
    }
    catch(z) { return false; }
    return true;
  };
  return this;
}

function cambiarFrase(id)
{
	if(document.getElementById('imagenCargaFrase'))
	{
		document.getElementById('imagenCargaFrase').style.display='inline';
	}
	
	var ajaxConn = new XHConn();

	if (!ajaxConn) alert("XMLHTTP no disponible. Prueba con un navegador mejor o más nuevo.");

	var fnWhenDone = function (oXML) {
			document.getElementById(id).innerHTML = oXML.responseText;
			if(document.getElementById('imagenCargaFrase'))
			{
				document.getElementById('imagenCargaFrase').style.display='none';
			}
		};
	
	/*
		1.- Fichero que se va a escanear/devolver
		2.- Metodo de envio de los parametros al archivo
		3.- Parametros a enviar; de la siguiente forma: "param1="+valor1+"&param2="+valor2
		4.- Lo que se va a hacer una vez obtenido el archivo (su codigo) (definirlo antes)
	*/
	ajaxConn.connect("include/fraseAleatoria.php", "POST", "",fnWhenDone);
}

function buscar(idCaja,idContenido,texto)
{
	document.body.style.cursor='wait';
	
	var ajaxConn = new XHConn();

	if (!ajaxConn) alert("XMLHTTP no disponible. Prueba con un navegador mejor o más nuevo.");

	var fnWhenDone = function (oXML) {
			document.getElementById(idContenido).innerHTML = oXML.responseText;
			mId(idCaja);
			document.body.style.cursor='default';
		};
	
	/*
		1.- Fichero que se va a escanear/devolver
		2.- Metodo de envio de los parametros al archivo
		3.- Parametros a enviar; de la siguiente forma: "param1="+valor1+"&param2="+valor2
		4.- Lo que se va a hacer una vez obtenido el archivo (su codigo) (definirlo antes)
	*/
	ajaxConn.connect("http://www.sploft.com/include/buscar.php", "GET", "texto="+texto,fnWhenDone);
}

