script_alertdiv.js 286 B

12345678910
  1. function Notify(sender, arg)
  2. {
  3. ActivateAlertDiv('visible', 'NotifyDiv');
  4. setTimeout("ActivateAlertDiv('hidden', 'NotifyDiv')", 1000);
  5. }
  6. function ActivateAlertDiv(visstring, elem)
  7. {
  8. var adiv = document.getElementById(elem);
  9. adiv.style.visibility = visstring;
  10. }