<!--

//
//	Gallery viewing functions

function viewGallery (id)
{
	MM_openBrWindow("../viewer.php?g=" + id,"GalleryViewer","width=450,height=450");
}

function viewPhoto (id)
{
	MM_openBrWindow("../photo.php?p=" + id,"PhotoViewer","width=450,height=450");
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->