	function wrtText( text )
	{
		if( document.layers )
		{
			document.navP.document.open();
			document.navP.document.write( text );
			document.navP.document.close();
		}
		else
		{
			if( document.all )
			{
				document.all.navP.innerHTML = text;
			}
		}
		
	}

