function doDownload(id){
	new Ajax.Request('/wp-download-loc.php?id='+id, {
		asynchronous:true,
	  	onSuccess: function(transport) {
	  		location.replace(transport.responseText);
	 	 }
	});
	new Ajax.Request('/wp-download.php?id='+id, {
		asynchronous:true,	
	  	method: 'get'
	});
}