I'd like to know how I can request the statusbar of the browser.

I tried to do it with javascript command window.status:

<script language="JavaScript">
<!--
function serverrequest()
{
var statusbar = document.status;
alert("status" + statusbar);
}
// -->
</script>

But the answer is "undefined".
What did I do wrong? Is there another way??

Who can help me