var timerID = null;
var iFoto = -1;
var arFotos;
var imgElement;

function startFotoslide(delay, arrayFotos, imagenElement)
{
    if (arrayFotos.length > 0)
    {
      arFotos = arrayFotos;
      imgElement = imagenElement;
      nextFoto();

      if (arrayFotos.length > 1)
        timerID = setInterval("nextFoto()", delay);
    }
}

function stopFotoslide()
{
    if (timerID)
    {
        clearTimeout(timerID);
        timerID = 0;
    }
}

function nextFoto()
{
    iFoto += 1;
    if (iFoto >= arFotos.length)
        iFoto = 0;

    imgElement.src = arFotos[iFoto];
}

function abrirFoto(imgElement, nombre, id)
{
	window.open("foto.asp?img=" + imgElement.src + "&nombre=" + nombre,"foto" + id,"menubar=no,status=no,toolbar=no,location=no,width=400,height=115, left=0, top=0");
}