// JavaScript Document
function Flash(id, str)
{
  if (document.getElementById) {
    document.getElementById(id).innerHTML = str;
  }
}
