
function statusbar(message) {
	//if (browser) {
		window.status = message; 
		return true;
	//}
}

function goBack() {
	history.back();
}

function doLoadReset(form) {

	/* This function is used to make sure that the fields are reset back
	   to their original value in case the user press the back button in some
	   pages.  Netscape handles the field values ok, but IE has problems.  At least 
    	   that is how it looks when loading the pages in both browsers.  I think IE is the
	   one that is behaving the way it should be.
	*/

	// make sure that 'form' contains a reference to a form
	if (form) {
		form.reset()
	}
}
