How to update page.

M

mao

I have a page defined something like this (excluding the essentials).

<html>
<head>
<script language="javascript">
arMonths = new Array("Jan","Feb","Mar"....);
iMonth = 1;
</script>

<body>
<script>
document.write(arMonths[iMonth]);
</script>
</body>
</html>

Once the page is displayed, how can I change the index (iMonth) and update
the page with the new month?
Thanks
 
Top