As you did not include a link, here is the concept, it's up to you to make it happen:
(This example assumes you've created a page called "slideshow.html" which is the actual slideshow, this is very important)
1) Make each album link using the target attribute as follows:
<a href="slideshow.html" target="_blank">View Slideshow</a> <!-- opens slideshow.html in a new browser window using HTML -->
2) Add the following Javascript in the head section of slideshow.html or at the bottom of that page:
Code:
<script>
<!--//
top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight < screen.availHeight||top.window.outerWidth < screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
//-->
</script>
That will attempt to maximize the browser window as you requested. Users with Javascript disabled or have constraints set in their browser not to resize windows will not see the browser page maximized, and there isn't a thing you can do about it.
NOTE:
You did not describe if you had multiple slide shows, i.e. one for album, or one that requires parameters passed to it to load the right one, or whatever, so this reply assumes one slide show per album. It's up to you to use the proper paths and filename names, of course. This is a CONCEPT, do not simply copy/paste the link example and expect it to work.
-jim