/*   Confirm Action function
 *   Copyright © 2001-2002 by CSULB. All Rights Reserved
 *   Author: Anatoly Voevudko
 */
function ConfirmAct(ind)
  { var aConfMsg = new Array(8);

    aConfMsg[0] = "Are you sure you want to ";
    aConfMsg[1] = "ADD this record?";
    aConfMsg[2] = "UPDATE this record?";
    aConfMsg[3] = "DELETE this record?";
    aConfMsg[4] = " ";
    aConfMsg[5] = " ";
    aConfMsg[6] = " ";
    aConfMsg[7] = "CLOSE this action?";

    return confirm(aConfMsg[0] + aConfMsg[ind]);
  }
