function replaceAccent(txtAccent) {
     txtAccent = txtAccent.replace(/[áÁàÀäÄ]/g,"a");
     txtAccent = txtAccent.replace(/[éÉèÊëË]/g,"e");
     txtAccent = txtAccent.replace(/[íÍìÌïÏ]/g,"i");
     txtAccent = txtAccent.replace(/[óÓòÒöÖ]/g,"o");
     txtAccent = txtAccent.replace(/[úÚùÙüÜ]/g,"u");
     txtAccent = txtAccent.replace(/[ñÑ]/g,"nz");
     return txtAccent;
};
