<?php

include('global.php');
if(array_key_exists('Id', $_GET))
{
  $File = new File($Database);
  $File->Download($_GET['Id']);
}

?>