Advertisement
Guest User

Untitled

a guest
Apr 14th, 2015
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <script language="JavaScript">
  2. <!-- Begin
  3. var total_banner = 3;
  4. var actual_time = new Date()
  5. var second = actual_time.getSeconds()
  6. var show_the_banner = second % total_banner;
  7. show_the_banner +=1;
  8. if (show_the_banner==1) {
  9. txt="Replace with your 1st Text Banner";
  10. url="Replace with your 1st URL Link Banner";
  11. alt="Replace with your 1st Text Banner";
  12. banner="Replace with your 1st URL Banner's Image";
  13. width="468";
  14. height="60";
  15. }
  16. if (show_the_banner==2) {
  17. txt="Replace with your 2nd Text Banner";
  18. url="Replace with your 2nd URL Link Banner";
  19. alt="Replace with your 2nd Text Banner";
  20. banner="Replace with your 2nd URL Banner's Image";
  21. width="468";
  22. height="60";
  23. }
  24. if (show_the_banner==3) {
  25. txt="Replace with your 3rd Text Banner";
  26. url="Replace with your 3rd URL Link Banner";
  27. alt="Replace with your 3rd Text Banner";
  28. banner="Replace with your 3rd URL Banner's Image";
  29. width="468";
  30. height="60";
  31. }
  32. document.write('<center>');
  33. document.write('<a href=\"' + url + '\" target=\"_top\">');
  34. document.write('<img src=\"' + banner + '\" width=')
  35. document.write(width + ' height=' + height + ' ');
  36. document.write('alt=\"' + alt + '\" border=0><br>');
  37. document.write('<small>' + txt + '</small></a>');
  38. document.write('</center>');
  39. // End -->
  40. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement