/*
	A handful of useful JavaScript functions.
	Copyright (C) 2001-2002 Gopalarathnam V. <gopal@developercentral.org>.

	This file comes WITH ABSOLUTELY NO WARRANTY.
*/

function chgStatusMsg(msg)
/* Display message in web browser's status bar. */
{
	window.status = msg;
	return true;
}
