16 lines
463 B
HTML
16 lines
463 B
HTML
<script type="text/javascript">
|
|
function randomlinks(){
|
|
var myrandom=Math.round(Math.random()*3)
|
|
var links=new Array()
|
|
links[0]="https://www.DemiCardGame.com"
|
|
links[1]="https://www.games.xyphienllc.com"
|
|
links[2]="https://www.htcg.news"
|
|
links[3]="https://www.eTableCon.com"
|
|
|
|
window.open(links[myrandom], '_blank');
|
|
}
|
|
</script>
|
|
<form>
|
|
<input type="button" value="random link!" onClick="randomlinks()">
|
|
</form>
|