/**
 * \file changeWindowStatus.js
 * \brief Changes the window status to a given text.
 *
 *
 * \author		Woggel <javscript.coding@woggel.com>
 * \par Copyright:
 * 		Woggel 2008
 * \par Licence:
 *		http://www.woggel.com/license/license_001_00.txt  License 1.0
 * \date First modification date 2009-04-07
 * \date Last modification date 2009-04-07
 */


function changeWindowStatus(text)
{
	this.window.status	= text;
	
	
	return	true;
};