<!--

    var imgsrc_array = new Array();

    var last_img = '';

    imgsrc_array.push('/IMG/alupool_00.jpg');
    imgsrc_array.push('/IMG/alupool_01.jpg');
    imgsrc_array.push('/IMG/alupool_02.jpg');
    imgsrc_array.push('/IMG/alupool_03.jpg');
    imgsrc_array.push('/IMG/alupool_04.jpg');
    imgsrc_array.push('/IMG/alupool_05.jpg');
    imgsrc_array.push('/IMG/alupool_06.jpg');
    imgsrc_array.push('/IMG/alupool_07.jpg');
    imgsrc_array.push('/IMG/alupool_08.jpg');

    function getRandomInt(min_int, max_int)
    {
        return Math.floor(Math.random() * (max_int - min_int + 1)) + min_int;
    }

    function setImage()
    {
        var randomimage = getRandomInt(0, (imgsrc_array.length - 1));

        if (last_img != imgsrc_array[randomimage])
        {
            if (navigator.appName.indexOf('Microsoft') != '-1')
            {
                document.all['foto_td'].style.background = 'url(' + imgsrc_array[randomimage] + ')';
            }
            else
            {
                document.getElementById('foto_td').style.background = 'url(' + imgsrc_array[randomimage] + ')';
            }

            last_img = imgsrc_array[randomimage];
        }
        else
        {
            setImage();
        }

    }

    function swithImage()
    {
        setInterval(setImage, 8000);
    }

    function setBodyLoad()
    {
        setImage();
        swithImage();
    }

//window

    function openWindow(location_string, width_int, height_int)
    {
        window.open(location_string,'popup','width=' + width_int + ',height=' + height_int + ',toolbar=no,scrollbars=yes,resizable=no,menubar=no,status=no,directories=no,location=no');
    }

//-->
