function OpenThumb(Img)
{
	window.open('ShowThumb.php?id='+Img, '_w', 'toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=no, width=500, height=380, left='+(screen.width-500)/2+', top=80');
}

function OpenThumb2(Img)
{
	window.open('thumb/phpThumb.php?src=wizualizacje/'+Img+'&w=600&h=400', '_w', 'toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=no, width=620, height=440, left='+(screen.width-620)/2+', top=80');
}


function start_slideshow(start_frame, end_frame, delay)
{
	setTimeout(switch_slides(start_frame,start_frame,end_frame, delay), delay);
}
                                                
function switch_slides(frame, start_frame, end_frame, delay)
{
	return (function() {
                Effect.Fade('slideshow' + frame);
                if (frame == end_frame) { frame = start_frame; } else { frame = frame + 1; }
                setTimeout("Effect.Appear('slideshow" + frame + "');", 850);
                setTimeout(switch_slides(frame, start_frame, end_frame, delay), delay + 850);
    })
}