/**
 ** @project Epitech: techweb
 ** @authors Julien AMAR <amar_u@epitech.net>
 ** @authors Salah AZZOUG <azzoug@gmail.com>
 ** @authors Johanna BERDUGO <berdug_j@epitech.net>
 ** @authors Benoit CALVEZ <calvez_b@epitech.net>
 ** @authors Djamila MEHANNI <mehann_d@epitech.net>
 ** @authors John THIRIET <thirie_j@epitech.net>
 **/
 
function delete_file(id)
{
	var request = "id=" + id;

	if(confirm('Voulez vous effacer ?'))
	{
		ajax_get_div('php/archives/delete_file.php', 'POST', request, 'window_right');
	}
}

function get_file(id)
{
	var request = "id=" + id;

	ajax_get_div('php/archives/get_file.php', 'POST', request, 'UploadTarget');
}
