function nuevoAjax(){
        var xmlhttp=false;
        try{
                xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
        }catch(e){
                try {
                        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
                }catch(E){
                        xmlhttp = false;
                }
        }       
        if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
                xmlhttp = new XMLHttpRequest();
        }
        return xmlhttp;
}

function Reportar(id, tipo)
{
    
    alert("El anuncio ha sido reportado como: " + tipo);
    
    ajax=nuevoAjax();
    ajax.open("POST", "/envia_mail.php",true);
       
    ajax.onreadystatechange=function() {
       
       if (ajax.readyState==4) {
         //   alert( ajax.responseText);
       }
         //alert();
         //borrarCampos()
    }
       
    ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
    ajax.send("id="+id+"&tipo="+tipo);
    
}

function Menu(categoria,provincia)
{
    if(provincia == "")
    {
	provincia = "todas";
    }
    if(categoria == "")
    {
	categoria = "seleccionar";
    }
    window.location = "http://www.anunciasexo.com/buscar/1/"+provincia+"/"+categoria+"/.html";

}
