function downloadbox(from, id)
{
	$(from).effect("transfer", { to: "#download-box-header" }, 1000);
    $("#downloadbox").load("/dlbox?add="+id);   
}
        
function downloadbox_torrent(from, id)
{
	$(from).effect("transfert", { to: "#download-box-header" }, 1000);
	$('#downloadbox').load("/dlbox?add="+id+"&type=t");
}

function clear_downloadbox()
{
	$("#downloadbox").load("/dlbox?clear=1");
}

function torrent(uri)
{
	window.open (uri, 'Torrent', config='height=350, width=700, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no')
}