Disable caching on downloads page
diff --git a/downloads/index.php b/downloads/index.php
index a2e1179..839c882 100644
--- a/downloads/index.php
+++ b/downloads/index.php
@@ -1,6 +1,8 @@
 <?php $areaRelative = "."; require_once "$areaRelative/_defs.php";  include "$areaRoot/_header.php";
 ########################################################################
 
+header( 'Cache-control: no cache' );
+
 //$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/modeling/includes/common.css"/>' . "\n\t");
 //$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/modeling/includes/downloads.css"/>' . "\n\t");
 $App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="' . $pageFolderPath . '/styles.css" media="screen"/>' . "\n\t");
diff --git a/downloads/test/index.php b/downloads/test/index.php
new file mode 100644
index 0000000..015168b
--- /dev/null
+++ b/downloads/test/index.php
@@ -0,0 +1,19 @@
+<?php $areaRelative = "."; require_once "$areaRelative/_defs.php";  include "$areaRoot/_header.php";
+########################################################################
+
+header( 'Cache-control: no cache' );
+
+$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="' . $pageFolderPath . '/styles.css" media="screen"/>' . "\n\t");
+$App->AddExtraHtmlHeader('<script src="/modeling/includes/downloads.js" type="text/javascript"></script>' . "\n\t");
+
+//$pageTitle 		= "";
+//$pageKeywords	= "";
+$pageAuthor		= "Eike Stepper";
+
+print '<div id="midcolumn">' . "\n";
+print '<h1>Test</h1>';
+print '</div>';
+
+
+########################################################################
+include "$areaRoot/_footer.php"; ?>