// JavaScript Document
myCnt = 3;                                
myTable = new Array(                     
"c/1.html", 
"c/2.html",
"c/3.html"  
);

function myRndLink(){                     
  myRnd = Math.floor(Math.random()*myCnt); 
  window.open(myTable[myRnd]);        
}

