function GaleriaExclui(id,nFotos,nNoticias){
	document.getElementById('GaleriaAlerta').style.visibility='visible';
	var texto = '<b>Deseja Excluir Esta Galeria?</b><br>';
	if ((id > 0) & (nFotos > 0)) {
	 texto += "Esta galeria possui "+nFotos+" fotos.<br>";
	};
	if ((id > 0) & (nNoticias > 0)) {
	texto += nNoticias+" noticias relacionadas a ela.";
	}
	texto +="Deseja excluir esta Galeria ?<br>&nbsp;";
	document.getElementById('GaleriaAlertaTexto').innerHTML = texto;
	document.getElementById('GaleriaAlertaBot').innerHTML = '<input type="button" class="input" value="&nbsp;Ok&nbsp;" onClick="window.location = \'../galeria/galeriaFuncoes.php?acao=Deletar&id='+id+'\'"><input type="button" class="input" value="Cancelar" onClick="document.getElementById(\'GaleriaAlerta\').style.visibility = \'hidden\'">';
}
function galeria(id) {
	window.open('../galeria/galeriaVisualiza.php?ver='+id,'','width=735,height=425');
}

