Advertisement
Guest User

Untitled

a guest
Dec 11th, 2011
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function Audio() {
  2.         var status = 1;
  3.         if (status == 1)
  4.         {
  5.             document.getElementById('audiotag').play();
  6.             window.document.images[0].src = "images/play.png";
  7.             status = 0;
  8.         }
  9.         else
  10.         {
  11.             document.getElementById('audiotag').pause();
  12.             window.document.images[0].src = "images/logo_small.png";
  13.             status = 1;
  14.         }
  15.     }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement