function favorito(title,url) {
	if (window.sidebar) // firefox
		window.sidebar.addPanel(title, url, "");
	  else if(window.opera && window.print){ // opera
		var elem = document.createElement('a');
		elem.setAttribute('href',url);
		elem.setAttribute('title',title);
		elem.setAttribute('rel','sidebar');
		elem.click();
	
	} 
	else if(document.all) // ie
	  window.external.AddFavorite(url, title);
}

function deixarrecado(id, sid) {
  if (sid  == null) { var sid = id; }
  //alert('id: ' + id + ' | sid:' + sid);
  mostrar('ajax,deixarrecado.php?id='+id+'&sid='+sid, 'deixarrecado'+sid);
}

function naopodedeixarrecado() {
  alert('Para deixar um recado você precisa se cadastrar (se ainda não for cadastrado) e LOGAR no site.');
}

function deixarrecado_post(id, sid) {
  if (sid  == null) { var sid = id; }
  recado = document.getElementById('recado'+sid).value;
  recado = recado.replace(/(\r\n|\r|\n)/g, '<br />');
  //alert('id: ' + id + ' | sid:' + sid + ' | recado:' + recado);
  mostrar('ajax,deixarrecado,post.php?id='+id+'&recado='+recado, 'deixarrecado'+sid);
  document.getElementById('deixarrecado'+sid).innerHTML='Recado enviado com sucesso!';
}

function excluirrecado(id, sid) {
  mostrar('ajax,deixarrecado,excluir.php?id='+id, 'colunarecado'+sid);
}

function forum_novotopico_submit() {
  if (document.formnovotopico.assunto.value == "") { alert('Você não informou o assunto.'); return false; }
  if (document.formnovotopico.mensagem.value == "") { alert('Você não informou a mensagem.'); return false; }
  return true;
}

function forum_novamensagem_submit() {
  if (document.formnovamensagem.mensagem.value == "") { alert('Você não informou a mensagem.'); return false; }
  return true;
}

function forum_novotopico(id) {
  mostrar('ajax,forum,novotopico.php', 'novotopico');
}

function forum_novamensagem(id) {
  mostrar('ajax,forum,novamensagem.php?id='+id, 'novamensagem');
}

function fotopopup(id,tamanho_w,tamanho_h) {
  posicao_x = (screen.width) ? (screen.width-tamanho_w)/2 : 0;
  posicao_y = (screen.height) ? (screen.height-tamanho_h)/2 : 0;
  //tamanho_w = (tamanho_w + 30);
  tamanho_h = (tamanho_h + 100);
  posicao_y = 30;
  window.open("fotopopup.php?id="+id,"_blank","resizable=yes,toolbar=no,status=yes,menubar=no,scrollbars=yes,top="+posicao_y+",left="+posicao_x+",width="+tamanho_w+",height="+tamanho_h);
}

function ev_info(id,tamanho_w,tamanho_h) {
  tamanho_w = (tamanho_w + 40);
  tamanho_h = (tamanho_h + 80);
  if (tamanho_h > 480) { tamanho_h = 480; }
  posicao_x = (screen.width) ? (screen.width-tamanho_w)/2 : 0;
  posicao_y = (screen.height) ? (screen.height-tamanho_h)/2 : 0;
  window.open("evento.php?id="+id,"_blank","resizable=yes,toolbar=no,status=yes,menubar=no,scrollbars=yes,top="+posicao_y+",left="+posicao_x+",width="+tamanho_w+",height="+tamanho_h);
}

function verimagem(id,tamanho_w,tamanho_h) {
  //tamanho_w = (tamanho_w + 40);
  //tamanho_h = (tamanho_h + 100);
  posicao_x = (screen.width) ? (screen.width-tamanho_w)/2 : 0;
  posicao_y = (screen.height) ? (screen.height-tamanho_h)/2 : 0;
  //window.open("verimagem.php?id="+id,"_blank","resizable=yes,toolbar=no,status=yes,menubar=no,scrollbars=yes,top="+posicao_y+",left="+posicao_x+",width="+tamanho_w+",height="+tamanho_h);
  window.open("verimagem.php?id="+id,"_blank","resizable=yes,toolbar=no,status=yes,menubar=no,scrollbars=no,top="+posicao_y+",left="+posicao_x+",width="+tamanho_w+",height="+tamanho_h);
}

