function janela_ver(url){
	window.open(url,'_blank','toolbar=no,channelmode=no,scrollbars=yes,location=no,directories=no,resizable=no,menubar=no,status=no,top=100,left=50,width=566,height=365')
}

function agenda_del(link){
	var ok = confirm("Deseja mesmo excluir este evento?");
	if (ok == true){
	  	self.location=link;
	}
	else {
  		//document.write("You pressed Cancel!");
  	}
}

function not_del(link){
	var ok = confirm("Deseja mesmo excluir esta notícia?");
	if (ok == true){
	  	self.location=link;
	}
	else {
		//document.write("You pressed Cancel!");
	}
}

function arquiva_not(link){
	var ok = confirm("Deseja mesmo arquivar esta notícia?");
	if (ok == true){
	  	self.location=link;
	}
	else {
		//document.write("You pressed Cancel!");
	}
}

