function doDownload(id, key) {
	adress = 'website.php?async=1&method=fileDownloadStart&item='+id+'&site='+key;
	/*alert(adress);*/
	window.open(adress,"dialog","width=500,height=20,top=50,left=50,scrollbars=no");
}

function removeFile(object, pk) {
	$.dialogCreate('Möchten Sie wirklich diese Datei löschen?', {
		title: 'Bestätigung',
		buttons: {
			'Löschen': function() {
				var myAjax = $.ajax({
					url:  'website.php?async=1&method=fileDownloadDelete&item=' + object + '&page_key=' + pk,
					type: 'GET',
					complete : function(r) {
						if (r.responseText == 1) {
							window.location.href = window.location.href;
						} else {
							alert(r.responseText);
							alert("Es ist ein Fehler beim Vorgang aufgetreten. Bitte versuchen Sie es erneut");
						}
					}
				});
			}
		}
	});
};
