<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
	layout="absolute" width="100%" height="100%"  minHeight="400" minWidth="600" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#7700AA, #9900DD]" themeColor="#7700AA">
	
<!-- SCRIPT Start -->	
<!-- jeweils über include Datei, Komponenten haben jeweils ein eigenes Include --> 
<mx:Script source="app/app_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="   Projekte, Fortbildung, Organisation" fontSize="14" fontWeight="bold"/>
			<mx:Spacer width="100%"/>
			<mx:LinkButton 
				label="Hilfe" fontWeight="bold" width="60" fontSize="12" themeColor="#7700AA" textDecoration="underline" alpha="1.0" 
				click="navigateToURL(new URLRequest('help_pfo.html'), '_blank')" />
			<mx:LinkButton 
				label="LogOut" fontWeight="bold" width="70" fontSize="12" themeColor="#7700AA" textDecoration="underline" alpha="1.0" 
			  enabled="false"/>
		</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>
