// JavaScript Document

// FUNCOES PARA DELETAR FORMULARIOS
function deletar_tipoSemente(valor) 
{
	var confirma = confirm("Deseja realmente excluir?")
	if ( confirma )
		{
		window.location="index.php?id="+valor+"&&opt=deleta_tipoSemente";
		} 
}

function deletar_grupo(valor) 
{
	var confirma = confirm("Deseja realmente excluir?")
	if ( confirma )
		{
		window.location="index.php?id="+valor+"&&opt=deleta_grupo";
		} 
}

function deletar_setor(valor) 
{
	var confirma = confirm("Deseja realmente excluir?")
	if ( confirma )
		{
		window.location="index.php?id="+valor+"&&opt=deleta_setor";
		} 
}

function deletar_mail(valor) 
{
	var confirma = confirm("Deseja realmente excluir?")
	if ( confirma )
		{
		window.location="index.php?id="+valor+"&&opt=deleta_mail";
		} 
}

function deletar_semente(valor) 
{
	var confirma = confirm("Deseja realmente excluir?")
	if ( confirma )
		{
		window.location="index.php?id="+valor+"&&opt=deleta_semente";
		} 
}

function deletar_grupoSemente(valor) 
{
	var confirma = confirm("Deseja realmente excluir?")
	if ( confirma )
		{
		window.location="index.php?id="+valor+"&&opt=deleta_grupoSemente";
		} 
}

function deletar_noticia(valor) 
{
	var confirma = confirm("Deseja realmente excluir?")
	if ( confirma )
		{
		window.location="index.php?id="+valor+"&&opt=deleta_noticia";
		} 
}



//FAZ O FORMULARIO FICAR INVISIVEL OU NAO

function form_visivel(id){
	
	var t = document.getElementById('contador').value;
	
	
	for (i=1; i <=t; i++){
		
		document.getElementById('form_editar'+i).style.visibility = 'hidden';
	}
	
	document.getElementById('form_editar'+id).style.visibility = 'visible';
	
}

function detalhe_sementeAbrir(id){
	
	document.getElementById('semente'+id).style.visibility = 'visible';
	document.getElementById('2semente'+id).style.visibility = 'visible';
	
}

function detalhe_sementeFechar(id){
	
	document.getElementById('semente'+id).style.visibility = 'hidden';
	document.getElementById('2semente'+id).style.visibility = 'hidden';
	
}
