function deletar(endereco){
	var conf = confirm("Tem certeza de que deseja remover o registro?");
	if (conf) {
		window.location = endereco;
	}
	return false;
}

function MudaLayer(idlayer){
	idlayer = eval(idlayer);

	if(idlayer.style.display == 'none'){
		idlayer.style.display = '';
	}else{
		idlayer.style.display = 'none';
	}
}

function selecionarTreino(treino,local,campo) {
	var campo2 = new String(campo);
	window.opener.document.form.elements["dados["+ campo +"]"].value = treino;
	window.opener.document.form.elements["dados["+ campo2.replace("Desc","Ponto") +"]"].value = local;
	window.close();

}

function salvarNovoModelo() {
	window.document.form.action = '?vis=planilhas.criarmodeloPlanilha';
	window.document.form.acao.value = 'inserirModeloPlanilha';
	window.form.elements["dados[plm_id]"].disabled = true;
	window.form.submit();

}


/* Pagina a ser carregada inicial */
var pagInicial    = 'home.home'
var tamanhoFonte = 10;

window.addEvent('domready', function() {			
	// Acessibilidade
	if(Cookie.get('tamanhoFonte')!=false){
		var t = Cookie.get('tamanhoFonte').toInt();
		acessibilidade(t);
	}
});		

function acessibilidade(tamanho){	
	tamanho = tamanho.toInt();
	if(tamanho!=1 && tamanho!=-1){
		tamanhoFonte = tamanho;
	}else{
		tamanhoFonte += tamanho;
	}
	$('miolo').style.fontSize = tamanhoFonte+'px';

	// Salva nas preferências			
	Cookie.set('tamanhoFonte', tamanhoFonte, {duration: 365});
}



