function editar(id, tipo)
{

	if (tipo != '' && tipo != undefined) {
		window.location.href = '?a=editar&id=' + id + '&tipo=' + tipo;
	} else {
		window.location.href = '?a=editar&id=' + id;
	}
}

function definir_newsletter(id)
{
	window.location.href = '?a=definir_newsletter&id=' + id;
}

function definir_voce_sabia(id)
{
	window.location.href = '?a=definir_voce_sabia&id=' + id;
}

function excluir(id, tipo)
{
	if (tipo != '' && tipo != undefined) {
		if (confirm('Tem certeza que deseja excluir este registro ?'))
			window.location.href = '?a=excluir&id=' + id + '&tipo=' + tipo;
	} else {
		if (confirm('Tem certeza que deseja excluir este registro ?'))
			window.location.href = '?a=excluir&id=' + id;
	}
}

function abrir(link, name, options)
{
	window.open(link, name, options);
}

function destaque(id, idioma)
{
	
	if (idioma != '' && idioma != undefined) {
		window.location.href = '?a=destaque&id=' + id + '&idioma=' + idioma;
	} else {
		window.location.href = '?a=destaque&id=' + id;
	}
}

function status(id, idioma)
{
	if (idioma != '') {
		window.location.href = '?a=status&id=' + id + '&idioma=' + idioma;
	} else {
		window.location.href = '?a=status&id=' + id;
	}
}

function download(id, idioma, prefix)
{
	if (idioma && prefix) {
		window.location.href = '?a=' + prefix + 'download&id=' + id + '&idioma=' + idioma;
	} else {
		window.location.href = '?a=download&id=' + id + '&idioma=' + idioma;
	}
}

function visualizar(id)
{
	window.location.href = '?a=visualizar&id=' + id;
}
