<!-- 
//
replaceCharSpecial = function (txt){
	if (txt == "") return "";
	txt = strReplace(txt, "[a]","&aacute;");
	txt = strReplace(txt, "[e]","&eacute;");
	txt = strReplace(txt, "[i]","&iacute;");
	txt = strReplace(txt, "[o]","&oacute;");
	txt = strReplace(txt, "[u]","&uacute;");
	txt = strReplace(txt, "[n]","&ntilde;");
	//
	txt = strReplace(txt, "[A]","&Aacute;");
	txt = strReplace(txt, "[E]","&Eacute;");
	txt = strReplace(txt, "[I]","&Iacute;");
	txt = strReplace(txt, "[O]","&Oacute;");
	txt = strReplace(txt, "[U]","&Uacute;");
	txt = strReplace(txt, "[N]","&Ntilde;");
	//
	return txt;
}
strReplace = function (s, r, w){
		return s.split(r).join(w);
}
//
function openWindow(pag,wname,w,h,scr)
{
	window.open(pag,wname,'width='+w+',height='+h+',menubar=no, status=no, scrollbars='+scr+', resizable=yes, toolbar=no, location=no');
}
//
 -->
