refinement: Redirect old contact to new
diff --git a/contact/index.php b/contact/index.php
new file mode 100644
index 0000000..242ecd7
--- /dev/null
+++ b/contact/index.php
@@ -0,0 +1,25 @@
+<?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());
+   include("../sharedEnv.php");
+	
+   #*****************************************************************************
+
+	$pageTitle 		= "OSEE - Contacts";
+	$pageKeywords	= "OSEE, Open, System, Engineering, Environment, Eclipse, Define, ATS, OTE, Application Framework";
+	$pageAuthor		= "Donald G. Dunne";
+   
+   #*****************************************************************************
+	
+	$html  = '<div id="midcolumn">';
+	$html .= file_get_contents('_index.html');
+	$html .= "</div>";
+	
+	# Generate the web page
+	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>