DBAccess: Milestone 1.1.0.M3
diff --git a/download/milestones.php b/download/milestones.php
index 0814748..13a0960 100644
--- a/download/milestones.php
+++ b/download/milestones.php
@@ -26,7 +26,7 @@
 	$pageAuthor		= "Juergen G. Kissner";
 		
 	# $dbaccessVersions = array("1.1.0.M2", "1.1.0.M1");
-	$dbaccessVersions = array("1.1%M2", "1.1%M1");
+	$dbaccessVersions = array("1.1%M2", "1.1%M1", "1.1%M3");
 	
 	ob_start();
 ?>
@@ -48,6 +48,16 @@
 			The following are development milestones. You may prefer to <a href="http://www.eclipse.org/gemini/dbaccess/download/">download</a> an official release.
 		</p>
 
+		<h4 class='toggle'>1.1.0.M3</h4>
+		<div class='accordion'>
+			<ul>
+				<li><a href='http://www.eclipse.org/gemini/dbaccess/download/release-notes/1.1.0.M3.php' target='_self'>View Release Notes</a></li>
+				<li>Update Site 'http://download.eclipse.org/gemini/dbaccess/updates/1.1-M3'</li>
+				<li><strong>Gemini DBAccess p2 update site</strong> -  <a href="http://www.eclipse.org/downloads/download.php?file=/gemini/dbaccess/r1.1/milestones/gemini-dbaccess-1.1.0.M3-updates.zip" target="_self">Download</a></li>
+			</ul>
+		</div>
+
+
 		<h4 class='toggle'>1.1.0.M2</h4>
 		<div class='accordion'>
 			<ul>
diff --git a/download/release-notes/ 1.1.0.M3.php b/download/release-notes/ 1.1.0.M3.php
new file mode 100644
index 0000000..1494c90
--- /dev/null
+++ b/download/release-notes/ 1.1.0.M3.php
@@ -0,0 +1,52 @@
+<?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) 2009 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: Christopher Frost
+ *               Juergen G. Kissner
+ *    
+ *******************************************************************************/
+
+	# Begin: page-specific settings.  Change these. 
+	$pageTitle 		= "Gemini DBAccess - Release Notes";
+	$pageKeywords	= "Eclipse, EclipseRT, Gemini, DBAccess, OSGi, Downloads";
+	$pageAuthor		= "Juergen G. Kissner";
+		
+	ob_start();
+?>
+
+<div id="midcolumn">
+
+	<h3>1.1.0.M3 Release Notes</h3>
+	
+	<p>
+		This is a milestone of Gemini DBAccess. It contains the following features: 
+	</p>
+	<ul>
+		<li>Add support for H2.</li>
+		<li>Add support for HSQLDB.</li>
+	</ul>
+	
+	<p>
+	    The list of all changes can be seen <a href="http://git.eclipse.org/c/gemini.dbaccess/org.eclipse.gemini.dbaccess.git/log/?showmsg=1" target="_self">here</a> (tag v1.1.0-M3).
+	</p>
+
+</div>
+
+<?
+	$html = ob_get_clean();
+	# Generate the web page
+	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>
\ No newline at end of file