var aplications = "./includes/aplicacoes.php?ref=";

//function exec (data) {eval(url_decode(data));}

function AJAX(){
    try{
        xmlhttp = new XMLHttpRequest();
    }catch(ee){
        try{
            xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
        }catch(e){
            try{
                xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
            }catch(E){
                xmlhttp = false;
            }
        }
    }

    return xmlhttp;
}

// Consulta
function exeCommand (ref, extra){

    // Requesição AJAX
    reqAjax = AJAX();

    // Abre a url
    reqAjax.open("GET", "../includes/aplicacoes.php?ref="+ref+"&"+extra,true);

    // Evita amarzenamento em cache
    reqAjax.setRequestHeader("Cache-Control", "no-store, no-cache, must-revalidate");
    reqAjax.setRequestHeader("Cache-Control", "post-check=0, pre-check=0");
    reqAjax.setRequestHeader("Pragma", "no-cache");

    // Executada quando o navegador obtiver o código
    reqAjax.onreadystatechange=function() {
        if (reqAjax.readyState==4){
            if (reqAjax.status == 200) {

                // Lê o texto
                var texto = reqAjax.responseText;
                eval(url_decode(texto));

            }

        }

    }

    reqAjax.send(null);

}

function byId (id){return document.getElementById(id);}

function number_format( number, decimals, dec_point, thousands_sep ) {
    // http://kevin.vanzonneveld.net
    // +   original by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)
    // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +     bugfix by: Michael White (http://getsprink.com)
    // +     bugfix by: Benjamin Lupton
    // +     bugfix by: Allan Jensen (http://www.winternet.no)
    // +    revised by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)
    // +     bugfix by: Howard Yeend
    // *     example 1: number_format(1234.5678, 2, '.', '');
    // *     returns 1: 1234.57     
 
    var n = number, c = isNaN(decimals = Math.abs(decimals)) ? 2 : decimals;
    var d = dec_point == undefined ? "." : dec_point;
    var t = thousands_sep == undefined ? "," : thousands_sep, s = n < 0 ? "-" : "";
    var i = parseInt(n = Math.abs(+n || 0).toFixed(c)) + "", j = (j = i.length) > 3 ? j % 3 : 0;
    
    return s + (j ? i.substr(0, j) + t : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + t) + (c ? d + Math.abs(n - i).toFixed(c).slice(2) : "");
}

function suggestPassword() {
	var pwchars = "abcdefhjmnpqrstuvwxyz23456789ABCDEFGHJKLMNPQRSTUVWYXZ.,:";
	var passwordlength = 8; // do we want that to be dynamic? no, keep it simple :)
	var passwd = document.getElementById('generated_pw');
	passwd.value = '';
	for ( i = 0; i < passwordlength; i++ ) {
		passwd.value += pwchars.charAt( Math.floor( Math.random() * pwchars.length ) )
	}
	return passwd.value;
}

function setCookie (nome, valor, dtValid){
	
	document.cookie = nome + "=" + valor + ";expires=" + dtValid
	escape (dtValid);
	
}

function pegaCookie (nome){
	
	var cookies = document.cookie;
	
	var inicio = cookies.indexOf(nome);
	
	if (inicio == -1) return null;
	
	var fim = cookies.indexOf (";", inicio);
	
	if (fim == -1) fim = cookies.length;
	
	return unescape (cookies.substring(inicio, fim));
	
	
}

function formataMoeda (valor){
	
	aaa=valor.substring(0,valor.lastIndexOf("."));
	bbb=valor.substring(valor.length-2,valor.length-3).toString().replace(".",",");
	ccc=valor.substring(valor.length,valor.lastIndexOf(".")+1)
	return (aaa+bbb+ccc);
	
}

function fazObj (valor, tipo){ return ((tipo == "id")?document.getElementsById(''+valor):document.getElementsByName(''+valor));}

function alfa (objT, percent, control){
	
	// Objeto
	var obj = document.getElementById(''+objT);
	
	var per = control;
	var pert = per;
	var percentt = percent;
	// Define Style
	obj.style.opacity = ''+per;
	//obj.style.-moz-opacity = ''+percent;
	obj.style.filter = 'alpha(opacity='+per+');';
	
	if(pert.toString().substr(0, 3) != percentt.substr(0, 3)) window.setTimeout("alfa('"+objT+"', '"+percent+"', "+(per-0.1)+")", 100);
	
}

function aumentaAno (campo){
	
	// Objeto
	var obj = document.getElementById(''+campo);
	
	// Aumenta Ano
	obj.value = (obj.value++);
	
}

function diminuiAno (campo){
	
	// Objeto
	var obj = document.getElementById(''+campo);
	
	// Aumenta Ano
	obj.value = (obj.value--);
	
}

function url_decode(str) { 
    var n, strCode, strDecode = ""; 

    for (n = 0; n < str.length; n++) { 
        if (str.charAt(n) == "%") { 
            strCode = str.charAt(n + 1) + str.charAt(n + 2); 
            strDecode += String.fromCharCode(parseInt(strCode, 16)); 
            n += 2; 
        } else { 
            strDecode += str.charAt(n); 
        } 
    } 
    return strDecode; 
} 

var ttmnow=0;
var ths="0";
var thn=0;
var tms="0";
var tmn=0;
var tss="0";
var tsn=0;

function tstarttm()  
    {
  ths=thn;
  tms=tmn;
  tss=tsn;
 if (thn<10)
    ths="0" + ths;
  if (tmn<10)
    tms="0"+tms;
  if (tsn<10)
    tss="0"+tss;
  document.getElementById('tempo').innerHTML = "<b>Tempo Decorrido: </b>" + ths+":"+tms+":"+tss;
   if (ttmnow)
     {
     clearTimeout(ttmnow);
     ttmnow=0;
     }
    tsn+=1;
    if (tsn>59)
      {
      tmn+=1;
      tsn=0;
      if (tmn>59)
        {
        thn+=1;
        tmn=0;
       if (thn>23)
          thn=0;
        }
    }
   ttmnow=setTimeout("tstarttm()",1000);
  }

// Mask Nosso Número
function maskNN(nn, red){
	
	if(nn.value.length == 2){
		nn.value += "/";
	}
	if(nn.value.length == 14){
		nn.value += "-";
	}
	if(nn.value.length == 16){
		red.focus();
		red.select();
	}
	
}

// Mask CEP
function maskCEP(cep, red){
	
	if(cep.value.length == 5){
		cep.value += "-";
	}
	if(cep.value.length == 9){
		red.focus();
		red.select();
	}
	
}

// Mask CNPJ
function maskCNPJ(cnpj){
	
	if(cnpj.value.length == 2){
		cnpj.value += ".";
	}
	if(cnpj.value.length == 6){
		cnpj.value += ".";
	}
	if(cnpj.value.length == 10){
		cnpj.value += "/";
	}
	if(cnpj.value.length == 15){
		cnpj.value += "-";
	}
	
}

// Mask CPF
function maskCPF(cpf, red){
	
	if(cpf.value.length == 3){
		cpf.value += ".";
	}
	if(cpf.value.length == 7){
		cpf.value += ".";
	}
	if(cpf.value.length == 11){
		cpf.value += "-";
	}
	if(cpf.value.length == 14){
		red.focus();
		red.select();
	}
	
}

var comPontos;

function randomiza(n) 
{
    var ranNum = Math.round(Math.random()*n);
    return ranNum;
}

function mod(dividendo,divisor) 
{
	return Math.round(dividendo - (Math.floor(dividendo/divisor)*divisor));
}

function cpf()
{
	var n = 9;
	var n1 = randomiza(n);
 	var n2 = randomiza(n);
 	var n3 = randomiza(n);
 	var n4 = randomiza(n);
 	var n5 = randomiza(n);
 	var n6 = randomiza(n);
 	var n7 = randomiza(n);
 	var n8 = randomiza(n);
 	var n9 = randomiza(n);
 	var d1 = n9*2+n8*3+n7*4+n6*5+n5*6+n4*7+n3*8+n2*9+n1*10;
 	d1 = 11 - ( mod(d1,11) );
 	if (d1>=10) d1 = 0;
 	var d2 = d1*2+n9*3+n8*4+n7*5+n6*6+n5*7+n4*8+n3*9+n2*10+n1*11;
 	d2 = 11 - ( mod(d2,11) );
 	if (d2>=10) d2 = 0;
	retorno = '';
	if (comPontos) retorno = ''+n1+n2+n3+'.'+n4+n5+n6+'.'+n7+n8+n9+'-'+d1+d2;
	else retorno = ''+n1+n2+n3+n4+n5+n6+n7+n8+n9+d1+d2;
 	return retorno;
}

function faz()
{
	if (document.form1.tipo[0].checked)
		document.form1.numero.value = cpf();
	else
		document.form1.numero.value = cnpj();
}
// Botão de Submit
function buttonSubmit(obj, form){
	
	// Efetua o Submit
	form.submit(); 
	
	// Altera Valor
	obj.value = 'Aguarde...';
	
	// Altera Estado
	obj.disabled = true;
	
}

function checkedDisable(i){
	i.checked = false;
}

function checkedEnable(i){
	i.checked = true;
}

function disen(i){
	if(i.disabled == true){
		i.disabled = false;
	}else{
		i.disabled = true;
	}
}

function enable(i){
	 document.getElementById(i).disabled = false;
}

function disable(i){
	document.getElementById(i).disabled = true;
}

function limpaValue(campo){
		campo.value = "";
}

function recValue (campo, valor){
	
	// Verifica se o campo está em branco
	if ( campo.value == "" ){
	
		// Limpa Valor
		campo.value = valor;
		
	}
	
	
}

function subForm1(form, url, target, msg){
	c = confirm(msg);
	if(c){
		form.action=url;
		if(target){
			form.target = target;
		}
		form.submit();
	}
}

function subFormP(form, url, msg, prt){
	var time=new Date();
	var date=time.getDate()
	var mes = (time.getMonth()+1);
	var year=time.getYear();
	var text = confirm("" + msg);
	if(text==true){
		data = prompt(prt, ((date < 10)?"0":"") + date + "/" + ((mes < 10)?"0":"") + mes + "/" + year);
		if ((data != null) && (data != "undefined" )){
			form.action=url+"&data="+data;
			form.submit();
		}
	}
}

function subForm(form, url, msg){
	c = confirm(msg);
	if(c){
		form.action=url;
		form.submit();
	}
}

function restaura(obj, dado){
	if(obj.value == "")
		obj.value = dado;
}

function hrefb(url){
	window.open(url,"print");
	return false;
}

function red(url, target){
	eval(target+".location='"+url+"'");
}

//Verifica se o campo está vazio
function campoBlanco(campo){
	if(campo.value = "")
		return true;
	else
		return false;
}

function newReg(obj, url,  popName, popWidth, popHeight, popScroll){
	vaObj = obj.value;
	popup(popName, "" + url + "?value=" + vaObj, popWidth, popHeight, popScroll);
}

function trocaOpcao(valor, objSel) {
    for (i=0; i < objSel.length; i++){
    qtd = valor.length;
        if (objSel.options[i].text.substring(0, qtd).toUpperCase() == valor.toUpperCase()) {
        objSel.selectedIndex = i;
            break;
        }
    }
}
function jump(targ,selObj){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
}

function jumpMenuEncaminhar(targ,selObj,restore, msg){ //v3.0
  confirma(msg,""+selObj.options[selObj.selectedIndex].value,'#');
  selObj.selectedIndex=0;
}

function exc(file, msg, idserv, d){
	c = confirm(msg);
	if(c){
		location.href= file + "?idserv=" + idserv + "&d=" + d;
	}
}
function select_all(obj, form, e){
	for(x=0; x < document.forms[''+form].elements[e].length; x++){document.forms[''+form].elements[e][x].checked = obj.checked;}
}

function preencheCampo(obj, valor){
	if(obj.value.length == ""){
		obj.value = valor;
	}
}
function limpaCampo(obj){
	if(obj.value.length = 10){
		obj.value = "";
	}
}

function LC(objId){
	document.getElementById(objId).value = "";
}

function confirma_opener(msg,link_sim,link_nao)
{
	var text=confirm("" + msg);
	if(text==true)
	{
		opener.location.href = "" + link_sim;
	}else if(text==false){
		opener.location.href = "" + link_nao;
	}
}

function confirma_opener2(msg,link_sim,link_nao)
{
	var text=confirm("" + msg);
	if(text==true)
	{
		opener.location.href = "" + link_sim;
		window.close();
	}else if(text==false){
		location.href = "" + link_nao;
	}
}


function confirmap(msg, link_sim, link_nao, prt, date){
	var text = confirm("" + msg);
	if(text==true){
		data = prompt(prt, date);
		if ((data != null) && (data != "undefined" ))
			location.href = "" + link_sim + "&data=" + data;
	}else if(text==false){
		location.href = "" + link_nao;
	}
}

function confirma(msg,link_sim,link_nao)
{
	var text=confirm("" + msg);
	if(text==true)
	{
		location.href = "" + link_sim;
	}else if(text==false){
		location.href = "" + link_nao;
	}
}

function popupTemp(name, url)
{
		window.open(url,name,'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no'); 
		return false;
}


function popup(name, url, width, height, scrol)
{
		window.open(url,name,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scrol+',resizable=no,width='+width+',height='+height); 
		return false;
}

function redSel(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function verData(campoData){
	var data = new Date();
	var dia = data.getDate();
	var mes = data.getMonth()+1 ;
	if(campoData.value == ""){
		if(dia < 10){dia = "0" + data.getDate();}
		if(mes < 10){mes = "0" + (data.getMonth() + 1);}
		campoData.value = dia + "/" + mes + "/" + data.getFullYear();
	}
}

function moveFoco (length, focoAtual, proximoFoco) {
		if(focoAtual.value.length == length){
				proximoFoco.focus();
				proximoFoco.select();
		}
}

function maskData(campoData, campoRed){
	campoData.maxlength = 8;
	if(campoData.value.length == 2){
		campoData.value += "/";
	}
	if(campoData.value.length == 5){
		campoData.value += "/";
	}
	if(campoData.value.length == 10){
		campoRed.focus();
		campoRed.select();
	}
}

function move(id){
  if(id)
    id = numero;
	var tecla=window.event.keyCode;
	if (tecla==65) {
	  elemento = document.getElementById(id);
	  elemento.style.background='#eeeeee';
	  }
	}

function fncMoveFoco(qtd ,campo1, campo2)
{
	if (campo1.value.length == qtd){
	    campo2.focus();
	    campo2.select();
	}
}

function see(i)
{
  i = document.getElementById(i);
  if(!i)
  {
	return false;
  }else{
	if(i.style.display=='' || i.style.display=='none')
    {
		i.style.display = 'block';
 	}else{
		i.style.display = 'none';
  	}
  }
}

function sumir(i)
{
  i = document.getElementById(i);
  if(!i)
  {
	return false;
  }else{
	if(i.style.display == 'block')
    {
		i.style.display = 'none';
 	}
  }
}

function aparecer(i)
{
  i = document.getElementById(i);
  if(!i)
  {
	return false;
  }else{
	if(i.style.display == 'none')
    {
		i.style.display = 'block';
 	}
  }
}
function Limpar(valor, validos) {
// retira caracteres invalidos da string
var result = "";
var aux;
for (var i=0; i < valor.length; i++) {
aux = validos.indexOf(valor.substring(i, i+1));
if (aux>=0) {
result += aux;
}
}
return result;
}


//Formata número tipo moeda usando o evento onKeyDown

function Formata(campo,tammax,teclapres,decimal) {
var tecla = teclapres.keyCode;
vr = Limpar(campo.value,"0123456789");
tam = vr.length;
dec=decimal

if (tam < tammax && tecla != 8){ tam = vr.length + 1 ; }

if (tecla == 8 )
{ tam = tam - 1 ; }

if ( tecla == 8 || tecla >= 48 && tecla <= 57 || tecla >= 96 && tecla <= 105 )
{

if ( tam <= dec )
{ campo.value = vr ; }

if ( (tam > dec) && (tam <= 5) ){
campo.value = vr.substr( 0, tam - 2 ) + "," + vr.substr( tam - dec, tam ) ; }
if ( (tam >= 6) && (tam <= 8) ){
campo.value = vr.substr( 0, tam - 5 ) + "." + vr.substr( tam - 5, 3 ) + "," + vr.substr( tam - dec, tam ) ; 
}
if ( (tam >= 9) && (tam <= 11) ){
campo.value = vr.substr( 0, tam - 8 ) + "." + vr.substr( tam - 8, 3 ) + "." + vr.substr( tam - 5, 3 ) + "," + vr.substr( tam - dec, tam ) ; }
if ( (tam >= 12) && (tam <= 14) ){
campo.value = vr.substr( 0, tam - 11 ) + "." + vr.substr( tam - 11, 3 ) + "." + vr.substr( tam - 8, 3 ) + "." + vr.substr( tam - 5, 3 ) + "," + vr.substr( tam - dec, tam ) ; }
if ( (tam >= 15) && (tam <= 17) ){
campo.value = vr.substr( 0, tam - 14 ) + "." + vr.substr( tam - 14, 3 ) + "." + vr.substr( tam - 11, 3 ) + "." + vr.substr( tam - 8, 3 ) + "." + vr.substr( tam - 5, 3 ) + "," + vr.substr( tam - 2, tam ) ;}
} 

}

//// Formata Campos

Mascaras = {
IsIE: navigator.appName.toLowerCase().indexOf('microsoft')!=-1,
AZ: /[A-Z]/i,
Acentos: /[À-ÿ]/i,
Num: /[0-9]/,
carregar: function(parte){
 var Tags = ['input','textarea'];
 if (typeof parte == "undefined") parte = document;
 for(var z=0;z<Tags.length;z++){
  Inputs=parte.getElementsByTagName(Tags[z]);
  for(var i=0;i<Inputs.length;i++)
   if(('button,image,hidden,submit,reset').indexOf(Inputs[i].type.toLowerCase())==-1)
    this.aplicar(Inputs[i]);
 }
},
aplicar: function(campo){
 tipo = campo.getAttribute('tipo');
 if (!tipo || campo.type == "select-one") return;
 orientacao = campo.getAttribute('orientacao');
 mascara = campo.getAttribute('mascara');
 if (tipo.toLowerCase() == "decimal"){
  orientacao = "esquerda";
  casasdecimais = campo.getAttribute('casasdecimais');
  tamanho = campo.getAttribute('maxLength');
  if (!tamanho || tamanho > 50)
   tamanho = 10;
  if (!casasdecimais)
   casasdecimais = 2;
  campo.setAttribute("mascara", this.geraMascaraDecimal(tamanho, casasdecimais));
  campo.setAttribute("tipo", "numerico");
  campo.setAttribute("orientacao", orientacao);
 }
 if (orientacao && orientacao.toLowerCase() == "esquerda") campo.style.textAlign = "right";
 if (mascara) campo.setAttribute("maxLength", mascara.length);
 if (tipo){
  campo.onkeypress = function(e){ return Mascaras.onkeypress(e?e:event); };
  campo.onkeyup = function(e){ Mascaras.onkeyup(e?e:event, campo) };
 }
 campo.setAttribute("snegativo", ((campo.value).substr(0,1) == "-" ? "s" : "n"));
},
onkeypress: function(e){
 KeyCode = this.IsIE ? event.keyCode : e.which;
 campo =  this.IsIE ? event.srcElement : e.target;
 readonly = campo.getAttribute('readonly');
 if (readonly) return;
 maxlength = campo.getAttribute('maxlength');
 pt = campo.getAttribute('pt');
 selecao = this.selecao(campo);
 if (selecao.length > 0 && KeyCode != 0){
  campo.value = ""; return true;
 }
 if (KeyCode == 0) return true;
 Char = String.fromCharCode(KeyCode);
 valor = campo.value;
 mascara = campo.getAttribute('mascara');
 if (KeyCode != 8){
  tipo = campo.getAttribute('tipo').toLowerCase();
  negativo = campo.getAttribute('negativo');
  if(negativo && KeyCode == 45){
   snegativo = campo.getAttribute('snegativo');
   snegativo = (snegativo == "s" ? "n" : "s");
   campo.setAttribute("snegativo", snegativo);
  }else{
   valor += Char
   if (tipo == "numerico" && Char.search(this.Num) == -1) return false;
   if (KeyCode != 32 && tipo == "caracter" && Char.search(this.AZ) == -1 && Char.search(this.Acentos) == -1) return false;
  }
 }
 if (mascara){
  this.aplicarMascara(campo, valor);
  return false;
 }
 return true;
},
onkeyup: function(e, campo){
 KeyCode = this.IsIE ? event.keyCode : e.which;
 if (KeyCode != 9 && KeyCode != 16 && KeyCode != 109){
  valor = campo.value;
  if (KeyCode == 8 && !this.IsIE) valor = valor.substr(0,valor.length-1);
  this.aplicarMascara(campo, valor);
 }
},
aplicarMascara: function(campo, valor){
 mascara = campo.getAttribute('mascara');
 if (!mascara) return;
 negativo = campo.getAttribute('negativo');
 snegativo = campo.getAttribute('snegativo');
 if (negativo && valor.substr(0,1) == "-")
  valor = valor.substr(1,valor.length-1);
 orientacao = campo.getAttribute('orientacao');
 var i = 0;
 for(i=0;i<mascara.length;i++){
  caracter = mascara.substr(i,1);
  if (caracter != "#") valor = valor.replace(caracter, "");
 }
 retorno = "";
 if (orientacao != "esquerda"){
  contador = 0;
  for(i=0;i<mascara.length;i++){
   caracter = mascara.substr(i,1);
   if (caracter == "#"){
    retorno += valor.substr(contador,1);
    contador++;
   }else
    retorno += caracter;
   if(contador >= valor.length) break;
  }
 }else{
  contador = valor.length-1;
  for(i=mascara.length-1;i>=0;i--){
   if(contador < 0) break;
   caracter = mascara.substr(i,1);
   if (caracter == "#"){
    retorno = valor.substr(contador,1) + retorno;
    contador--;
   }else
    retorno = caracter + retorno;
  }
 }
 if (negativo && snegativo == "s")
  retorno = "-" + retorno;
 campo.value = retorno;
},
geraMascaraDecimal: function(tam, decimais){
 var retorno = ""; var contador = 0; var i = 0;
 decimais = parseInt(decimais);
 for (i=0;i<(tam-(decimais+1));i++){
  retorno = "#" + retorno;
  contador++;
  if (contador == 3){
   retorno = "." + retorno;
   contador=0;
  }
 }
 retorno = retorno + ",";
 for (i=0;i<decimais;i++) retorno += "#";
 return retorno;
},
selecao: function(campo){
 if (this.IsIE)
  return document.selection.createRange().text;
 else
  return (campo.value).substr(campo.selectionStart, (campo.selectionEnd - campo.selectionStart));
},
formataValor: function (valor, decimais){
 valor = valor.split('.');
 if (valor.length == 1) valor[1] = "";
 for(var i=valor[1].length;i<decimais;i++)
  valor[1] += "0";
 valor[1] = valor[1].substr(0,2);
 return (valor[0] + "." + valor[1]);
}
};

$(document).ready(function (){
    Mascaras.carregar();
});

var NS4 = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) < 5);

function addOption(theSel, theText, theValue)
{
  var newOpt = new Option(theText, theValue);
  var selLength = theSel.length;
  theSel.options[selLength] = newOpt;
}

function deleteOption(theSel, theIndex)
{
  var selLength = theSel.length;
  if(selLength>0)
  {
    theSel.options[theIndex] = null;
  }
}

function moveOptions(theSelFrom, theSelTo)
{

  var selLength = theSelFrom.length;
  var selectedText = new Array();
  var selectedValues = new Array();
  var selectedCount = 0;

  var i;

  // Find the selected Options in reverse order
  // and delete them from the 'from' Select.
  for(i=selLength-1; i>=0; i--)
  {
    if(theSelFrom.options[i].selected)
    {
      selectedText[selectedCount] = theSelFrom.options[i].text;
      selectedValues[selectedCount] = theSelFrom.options[i].value;
      deleteOption(theSelFrom, i);
      selectedCount++;
    }
  }

  // Add the selected text/values in reverse order.
  // This will add the Options to the 'to' Select
  // in the same order as they were in the 'from' Select.
  for(i=selectedCount-1; i>=0; i--)
  {
    addOption(theSelTo, selectedText[i], selectedValues[i]);
  }

  if(NS4) history.go(0);
}

function seleciona (obj) {

    for (i = 0; i < obj.options.length; i++) {obj.options[i].selected = true;}

}
