/*---------<+>---------*\

  @link finder scripts
  @author Arbi Alexandri
  @version 02/19/2009

\*---------<+>---------*/

function sweep(client,target,id)
{
	var action = './includes/php/ajax/linkfinder.ajax.php';
	var params = 'client_url='+client+'&target_url='+target;
	new Ajax.Updater( {success: id}, action,{ asynchronous:true, method: 'get', parameters: params,
					 	  onCreate: function()
						  {
							  $('submit').disable();
						  },
						  onComplete: function(xhr)
						  {
								if (xhr.status == 200)
								{
									x = x - 1;
									if(x == 0)
									{
										$('csv').innerHTML = '<a href="includes/php/classes/csv.php">download</a>';
										$('submit').enable();
									}
								}
						  },
						  onFailure: function() 
						  {
							  //sweep(client,target,id);
						  }
					  }
					  );
}