<!--Hide from browsers
//--------------------------------------------------------
//status_txt.js - Robin Tregaskis, Potwood Ltd., 2000
//A simple function that displays text in the status bar field.
//Text can either be assigned to the 'alt' tag or passed in as is i.e.:-
//disp_txt('Text to display').
//the function no_txt() is called to clear the status bar.

function disp_txt(txt) 
{
	self.status = txt
}

function no_txt() 
{
	self.status = ""
}
//end hiding here -->