<?php
include_once("configuration.php");
include_once(
"include/Function.php");

switch(
$_REQUEST["path"]){
    case 
"plan" $docPath substr($PlanPicPath,3); break;
    case 
"absent" $docPath substr($AbsentPicPath,3); break;
    case 
"research" $docPath substr($ResearchPicPath,3); break;
    case 
"qa" $docPath substr($QAPicPath,3); break;
}
    
downloadFile($docPath.$_REQUEST["filename"]);

?>