

<!--



function init() {

                numberOfStartFiles = 10;

                mainFrame = this.location.href;

                baseName = mainFrame.substring(0,mainFrame.lastIndexOf("."));

                presentDate = new Date;

                startFile = eval(Math.ceil((presentDate.getTime()/100)%numberOfStartFiles));

                if (startFile == 0) startFile = 1;

                if (startFile > numberOfStartFiles) startFile = numberOfStartFiles;

                extendedName = baseName + startFile +".html";

                this.document.location = extendedName;

                return true;

}



init();



//-->


