<!--
var gallery = null

function startGallery()
{
	winStats = 'toolbar=no,location=no,directories=no,menubar=no,'
	winStats += 'scrollbars=no,width=760,height=560'
	if (navigator.appName.indexOf("Microsoft") >= 0) {
		winStats += ',left=10,top=10'
	}
		else {
			winStats += ',screenX=10,screenY=10'
		}
	gallery = window.open("", "", winStats)
	return gallery
}
function showPhoto(text, image)
{
	if (!gallery || gallery.closed) {
		gallery = null
		gallery = startGallery()
		}
	gallery.document.writeln('<html><head><title>Photo Gallery </title></head>')
	gallery.document.writeln('<body style="background-color: black; color: #CCCCCC;" >')
	gallery.document.writeln('<table cellpadding="0" cellspacing="10"><tr>')
	gallery.document.writeln('<td width="200" height="500"><p align="center">')
	gallery.document.writeln('<img src="images/logo_bw50.jpg"></p>')
	gallery.document.writeln('<p style="text-align: center; ')
	gallery.document.writeln('font-family: Verdana, Arial, Helvetica, Sans-serif; font-size: 18px;" >')
	gallery.document.writeln('<strong>Photo<br>Gallery</strong></p>')
	gallery.document.writeln('<p style="text-align: center;')
	gallery.document.writeln('font-family: Verdana, Arial, Helvetica, Sans-serif; font-size: 10px;" >')
	gallery.document.writeln(text)
	gallery.document.writeln('</p></td><td align="center" width="500" height="500">')
	tag = '<img src="images/'
	gallery.document.write(tag + image)
	gallery.document.write('"></td></table></body></html>')
	gallery.document.close()
	gallery.focus()
}
//-->