Hello,
I have found a script (display ramdom text) that goes like this:
<head>
<title>Untitled Document</title>
<SCRIPT LANGUAGE="JavaScript">
<!--
//[avnerc@fundtech.co.il]
messArr=new Array();
messArr[0]="Message 1";
messArr[1]="Message 2";
messArr[2]="Message 3";
messArr[3]="Message 4";
num=Math.floor(4*(Math.random()));
//-->
</SCRIPT>
</head>
<body>
<script>document.write(messArr[num])</script>
</body>
Now what i would like to do is to associate 2 messages together in two different cells. The association must always be the same i.e. Message 1 with Message 101; Message 2 with Message 102; etc.
Any suggestions???
That you in advance for your time
fnl
I have found a script (display ramdom text) that goes like this:
<head>
<title>Untitled Document</title>
<SCRIPT LANGUAGE="JavaScript">
<!--
//[avnerc@fundtech.co.il]
messArr=new Array();
messArr[0]="Message 1";
messArr[1]="Message 2";
messArr[2]="Message 3";
messArr[3]="Message 4";
num=Math.floor(4*(Math.random()));
//-->
</SCRIPT>
</head>
<body>
<script>document.write(messArr[num])</script>
</body>
Now what i would like to do is to associate 2 messages together in two different cells. The association must always be the same i.e. Message 1 with Message 101; Message 2 with Message 102; etc.
Any suggestions???
That you in advance for your time
fnl