<!--
//		Statustext.js

//		Copyright © 1998-2008 Rob Zuiderwijk. All rights reserved.
//		------------------------------------------------------------------------

//		PhragWeb.

//		This javascript contains the definition of the default text that is
//		displayed on the statusbar. And handles the text changes on the status-
//		bar at the onmouseover/onmouseout events.

//		------------------------------------------------------------------------
//		------------------------------------------------------------------------

		defaultStatus = "PhragWeb - The Phragmipedium WebSite."

//		------------------------------------------------------------------------

		function StatusTextOn(stattxt)
			{
				window.status = stattxt;
			}

//		------------------------------------------------------------------------

		function StatusTextOff()
			{
				window.status = "";
			}

//		------------------------------------------------------------------------
// -->