<!-- array.js - mind (mind@metalshell.com) -->
<!-- pretty simple array example -->
<!-- $ If you have any problems or questions, email me $ -->
<!-- http:
<!-- put this code into the <head> section of your html document. -->
<!-- start our javascript -->
<script language=JavaScript>
var exmp = new Array("This", "Is", "Our", "Array");
var i;
function showArray()
{
for (i = 0; i < exmp.length; i++)
document.write('<font>' + exmp[i] + '</font><br>');
}
</script>
<!-- place this code anywhere on your html document (example) -->
<!-- align our link below -->
<div align=center>
<!-- make a link that points to our js function printText() -->
<a href="javascript: showArray();">Click Here!</a>
</div>