function strace_ajax(a){
var texto = a; 	
texto=texto.replace(/[á]/g,"/a");
texto=texto.replace(/[é]/g,"/e");
texto=texto.replace(/[í]/g,"/i");
texto=texto.replace(/[ó]/g,"/o");
texto=texto.replace(/[ú]/g,"/u");
texto=texto.replace(/[ñ]/g,"/n");
texto=texto.replace(/[Ñ]/g,"/N");
texto=texto.replace(/[Á]/g,"/A");
texto=texto.replace(/[É]/g,"/E");
texto=texto.replace(/[Í]/g,"/I");
texto=texto.replace(/[Ó]/g,"/O");
texto=texto.replace(/[Ú]/g,"/U");
return texto;
	}// JavaScript Document
