			  var linkarr=new Array()
                      linkarr[0]="new_sexy_videos.html"
                      linkarr[1]="new_sexy_videos_2.html"
              function Getlink()
               {
                len=linkarr.length // how many entries in the array
                randnm=Math.round(Math.random()*(len-1))
				location.href=linkarr[randnm] //this opens in SAME window
				
				//to open in NEW window use:  var newWin = window.open(linkarr[randnm]);
              }


