var req;

function Initialize()
{
    try
    {
        req=new ActiveXObject("Msxml2.XMLHTTP");
    }
    catch(e)
    {
        try
        {
            req=new ActiveXObject("Microsoft.XMLHTTP");
        }
        catch(oc)
        {
            req=null;
        }
    }

    if(!req&&typeof XMLHttpRequest!="undefined")
    {
        req= new XMLHttpRequest();
    }
} 

function SendQuery()
{
    Initialize(); var url="mostrar_autos.php?aha="+Math.floor(Math.random()*11);

    if(req!=null)
    {
        req.onreadystatechange = Process;
        req.open("GET", url, true);
        req.send(null);
    }
}

function Process()
{
    if (req.readyState == 4)
    {
        // only if "OK"
        if (req.status == 200)
        {
            if(req.responseText=="")
                HideDiv("top");
            else
            {
                ShowDiv("top");
                document.getElementById("top").innerHTML =req.responseText;
            }
        }
        else
        {
            document.getElementById("top").innerHTML="There was a problem retrieving data:<br>"+req.statusText;
        }
    }
}

function ShowDiv(divid)
{
   if (document.layers) document.layers[divid].visibility="show";
   else document.getElementById(divid).style.visibility="visible";
}

function HideDiv(divid)
{
   if (document.layers) document.layers[divid].visibility="hide";
   else document.getElementById(divid).style.visibility="hidden";
}

function BodyLoad()
{
    SendQuery();
    //document.form1.keyword.focus();
}
