function showStatus(w) 
{
	window.status = googleunescape(w);
	return true; 
}

function clearStatus() 
{
	window.status = "";
}

function googleunescape(w) 
{
	w = w.replace("&amp;", "&");
	w = w.replace("&quot;", "\"");
	w = w.replace("&gt;", ">");
	w = w.replace("&lt;", "<");
	return w;
}
