/*   Long Alert function
 *   Copyright © 2001-2002 by CSULB. All Rights Reserved
 *   Author: Anatoly Voevudko
 */
var gLongAlertMsg = "";

function AddLMsg (str)
{ gLongAlertMsg += str + '\n';
}

function AlertLMsg (str)
{ gLongAlertMsg += str;
  if(gLongAlertMsg != "")
    { alert (gLongAlertMsg);
      gLongAlertMsg = "";
      return false;
    }
  return true;
}
