/*
 * scripts.js
 *
 * Recopilación de funciones Javascript del sitio.
 */

function siteVote(sid, selectId, imgId)
{
  var value = document.getElementById(selectId).value;
  var img = document.getElementById(imgId);

  var url = "/vote.php?id=" + sid + "&rate=" + value;

  img.src = url;

  alert("Gracias por su voto");
}

// Votar un artículo
function articleVote(aid, selectId, imgId)
{
  var value = document.getElementById(selectId).value;
  var img = document.getElementById(imgId);

  var url = "/artvote.php?aid=" + aid + "&rate=" + value;

  img.src   = url;
  img.alt   = "Voto enviado";
  img.title = "Voto enviado";
}

// Cambiar visibiliad
function toggleVisibility(id)
{
  var obj = document.getElementById(id);
  if(obj.style.display != 'none')
    obj.style.display = 'none';
  else
    obj.style.display = 'block';
}
