<!--

    var imgsrc_array = new Array();

    var last_img = '';

    imgsrc_array.push('/website/images/shared/hans_hoekstra_streamer_beeldjes_01.jpg');
    imgsrc_array.push('/website/images/shared/hans_hoekstra_streamer_beeldjes_02.jpg');
    imgsrc_array.push('/website/images/shared/hans_hoekstra_streamer_beeldjes_03.jpg');
    imgsrc_array.push('/website/images/shared/hans_hoekstra_streamer_beeldjes_04.jpg');
    imgsrc_array.push('/website/images/shared/hans_hoekstra_streamer_beeldjes_05.jpg');
    imgsrc_array.push('/website/images/shared/hans_hoekstra_streamer_beeldjes_06.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])
        {
            document.images['streamer_img'].src = imgsrc_array[randomimage];

            last_img = imgsrc_array[randomimage];
        }
        else
        {
            setImage();
        }

    }

    function swithImage()
    {
        setInterval(setImage, 8000);
    }

    function setBodyLoad(expand_name_s)
    {
        setImage();

        var menu_c = new menu_expand_c();
		menu_c.setMenu(expand_name_s);
    }

//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');
    }

//-->
