Added 5.0 welcome page
diff --git a/welcome/index.php b/welcome/index.php
deleted file mode 100644
index 47f59b1..0000000
--- a/welcome/index.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?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());    # All on the same line to unclutter the user's desktop'
-
-    $pageTitle       = "Photran 5.0 Release Notes";
-    $pageKeywords    = "photran, fortran, ide, eclipse";
-    $pageAuthor      = "Jeffrey Overbey";
-    
-    # Paste your HTML content between the EOHTML markers!    
-    $html = <<<EOHTML
-
-<div id="maincontent">
-  <div id="midcolumn">
-    <h1>$pageTitle</h1>
-    
-    <p>Welcome to Photran 5.0!</p>
-    $_GET['version']
-  </div>
-</div>
-EOHTML;
-
-    $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>