function ShowImage(imageNum) {
	var numPrefix = '0';

	var winWidth = 490;
	var winHeight = 400;
	var imageWidth = 320;
	var imageHeight = 240;

	if (screen.width > 800) {
		winWidth = 660;
		winHeight = 600;
		imageWidth = 640;
		imageHeight = 480;
	}

	if (imageNum > 9) {
		numPrefix = '';
	}

	var w=window.open('','','width=' + winWidth + ',height=' + winHeight + ',scrollbars=no,menubar=no,status=no,toolbar=no,directories=no,location=no');
	var doc = w.document;
//    w.document.onmousedown=noRightClick;
	doc.write('<html><head><title>Tulsa Rock \'N\' Roll</title></head>');
	doc.write('<body background="/images/backgrounds/thumbgallery_bg_wide_660.jpg" text="#FFFFFF" bgcolor="navy" link="#3366FF" vlink="#3333FF" alink="#3366FF">');
//doc.write('<img SRC="/cgi-bin/logger.cgi?ref=' + document.url + '-image' + numPrefix + imageNum + '" NOSAVE BORDER=0 width=1 height=1>');

	doc.write('<script language="JavaScript">');
	doc.write('function noRightClickPopup(evnt)');
	doc.write('{');
	doc.write('	errMsg="All Content Copyright (c) 2001, 2002 Emmett A. Lollis Jr. All Rights Reserved.  Any unauthorized modification,\\nrepublication or redistribution of content including but not limited to photographs, images or text without the\\npermission of Emmett Lollis Jr. is strictly prohibited.  Any third party names, trademarks, and service marks are\\nthe properties of their respective owners.\\n\\nContact Information: Emmett Lollis Jr. @ emmett@tulsarocknroll.com.\\n\\nRemember: High resolution versions are available upon request.";');
	// \\n\\nYou may save a copy of this image for your own personal use so long as you agree to the above terms.\\nTo do so simply press and hold the left mouse button, then while still holding the left button click the right\\nmouse button.  You will then be presented with the normal \\"save as\\" function.
	doc.write('	if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null)');
	doc.write('	{');
	doc.write('		if (evnt.which == 3)');
	doc.write('		{');
	doc.write('			alert(errMsg);');
	doc.write('			return false;');
	doc.write('		}');
	doc.write('	}');
	doc.write('	else');
	doc.write('	if (event.button==2)');
	doc.write('		alert(errMsg);');
	doc.write('}');
	doc.write('document.onmousedown=noRightClickPopup;');
	doc.write('document.onmouseup=noRightClickPopup;');
	doc.write('document.oncontextmenu=noRightClickPopup;');
	doc.write('</script>');

	doc.write('<!-- BEGIN LINKEXCHANGE CODE -->');
	doc.write('<center><iframe src="http://leader.linkexchange.com/X1613082/showiframe?" width=468 height=60 marginwidth=0 marginheight=0 hspace=0 vspace=0 frameborder=0 scrolling=no><a href="http://leader.linkexchange.com/X1613082/clickle" target="_top"><img ISMAP SRC="http://leader.linkexchange.com/X1613082/showle?" ALT="" BORDER=0 height=60 width=468></a></iframe>');
	doc.write('<br><a href="http://leader.linkexchange.com/X1613082/clicklogo" target="_top"><img ISMAP SRC="http://leader.linkexchange.com/X1613082/showlogo?" ALT="" BORDER=0 height=16 width=468></a></center>');
	doc.write('<!-- END LINKEXCHANGE CODE -->');

	doc.write('<center><img src="image' + numPrefix + imageNum + '.jpg" width=' + imageWidth + ' height=' + imageHeight + ' border=0>');
	doc.write('<br><center><font size=-1>Copyright &copy 2001 Emmett A. Lollis Jr. All Rights Reserved.<br>');
	doc.write('<a href="http://www.tulsarocknroll.com/privacy.asp">Privacy Policy</a>.<br>');
	doc.write('<b><a href="http://www.tulsarocknroll.com" target=_blank>www.TulsaRockNRoll.com</a></b></font></center>');
	doc.write('</body></html></center>');
}

function ShowThumbs(numImages) {
	//var pageTitle = "Images of BANDNAME - October 31st 2001";
	var thumbWidth = 100;
	var thumbHeight = 75;
	var imageWidth = 320;
	var imageHeight = 240;
	var numPrefix = '0';
	var i = 0;

	if (screen.width > 800)
	{
		thumbWidth = 100;
		thumbHeight = 75;
		imageWidth = 640;
		imageHeight = 480;
	}
	document.write('<br>');
	document.write('<table width="780" border="0" cellspacing="2" cellpadding="0"><tr><td>');
	document.write('<center>');

	for (i=1; i<numImages + 1; i++)
	{
		if (i>9)
			numPrefix = '';
		document.write('<a href="javascript:ShowImage(' + i + ');"><img src="thumbnails/image' + numPrefix + i + '.jpg" width=' + thumbWidth + ' height=' + thumbHeight + ' border=0></a>');
		if (!(i % 6))
		{
			document.write('<br>');
		}
	}
	document.write('<br><font size=-1>Copyright &copy 2001, 2009 Emmett A. Lollis Jr. All Rights Reserved.<br>');
	document.write('<a href="http://www.tulsarocknroll.com/privacy.asp">Privacy Policy</a>.<br>');
	document.write('<b><a href="http://www.tulsarocknroll.com" target=_blank>www.TulsaRockNRoll.com</a></b></font>');
	document.write('</center></td></tr></table>');
}