amended download page
diff --git a/download.php b/download.php
index 77e238a..403e67e 100644
--- a/download.php
+++ b/download.php
@@ -12,22 +12,16 @@
 
 	$pageTitle 		= "Skalli Download";
 
-	$html  = <<<EOHTML
+	# Paste your HTML content between the EOHTML markers!	
+	ob_start();
+	?>
+	
 <div id="midcolumn">
-<h2>$pageTitle</h2>
-<p>All downloads are provided under the terms and conditions of the <a href="/legal/epl/notice.php">Eclipse Foundation Software User Agreement</a> unless otherwise specified.</p>
+  <h2>$pageTitle</h2>
+  <p>All downloads are provided under the terms and conditions of the <a href="/legal/epl/notice.php">Eclipse Foundation Software User Agreement</a> unless otherwise specified.</p>
 
-<!--
-<h3>Galileo - Eclipse 3.5</h3>
-<p><b>Update site:</b> http://download.eclipse.org/myproject/<br />
-<b>ZIP file: </b><a href="/downloads/download.php?file=/myproject/file.zip">file.zip</a> (10 MiB)</p>
-
-<h3>Helios - Eclipse 3.6 (unreleased)</h3>
-<p><b>Update site:</b> http://download.eclipse.org/myproject/<br />
-<b>ZIP file: </b><a href="/downloads/download.php?file=/myproject/file.zip">file.zip</a> (10 MiB)</p>
--->
-<h3>Skalli</h3>
-<p>The Skalli project has not yet been released. However, the nightly build results will be published here as soon as they are available.</p>
+  <h3>Skalli</h3>
+  <p>The Skalli project has not yet been released. However, the nightly build results will be published here as soon as they are available.</p>
 
 </div>
 
@@ -42,7 +36,9 @@
   </div>
 </div>
 
-EOHTML;
+	<?
+	$html = ob_get_clean();
+
 	# Generate the web page
 	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
 ?>
\ No newline at end of file