
//////////////////////////////////////////
//                                      //
//  author: Vitaliy Smolovich           //
//  e-mail: vitali15@bezeqint.net       //
//  All rights reserved.                //
//                                      //
//////////////////////////////////////////

//-----------------------------------------------------------     1 menu_rihgt   --------------------------------------------------------------

var a
var post
var sdelay 

sdelay = 14  // vpisat vrema ojidania v secundah
post= 2  // vpisat scolko vsego bannerov


var urlArray = new Array(post); //for URL's
var baArray = new Array(post); //for banners

  urlArray[1] = "http://dru.co.il/";          //vpisat URL

 urlArray[2] = "http://shato.gid.co.il/";          //vpisat URL

baArray[1] = "http://gid.co.il/banners/dru_760_90.gif";
baArray[2] = "http://gid.co.il/banners/shato_top.gif";     //vpisat MESTO RASPOLOJENIA IMG


   

function doit(a)

{
  
if ((a==undefined) || (a == post))  // chtobi povtoralos po krugu

   {
      a = 0;  // po poradku
   //    a = Math.floor(Math.random()*post);  // randomali
   }
   
a++;

//alert(a);

document.getElementById("wita").src=""+baArray[a]+"";

document.witaform.LoadUrl.value = ""+urlArray[a]+""

tiy = setTimeout("doit("+a+")", sdelay+"000");
}

function loadPage()

{
	//window.top.location.href =  document.witaform.LoadUrl.value;
	window.open(""+document.witaform.LoadUrl.value+"","_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=yes, width=760, height=90")

}
