function view(series)
{
	// Create new popup window for the slideshow.
	var slideshow = window.open('/series/slideshow/'+series, 'slideshow', 'resizable=1,scrollbars=1,toolbar=0,location=0,width=800,height=600,left=20,top=100', 1);

	// Give the new popup focus.
	if(window.focus)
	{
		slideshow.focus();
	}

	// So the browser doesn't follow the link.
	return false;
}
