<HTML> <HEAD><TITLE>A Little Rotation</TITLE> <SCRIPT LANGUAGE = "JavaScript"> <!-- function rotate() { if (currentPage < totalPages) currentPage++; else currentPage = 1; parent.rotate.location.href = prefix + currentPage + '.html'; setTimeout('rotate()', lullTime); } var prefix = 'rotate'; // prefix for all rotated pages var currentPage = 0; var totalPages = 3; // total number of rotated pages var lullTime = 1000; // lull time for display of each page // --> </SCRIPT> </HEAD> <FRAMESET onLoad = "rotate()" COLS = "30%, 70%" FRAMEBORDER = NO BORDER = 0 FRAMESPACING =0> <FRAMESET ROWS = "*, 200" FRAMEBORDER = NO BORDER = 0 FRAMESPACING = 0> <FRAME NAME = "little" SRC = "little.html"> <FRAME NAME = "rotate" SRC = "rotate1.html"> </FRAMESET> <FRAME NAME = "big" SRC = "big.html"> </FRAMESET> </html>