// functions related to albums

function ShowTag(id)
{
  document.getElementById(id).style.visibility = 'visible';
}

function HideTag(id)
{
  document.getElementById(id).style.visibility = 'hidden';
}

function Voted(imgID)
{
  document.getElementById('vote').style.visibility = 'hidden';
  document.getElementById('voted').style.visibility = 'visible';
  location.href = "http://www.albumom.com/Vote.aspx?type=2&id=" + imgID;
  return false;
}

/*function Pause() {
  timer = setTimeout("endpause()", 2000);
  return false;
}

function endpause() {
  location.href = "http://localhost/TravelInfo/Vote.aspx";
  return false;
}*/