| <?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' | 
 |  | 
 | 	#***************************************************************************** | 
 | 	# | 
 | 	#**************************************************************************** | 
 | 	 | 
 | 	# | 
 | 	# Begin: page-specific settings.  Change these.  | 
 | 	$pageTitle 		= "STEM Downloads"; | 
 | 	$pageKeywords	= "STEM, Eclipse"; | 
 | 	$pageAuthor		= "Yossi Mesika"; | 
 | 	 | 
 | 	# Add page-specific Nav bars here | 
 | 	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3) | 
 | 	# $Nav->addNavSeparator("My Page Links", 	"downloads.php"); | 
 | 	# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3); | 
 | 	# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3); | 
 |  | 
 | 	# End: page-specific settings | 
 | 	# | 
 | 		 | 
 | 	# Paste your HTML content between the EOHTML markers! | 
 | 	 | 
 | 	$stableBuild = "1.0.0M2"; | 
 | 	$weeklyBuild = "1.0.0.I20091102"; | 
 | 	$stableSize = "106 MB"; | 
 | 	$weeklySize = "106 MB"; | 
 | 	 | 
 | 	$stableBuildDate = "October 16, 2009"; #date("M d, Y", mktime(0, 0, 0, substr($stableBuild, 11, 2), substr($stableBuild, 13, 2), substr($stableBuild, 7, 4))); | 
 | 	$stableVersion =  substr($stableBuild, 0, 5); | 
 | 	$weeklyBuildDate = date("M d, Y", mktime(0, 0, 0, substr($weeklyBuild, 11, 2), substr($weeklyBuild, 13, 2), substr($weeklyBuild, 7, 4))); | 
 | 	$weeklyVersion =  substr($stableBuild, 0, 5); | 
 | 		 | 
 | $html = <<<EOHTML | 
 |  | 
 | 	<div style="margin-left:10px; margin-top:20pt;"> | 
 |         	    | 
 | 		<div style="margin-top:30pt;margin-left: 200px; width: 70%"> | 
 | 			<center> | 
 | 				<img border=0 src="images/STEM_TOP_BAR.png" style="width:100%;margin-bottom:20px"> | 
 | 			</center> | 
 |         	<p> | 
 | 	       	This page is a link to some techincal talks on STEM. We will add more as they become available. | 
 | 	       </p> | 
 |     	</div> | 
 | 			         | 
 | 	</div> | 
 | 	 | 
 | 	 | 
 | 		 | 
 | 		<div class="homeitem3col" style="margin-left:210px; width:75%"> | 
 | 			<h3>Talks Online</h3> | 
 | 			<p>A recent talk at Epidemics 2009</p> | 
 | 			<object width="705" height="660"> <param name="movie" value="http://www.brighttalk.com/dc/swf/dotcom_base.swf?212"> </param> <param name="flashvars" value="channelid=1927&commid=5750&autoStart=FALSE"> </param> <embed src="http://www.brighttalk.com/dc/swf/dotcom_base.swf?234" type="application/x-shockwave-flash" width="705" height="660" wmode="transparent" flashvars="channelid=1927&commid=5750&autoStart=FALSE"> </embed> </object> | 
 |  | 
 | 			 | 
 | 		</div> | 
 | 	 | 
 | 	 | 
 | EOHTML; | 
 |  | 
 |  | 
 | 	# Generate the web page | 
 | 	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | 
 | ?> |