// Stop JavaScript ERRORS from displaying..
//
     function stopErrors() {
     return true;
     }
     window.onerror = stopErrors;
// Function to bust out of someone elses FRAME by creating our own new window.
//
     function bustOut() {
          if (self != top) { 
               history.back();
               var newWin = window.open( self.location , "bustFrame" );
               newWin.focus();
          }
     }
