Add 3.7.3.RELEASE to download page
diff --git a/download/index.php b/download/index.php
index e513162..d2dd4a8 100644
--- a/download/index.php
+++ b/download/index.php
@@ -14,7 +14,7 @@
  * which accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
  *
- * Contributors: Christopher Frost
+ * Contributors: Christopher Frost, Florian Waibel
  *
  *******************************************************************************/
 
@@ -36,6 +36,20 @@
 	</p>
 
 	<div id='accordion'>
+	<h4><a href="#">3.7.3.RELEASE</a></h4>
+        <div>
+            <ul>
+                <li><a href='release-notes/3.7.3.RELEASE.php' target='_self'>View Release Notes</a></li>
+                <li><strong>Virgo Server for Apache Tomcat</strong> -  <a href='http://www.eclipse.org/downloads/download.php?file=/virgo/release/VP/3.7.3.RELEASE/virgo-tomcat-server-3.7.3.RELEASE.zip' target='_self'>Download</a></li>
+                <li><strong>Virgo Jetty Server</strong> -  <a href='http://www.eclipse.org/downloads/download.php?file=/virgo/release/VP/3.7.3.RELEASE/virgo-jetty-server-3.7.3.RELEASE.zip' target='_self'>Download</a> </li>
+                <li><strong>Virgo Kernel</strong> - <a href='http://www.eclipse.org/downloads/download.php?file=/virgo/release/VP/3.7.3.RELEASE/virgo-kernel-3.7.3.RELEASE.zip' target='_self'>Download</a></li>
+                <li><strong>Virgo Nano</strong> - <a href='http://www.eclipse.org/downloads/download.php?file=/virgo/release/VP/3.7.3.RELEASE/virgo-nano-3.7.3.RELEASE.zip' target='_self'>Download</a></li>
+                <li><strong>Virgo Nano Full</strong> - <a href='http://www.eclipse.org/downloads/download.php?file=/virgo/release/VP/3.7.3.RELEASE/virgo-nano-3.7.3.RELEASE.zip' target='_self'>Download</a></li>
+                <!-- <li><strong>Virgo Snaps</strong> - <a href='http://www.eclipse.org/downloads/download.php?file=/virgo/release/VP/3.7.2.RELEASE/snaps-3.7.2.RELEASE.zip' target='_self'>Download</a></li> -->
+                <!-- <li><strong>Virgo Update Site</strong> - <a href='http://download.eclipse.org/virgo/release/updatesite/3.7.2.RELEASE' target='_self'>http://download.eclipse.org/virgo/release/updatesite/3.7.2.RELEASE</a></li> -->
+            </ul>
+        </div>
+
         <h4><a href="#">3.7.2.RELEASE</a></h4>
         <div>
             <ul>
diff --git a/download/release-notes/3.7.3.RELEASE.php b/download/release-notes/3.7.3.RELEASE.php
new file mode 100644
index 0000000..e1e85c6
--- /dev/null
+++ b/download/release-notes/3.7.3.RELEASE.php
@@ -0,0 +1,49 @@
+<?php
+	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
+	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
+	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
+	$App 	= new App();
+	$Nav	= new Nav();
+	$Menu 	= new Menu();
+	include($App->getProjectCommon());
+
+/*******************************************************************************
+ * Copyright (c) 2017 Eclipse Foundation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors: Florian Waibel
+ *
+ *******************************************************************************/
+
+	# Begin: page-specific settings.  Change these.
+	$pageTitle 		= "Virgo - Release Notes";
+	$pageKeywords	= "Eclipse, EclipseRT, Virgo, OSGi, Downloads";
+	$pageAuthor		= "Florian Waibel";
+
+	ob_start();
+?>
+
+<div id="midcolumn">
+    <h3>3.7.3.RELEASE - Release Notes</h3>
+	<p>
+	    This release updates the Java profile to Java 8 and contains the following updated libraries:
+	<ul>
+		<li>Gemini Web 3.0.5 (Tomcat 8.5.53)</li>
+		<li>Gemini Blueprint 2.1.0.RELEASE</li>
+		<li>Spring Framework 4.3.27</li>
+        <li>Minor changes and bugfixing</li>
+	</ul>
+	</p>
+
+	<p>A list of bugs and enhancements is available <a href="https://bugs.eclipse.org/bugs/buglist.cgi?classification=RT&list_id=16592652&product=Virgo&query_format=advanced&target_milestone=3.7.3.RELEASE" target="_self">here</a>.</p>
+
+</div>
+
+<?
+	$html = ob_get_clean();
+	# Generate the web page
+	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>