﻿var ImageRotator_Ms;
var ImageRotator_Directory;
var ImageRotator_CurrentIndex = 1;
var ImageRotator_Images;

function ImageRotator_Initialize(seconds, directory, files)
{
  ImageRotator_Ms = seconds * 1000;
  ImageRotator_Directory = directory;
  ImageRotator_Images = files.split(",");
  window.setTimeout('ImageRotator_Display()', ImageRotator_Ms);
}

function ImageRotator_Display()
{
  var target = document.getElementById("ImageRotator");
  var width= target.width;
  var height = target.height;
  target.src = ImageRotator_Directory + "/" + ImageRotator_Images[ImageRotator_CurrentIndex++];
  target.width = width;
  //target.height = height;
  ImageRotator_CurrentIndex %= ImageRotator_Images.length;
  window.setTimeout("ImageRotator_Display()", ImageRotator_Ms);
}

function Popup(url)
{
  window.open(url, "wb", "scrollbars=yes,screenX=25,screenY=25,directories=0,location=no,menubar=no,resizable=yes,status=no,toolbar=no");
}

