/* Create an array */
function setuparray(num)
{ this.length =num;
for (loop=1; loop <=num; loop++);
 {this[loop]=0; }
return this;}
/* Get a random number */
function random(max)
{ today=new Date();
   hour=today.getHours();
   min=today.getMinutes();
   sec=today.getSeconds();
return(((sec) % max)+1);}
function display() 
{ picturenum=random(7);
/* Get a random number */
window.setTimeout('location="siripa.html"',45010);
/* Display the picture in the array at the position indicated by the random 
number */

document.writeln('<center><IMG SRC='+slideshow[picturenum]+' WIDTH=400 HEIGHT=325 ></center>');
document.clear();
document.writeln('<BR>'+slidetext[picturenum]+
'</BR>');
}
