function popupPhoto(img, width, Height, caption, description)
{
	imageWindow = window.open("", "photo", "scrollbars=no,width=" + (width) + ",height=" + (Height + 52));
	imageWindow.document.write('<html><head><title>Ginger and the Sonic Circus</title><link rel="stylesheet" href="/css/popup-photo.css" type="text/css" media="screen" /><body>');
	imageWindow.document.write('<img src="' + img + '" alt="' + caption + '" width="' + width + '" height="' + Height + '" />');
	imageWindow.document.write('<div class="photocaption">');
	imageWindow.document.write('<p class="caption">' + caption + '</p>');
	imageWindow.document.write('<p class="description">' + description + '</p>');
	imageWindow.document.write('</div>');
	imageWindow.document.write('</body></html>');
	return false;
}

function popupPhotoSimple(img, width, Height)
{
	imageWindow = window.open("", "photo", "scrollbars=no,width=" + (width) + ",height=" + (Height));
	imageWindow.document.write('<html><head><title>Ginger and the Sonic Circus</title><link rel="stylesheet" href="/css/popup-photo.css" type="text/css" media="screen" /><body>');
	imageWindow.document.write('<img src="' + img + '" alt="' + caption + '" width="' + width + '" height="' + Height + '" />');
	imageWindow.document.write('</body></html>');
	return false;
}