
function cerca(start) {
    
    var xmlhttp = newXMLHttpRequest();    
    if (xmlhttp!=null) {        
        //xmlhttp.open("POST","http://www.witinside.net/ricerca/index.php",true);
	xmlhttp.open("POST","/ricerca/index.php",true);
        xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
        xmlhttp.send("query="+document.getElementById("query").value+"&search=1&start="+start+"&honda_hornet=1");
        
        xmlhttp.onreadystatechange = handleResponse(xmlhttp, downloadQueryResult, ResponseType.html);		
    } else {
        alert("Il tuo browser non supporta XMLHttpRequest")
    }
}

function downloadQueryResult(XMLResult) {
    document.getElementById('centro').innerHTML=XMLResult;
}

function follow(start, base) {
    //window.location="http://www.witinside.net"+base+start+"/";
	window.location=base+start+"/";
}