function switchShot( n )
{
	document.getElementById( "display-img" ).src = "images/screenshots/firework-" + ( 9 + n ) + "-framed.jpg";
	document.getElementById( "display" ).style.display = "block";
	document.getElementById( "video" ).style.display = "none";
	document.getElementById( "display" ).href = "javascript:showShot(" + n + ")";
}

function switchVideo( n )
{
	document.getElementById( "video-img" ).src = "images/screenshots/preview-" + n + ".gif";
	document.getElementById( "display" ).style.display = "none";
	document.getElementById( "video" ).style.display = "block";
}

function showShot( n )
{
	openPopup("screenshot.asp?no=" + ( n + 5 ), 810, 625 );
}