<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
				xmlns:controls="com.fxcomponents.controls.*"
	layout="absolute" width="100%" height="100%"  minHeight="450" minWidth="650" 
	backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#7700AA, #7700AA]" themeColor="#7700AA"
	initialize="init()">
	
<!-- SCRIPT Start -->	
<!-- jeweils über include Datei, Komponenten haben jeweils ein eigenes Include --> 
<mx:Script source="help/help_pfo.as" />
<!-- SCRIPT Ende -->

<!-- STYLE Start -->
<!-- komplett über CSS-->
<!-- Quelle: http://scalenine.com/themes/simplicitygray/SimplicityGray.html#-->
<!--<mx:Style source="css/simplicitygray.css" /> -->
<!-- STYLE Ende -->
<!-- äusserer Rahmen-->
<mx:Canvas id="app"
	width="97%" height="97%" horizontalCenter="0" verticalCenter="0" 
	borderStyle="solid" cornerRadius="10" borderColor="#DDDDDD" borderThickness="2" 
	backgroundColor="#FFFFFF" backgroundAlpha="0.95" themeColor="#DDBBEE">

<!-- umgebende Box mit Kopfzeile, Fusszeile und Inhaltscontainer-->		
	<mx:VBox height="98%" width="98%" horizontalCenter="0" verticalCenter="0">
	
		<!-- Kopfzeile -->
		<mx:HBox width="100%" horizontalCenter="0" borderStyle="solid" cornerRadius="7" borderColor="#DDDDDD" borderThickness="1" alpha="1.0" backgroundColor="#DDBBEE" >
			<mx:Label text="     HILFE zu Projekte, Fortbildung, Organisation" fontSize="14" fontWeight="bold"/>
			<mx:Spacer width="100%"/>
			<mx:LinkButton 
				label="Druckversion" fontWeight="bold" width="120" fontSize="12" themeColor="#7700AA" textDecoration="underline" alpha="1.0" 
				click="navigateToURL(new URLRequest('help/pdf/help_pfo.pdf'), '_blank')" />
		</mx:HBox>
		
		<!--*************-->
		<!-- I N H A L T -->
		<!--*************-->
		<mx:Canvas height="100%" width="100%">

		
		</mx:Canvas>
		<!-- Ende I N H A L T -->
		
		<!-- Fusszeile -->
		<mx:HBox width="100%" horizontalCenter="0" bottom="5" borderStyle="solid" cornerRadius="7" alpha="1.0" backgroundColor="#DDBBEE">
			<mx:Label text="Projektarbeit - Medizinische Informatik Wintersemester 2009/2010 von Dr. Felix v. Festenberg " fontSize="10"  textAlign="center"  width="100%"  color="#000000" alpha="0.0" fontWeight="normal"/>
		</mx:HBox>
	</mx:VBox>
</mx:Canvas>
</mx:Application>
