Javascript - Link Random / Choose a random link
The script below creates a hyperlink directing the visitor to an address chosen at random from a list.
The code below is to be inserted between the tag and <HEAD> </ HEAD> to top:
<SCRIPT Language="Javascript">
<!--
function RandomLink()
{
Url = new Array;
base = "http://en.kioskea.net/";
Url[0] = "index.php3";
Url[1] = "wifi";
Url[2] = "php";
Url[3] = "forum/";
Linkchoice = Math.round(Math.random() * (Url.length+1));
window.open(base + Url[Linkchoice],'_blank');
}
//-->
</SCRIPT>
The code below is to be inserted in the body of the page (somewhere between the tags and <BODY> </ BODY>) to display the link:
<A Href="#" onClick="RandomLink(); return(false)">RandomLink</A>