public static void fakeVisit(String site) {
HttpClient client = new HttpClient();
GetMethod method = new GetMethod();
Proxy proxy = (Proxy) SeoBotDatabase.getRandomObject("anonymproxy");
Main.log("Selected proxy: " + proxy.toString());
HostConfiguration hostConf = client.getHostConfiguration();
hostConf.setHost(site);
hostConf.setProxy(proxy.getIp(), proxy.getPort());
//client.getParams().setSoTimeout(30 * 1000);
method.getParams().setParameter("http.useragent",SeoBotDatabase.getRandomObject("useragent"));
try {