
        one=new Image
        one.src="http://intert.org/themes/inter/1.jpg"
        two=new Image
        two.src="http://intert.org/themes/inter/2.jpg"
        three=new Image
        three.src="http://intert.org/themes/inter/3.jpg"
        four=new Image
        four.src="http://intert.org/themes/inter/4.jpg"          



         URL=new Array                                                                                          //  URL array holds destination urls
                  URL[0]="#"            
                  URL[1]="#"
                  URL[2]="#"
                  URL[3]="#"

         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=12000 //Время показа каждого баннера в мс
       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",'width=640,height=300,menubar=yes,scrollbars=yes')
                     NewWindow.document.location=(URL[a])
                      } 


					 