
var now = new Date() ;
Math.random.seed = now.getTime() ;

var nextPage = new Array() ;

nextPage[0] = 'http://home.earthlink.net/~pnd226/album1.htm' ;
nextPage[1] = 'http://home.earthlink.net/~pnd226/album2.htm' ;
nextPage[2] = 'http://home.earthlink.net/~pnd226/album3.htm' ;
nextPage[3] = 'http://home.earthlink.net/~pnd226/album4.htm' ;
nextPage[4] = 'http://home.earthlink.net/~pnd226/album5.htm' ;
nextPage[5] = 'http://home.earthlink.net/~pnd226/album6.htm' ;
nextPage[6] = 'http://home.earthlink.net/~pnd226/album7.htm' ;
nextPage[7] = 'http://home.earthlink.net/~pnd226/album8.htm' ;
nextPage[8] = 'http://home.earthlink.net/~pnd226/album9.htm' ;
nextPage[9] = 'http://home.earthlink.net/~pnd226/album10.htm' ;
nextPage[10] = 'http://home.earthlink.net/~pnd226/album11.htm' ;
nextPage[11] = 'http://home.earthlink.net/~pnd226/album12.htm' ;
nextPage[12] = 'http://home.earthlink.net/~pnd226/album13.htm' ;
nextPage[13] = 'http://home.earthlink.net/~pnd226/album14.htm' ;
nextPage[14] = 'http://home.earthlink.net/~pnd226/album15.htm' ;
nextPage[15] = 'http://home.earthlink.net/~pnd226/album16.htm' ;
nextPage[16] = 'http://home.earthlink.net/~pnd226/album17.htm' ;
nextPage[17] = 'http://home.earthlink.net/~pnd226/album18.htm' ;
nextPage[18] = 'http://home.earthlink.net/~pnd226/album19.htm' ;
nextPage[19] = 'http://home.earthlink.net/~pnd226/album20.htm' ;
nextPage[20] = 'http://home.earthlink.net/~pnd226/album21.htm' ;
nextPage[21] = 'http://home.earthlink.net/~pnd226/album22.htm' ;



function pickApage() {

pickedPage = Math.floor(Math.random() * nextPage.length) ;

location.href = nextPage[pickedPage] ;

}










