var interval;
function reload(){
  document.getElementById('flashcontent').style.display = 'none';
  intval = window.setInterval("appear();", 1000);
}
function appear(){
  document.getElementById('flashcontent').style.display = 'block';
  window.clearInterval(intval);
}

