Weezy
chizzy4real Below is example of random link script ..replace d links wit urs ..
<script>
<!--
/*
Random link button- By JavaScript Kit (http://weezywap.xtgem.com)
Over 300+ free scripts!
This credit MUST stay intact for use
*/
//specify random links below. You can have as many as you want
var randomlinks=new Array()
randomlinks[0]="http://weezywap.xtgem.com/a"
randomlinks[1]="http://weezywap.xtgem.com/b"
randomlinks[2]="http://weezywap.xtgem.com/c"
randomlinks[3]="http://weezywap.xtgem.com/d"
randomlinks[4]="http://weezywap.xtgem.com/e"
function randomlink(){
window.location=randomlinks[Math.floor(Math.random()*randomlinks.length)]
}
//-->
</script>
Copy code