var specCharsSubjectName='';

function UpdateText() {
	var a="Sem sugestões"
	if (document.fixform.Sugestao.options[document.fixform.Sugestao.selectedIndex].value != a){	
	    a = document.fixform.Sugestao.options[document.fixform.Sugestao.selectedIndex].value
	    a = a.substring(0,a.lastIndexOf('(')-1);
	    document.fixform.palavraSugerida.value = a;
	}		
}

function sf(){
	if (document.fp) {document.fp.words.focus();}
	if (document.fixform) {document.fixform.palavraSugerida.focus()};
	}

function NovaVerific() {
	document.fp.reset();
	document.fp.pal.value="";
	document.fp.pal.focus();
}

function actualiza(t){
	document.fp.pal.value=t;
	document.fp.pal.select();
}

function insertSpecChar(_char) {  
	if (specCharsSubjectName) eval(specCharsSubjectName+"+=_char;");
	document.pal.words.focus();
	document.fp.words.focus();
}