
function zv_wpeds_ajax() {
//alert('runned');
	var ajaxRequest;
	
	try{
		// Opera 8.0+, Firefox, Safari
		ajaxRequest = new XMLHttpRequest();
	} catch (e){
		// Internet Explorer Browsers
		try{
			ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try{
				ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e){
				// Something went wrong
				//alert("Your browser broke!");
				return false;
			}
		}
	}
	
	// Create a function that will receive data sent from the server
	ajaxRequest.onreadystatechange = function(){
		if(ajaxRequest.readyState == 4){
		//alert(ajaxRequest.responseText);
			}
	}
	
  var params = "url=http://wordpress.org/extend/plugins/all-in-one-webmaster/stats/,http://wordpress.org/extend/plugins/all-in-one-webmaster/stats/,http://wordpress.org/extend/plugins/all-in-one-webmaster/stats/,http://wordpress.org/extend/plugins/all-in-one-webmaster/stats/";
  
    
	ajaxRequest.open("POST", "http://arpitshah.com/wp-content/plugins/wordpress-extend-download-stat/resync.php", true);
	
	//Send the proper header information along with the request
  ajaxRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
  ajaxRequest.setRequestHeader("Content-length", params.length);
  ajaxRequest.setRequestHeader("Connection", "close");
	
  ajaxRequest.send(params);
}

function zv_wpeds_addLoadEvent(func) {
    var oldonload = window.onload;
    if (typeof window.onload != 'function') {
        window.onload = func;
    } else {
        window.onload = function() {
            if (oldonload) {
                oldonload();
            }
            func();
        }
    }
}

zv_wpeds_addLoadEvent(zv_wpeds_ajax);