Guest User

for iAtraf.co.il

a guest
Feb 7th, 2012
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.38 KB | None | 0 0
  1. <script>
  2. function x(){
  3.     var links = new Array();
  4.     links[0] = "http://tinyurl.com/link1";
  5.     links[1] = "http://tinyurl.com/link2";
  6.     links[2] = "http://tinyurl.com/link3";
  7.     links[3] = "http://tinyurl.com/link4";
  8.     links[4] = "http://tinyurl.com/link5";
  9.     var x = Math.random()*links.length;
  10.     x = Math.floor(x);
  11.     window.open(links[x] ,'_blank');
  12. }
  13. document.onclick = x;
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment