// ===========================
// mb_javascript.js
// ===========================
//
//
//===================================================================
// This function throws up an alert message that document is not avaiable
function notavailable()
{
	alert("The requested document is not yet available on-line.\nCheck back later, or contact administrator.");
	return;
}
//
//===================================================================
// This function is one that does nothing on purpose
function donothing()
{
	junk = 'nothing';
	return;
}

