function runSlideShow(KlijentID)
{
   var mSlideShowImage = this.document.getElementById(KlijentID); 
   if (mSlideShowImage !=null)
   {
       if (mSlideShowImage.src !=null)
       {       
           mSlideShowImage.style.filter="blendTrans(duration=2)";
           mSlideShowImage.style.filter="blendTrans(duration=crossFadeDuration)";             
         
           if(navigator.appName=="Microsoft Internet Explorer")         
             mSlideShowImage.filters.blendTrans.Apply();          
             
             if(preLoad[j] !=null)
             {
                mSlideShowImage.src = preLoad[j].src;                                       
             }
                                  
           if(navigator.appName=="Microsoft Internet Explorer")                
             mSlideShowImage.filters.blendTrans.Play();

           j = j + 1;
           if (j > (p-1)) j=0;
           t = setTimeout('runSlideShow(' + KlijentID + ')', slideShowSpeed);
       }
       else
       {
        alert("Ne postoji HTML:  " + KlijentID);
       }
   }
}

function OtvoriScrollProzor(theURL,winName,x,y)
{
	var features;
	features ="width="+x+",height="+y+",left=50,top=20,scrollbars=yes,resizable=yes,location=no,status=no,menubar=no,toolbar=no,directories=no";
	var NewWin=window.open(theURL,winName,features);
	NewWin.focus();
 }