/*<%--
	Set the status of the browser window
		*	windowStatus = The message that you would like to send to the browser.
--%>*/
function setWindowStatus(windowStatus)
{
	var temp;
	if( (windowStatus == null) || (windowStatus == "") )
	{
		temp = "Please Wait";
	}
	else
	{
		temp = windowStatus;
	}
	window.status = temp;
}
