<script type=¨text/javascript¨>
Nombre = new
Array ();
Url = new
Array ();
Nombre[0] = ´Google´;
Url [0] = ´
http://Www.google.es ´;
Nombre[1] = ´Yahoo´;
Url [1] = ´
http://Www.yahoo.es ´;
Nombre[2] = ´Microsoft´;
Url [2] = ´
http://Www.microsoft.com ´;
Nombre[3] = ´El Pais´;
Url [3] = ´
http://Www.elpais.es ´;
Nombre[4] = ´Adobe´;
Url [4] = ´
http://Www.adobe.es ´;
Nombre[5] = ´Terra´;
Url [6] = ´
http://Www.terra.es ´;
X = Math.
round (Math.
random ()*6);
document.
write (´Enlace aleatorio: <a href=¨´ + Url[X] + ´¨ target=¨_blank¨>´ + Nombre[X] + ´</a>´)
</script>