// JavaScript Document
<!-- 
/*Autor: Scott R Harrod http://members.aol.com/kirrak9/cyberbase.html           */
// 

/* Поменяйте адреса баннеров */
        one=new Image
        one.src="../scripts/b01.jpg"
        two=new Image
        two.src="../scripts/b03.jpg"
        three=new Image
        three.src="../scripts/b01.jpg"
        four=new Image
        four.src="../scripts/b03.jpg"         

/* Поменяйте ссылки для каждого баннера */

         URL=new Array                                                                                          //  URL array holds destination urls
                  URL[0]="http://www.tfn.ru/super-price.html"            
                  URL[1]="http://www.tfn.ru/spec_stel.html"
                  URL[2]="http://www.tfn.ru/super-price.html"
                  URL[3]="http://www.tfn.ru/spec_stel.html"

         imgID=new Array                                                                                      //  imgID array holds file source path for gifs corresponding to URL array
                    imgID[0]=one.src
                    imgID[1]=two.src
                    imgID[2]=three.src
                    imgID[3]=four.src

       var a=0
       var b=(URL.length-1)
       var pause=10000 // Время показа каждого баннера в мс
       function Rotate(imgN)  {   

                       if (a==b)    {
                           a=0
                          }else{
                           a++
                          }
                       document.images[imgN].src=imgID[a]
                       window.setTimeout('Rotate("linkpic")',pause); 
                       }
        function Openner(a)  {
		
/* Настройте размеры и функции открываемого окна */

                     newWindow=window.open()
                     newWindow.document.location=(URL[a])
                      } 
-->