<!--
//***********************************************************************
// Scrtipt Name:  utilities.js
// Author:        Jeffery Frazier  Jefe@jefferyfrazier.com
// Date:          1-22-2001
// Purpose:       Several funtions to do common all window's.
//*********************************************************************** 


// Sets the status bar to the supplied text.
function setWindowStatus(strText) {
    window.status = strText;
}



// Clears the status bar.
function restoreWindowStatus(strDefault) {
    window.defaultStatus=strDefault;
}


// Hides any errors from the end user.
function showNoErrors() {
    return true;
}

//-->
