function showGallery(galleryID)
{
	StartingUrl = "../gallery/gallery.php?gID=" + galleryID;
	GalleryWindow=window.open(StartingUrl, "Ghost_Player_Window", "toolbar=no,status=no,scrollbars=no,resizable=no,width=500,height=500,left=100,top=100");
	GalleryWindow.focus();
}

function zoomImage(hID)
{
	StartingUrl = "../gallery/zoom.php?hID=" + escape(hID);
	ZoomWindow=window.open(StartingUrl, "Zoom_Window", "toolbar=no,status=no,scrollbars=no,resizable=no,width=550,height=355,left=100,top=100");
	ZoomWindow.focus();
}
