<!--
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><style>a:link,a:visited{color:#ccc}</style><head><title>Galleriet</title></head>')
	gallery.document.writeln('<body style="background-color: black; border: 0; 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-50.jpg"></p>')
	gallery.document.writeln('<p style="text-align: center; ')
	gallery.document.writeln('font-family: trebuchet ms, verdana, helvetica, sans-serif; font-size: 20px;" >')
	gallery.document.writeln('<strong>Galleriet</strong></p>')
	gallery.document.writeln('<p style="text-align: center;')
	gallery.document.writeln('font-family: trebuchet ms, verdana, helvetica, sans-serif; font-size: 12px;" >')
	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()
}
//-->