<P>// ----------------------------------------------------------------------
<P>// ShowIntro()
<P>// ----------------------------------------------------------------------
<P>
<P>function ShowIntro(optional bool bStartNewGame)
<P>{
<P>	if (DeusExRootWindow(rootWindow) != None)
<P>		DeusExRootWindow(rootWindow).ClearWindowStack();
<P>
<P>	bStartNewGameAfterIntro = bStartNewGame;
<P>
<P>	// Make sure all augmentations are OFF before going into the intro
<P>	AugmentationSystem.DeactivateAll();
<P>
<P>	// Reset the player
<P>
<P>
<P>//if (bunrealistic)
<P>//	Level.Game.SendPlayer(Self, "strstartintromapunrealistic");
<P>//else
<P>//	Level.Game.SendPlayer(Self, "strstartintromap");
<P>	PostIntro(); //delete this when above lines are uncommented
<P>}
<P>
