<!-- // Start script for NewsLetter slide show

/* !!!! IMPORTANT !!!!Set the last page number to be posted */

var vLastPage = 7;
var vPageNum = 1;	// Starting page number

function slideshowUp()
{
	vPageNum = vPageNum + 1;
	if (vPageNum == (vLastPage + 1)) vPageNum = 1;
	slideshow();
}
// Increment navigation down
function slideshowBack()
{
	vPageNum = vPageNum - 1;
	if (vPageNum == 0) vPageNum = vLastPage;
	slideshow();
}

// Change newsletter page & update navigation text
function slideshow()
{
	document.newspage.src = eval("'news/news" + vPageNum + ".png'");
	document.news.caption.value = "Page " + vPageNum;
}

//  end script -->