// Redirect para select sem form
// ------------------------------------------------------------------------------------------------------------------------------
function Vai(target,formulario,restore){
  eval(target+".location='"+formulario.options[formulario.selectedIndex].value+"'");
}
// ------------------------------------------------------------------------------------------------------------------------------


// Desabilita o ENTER
// ------------------------------------------------------------------------------------------------------------------------------
function Enter() {
	var tecla = event.keyCode;
		if ((tecla == 13)) { 
    	return false;
		}
	return tecla;
}
// ------------------------------------------------------------------------------------------------------------------------------
