function getData(id)
{
	responseId = 'p_'+id;
	new Ajax.Updater('retour','http://www.mapletip.com/ajax_content.php?type=equip&id='+id,{ method:'get' , onComplete: success, onFailure: error});
	$(responseId+'_results').innerHTML='Loading...';
}

function success(response)
{
	$(responseId+'_results').innerHTML = response.responseText;
}

function error(t)
{
	alert('Sorry, search item doesn\'t exist, try another search name.');
}