// JavaScript Document
function editar(Pagina){
	var j=0;
	var teste = document.getElementsByTagName('input'); 
	for(i in teste){
		if(teste[i].checked){
			var id = (teste[i].value);j = j+1;
		}
	}
	if(j==0){
		alert('Não há nenhum item selecionado');
		return false;
	} 
	if(j>1){
		alert('Para editar você deve selecionar apenas 1 item. \nAtualmente existem '+j+' itens selecionados.');
		return false;
	}
	window.location.href = Pagina+'&id='+id;	
}

function imagens(Pagina){
	var j=0;
	var teste = document.getElementsByTagName('input'); 
	for(i in teste){
		if(teste[i].checked){
			var id = (teste[i].value);j = j+1;
		}
	}
	if(j==0){
		alert('Não há nenhum item selecionado');
		return false;
	} 
	if(j>1){
		alert('Para inserir imagens você deve selecionar apenas 1 album por vez. \nAtualmente existem '+j+' itens selecionados.');
		return false;
	}
	window.location.href = Pagina+'&id='+id;	
}



function excluir(Pagina){
	var id = ''; 
	var marcados = document.getElementsByTagName('input'); 
	for(i in marcados){
		if(marcados[i].checked){
			id = marcados[i].value +';'+ id;
		}
	}
	if(id==''){
		alert('Não há nenhum item selecionado');
		return false
	}else{
		if(confirm('Deseja realmente excluir o(s) iten(s) selecionado(s)?') == true){
			window.location.href = Pagina+'&ListaExclusao='+id;
		}else{
			return false;
		}
	}	

}

function validaContato(){
 if(document.getElementById('edtNome').value == "" || document.getElementById('edtAssunto').value == "" || document.getElementById('edtMensagem').value == ""){
    alert('Atenção os campos: Nome, Assunto e Mensagem são obrigatórios!');
	return false;
 }else{
    return true;
 }
}