var newwindow

function photowin(url) {
	if (newwindow && !newwindow.closed)
		{ newwindow.focus(); newwindow.document.clear() }
	else
		{ newwindow=window.open('','','width=875,height=615,top=50,left=50') }
newwindow.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
newwindow.document.writeln('<html>');
newwindow.document.writeln('<head>');
newwindow.document.writeln('<title>Slideshow Enlarged<\/title>');
newwindow.document.writeln('<\/head>');
newwindow.document.writeln('<body>');
newwindow.document.writeln('<div style="margin-top: 5px"><center><img src="' + url + '" alt="Image"><br \/>');
newwindow.document.writeln(eval('desc' + i));
newwindow.document.writeln('<br \/><a href="javascript: self.close()" style="text-decoration:none; color:#000000;"><strong>[Close Window]<\/strong><\/a>');
newwindow.document.writeln('<\/center>');
newwindow.document.writeln('<\/div>');
newwindow.document.writeln('<\/body>');
newwindow.document.writeln('<\/html>');
newwindow.document.close();
}

var large = 1;   // set to 1 for large pics and 0 to make it unclickable
var interval=4000;    // microseconds between slides
var numslides = 8;    // total amount of slides
var folder = "images/slides/"; // folder where the images are

//Start descriptions below that match each slide number
var desc1="Captain Bart Sherwood and the Fighting Lady crew, Jon Pflug, Dave Jones, Jimmy Verner won the CASF Bimini Tournament with a 68lb Bull dolphin and 5 smaller fish and 1 sailfish, all caught on Baitmasters Ballyhoo!";
var desc2="2008 White Marlin Open, Robert Lockwood aboard the &quot;Last Run&quot; -935.5 lb Blue Marlin";
var desc3="2008 Miami Dolphins Tournament, Chip Falkanger - 2nd Place Wahoo";
var desc4="1st Place 2006 Big Rock Blue Marlin Tournament, Wes Seegars aboard the &quot;ChainLink&quot; -501.5 lb Blue Marlin";
var desc5="71 lb Bull Dolphin";
var desc6="Mark Pumo with a nice bull dolphin";
var desc7="A young pup caught off Miami";
var desc8="Captain Glenn Morgan abord the &quot;Carpe Momentum&quot; with an 108 lb wahoo";
//End of descriptions

var intervalID=0;
var piclist = new Array(); // will hold the URL of jpeg to display
var lrglist = new Array(); // will hold the URL of large jpeg to display

for (var i = 1; i < numslides+1; i++) {  
	piclist[i] = folder + "slide" + i + ".jpg"; //URL of each slide
		if (large) {
		    lrglist[i] = folder + "large" + i + ".jpg"; // URL of each large jpeg
		}
	}
i=0; // reset index variable   
startshow();
	
// function that creates the slide show window and schedules showing of slides by newslide
function startshow() { 
    clearInterval(intervalID); // reset, in case one was already running
    if (interval == 0) interval =500;
    intervalID = window.setInterval('newslide()', interval);  // set up the periodic new pic
    newslide();  // display the first slide
}
// function that displays the next slide
function newslide() {
	if (i == numslides) i = 0;   // go back to beginning when at end
	i++;
		if (large) {
			document.links[0].href = lrglist[i];
			// document.this.value = desc[i];
			}
	document.images['slide'].src = piclist[i];
}
// function that displays the previous slide
function prevslide() {
	if (i == 1) i = piclist.length;   // go back to end when at beginning
	i--;
		if (large) {
			document.links[0].href = lrglist[i];
			}
	document.images['slide'].src = piclist[i];
}