function opengallerywindow(imagename,imagewidth,imageheight) {
	var gallerywindow = open('','galwin','height='+(imageheight+10)+',width='+imagewidth);
	gallerywindow.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><HTML><LINK HREF="genova.css" REL="stylesheet" TYPE="text/css"><head></head><body>')
	gallerywindow.document.write('<table><tr><td><img align="left" src="/library/page-images/gallery/'+imagename+'"></td></tr>');
	gallerywindow.document.write('<tr><td><p align="center"><a href="#" onClick="window.close()">CLOSE</a></p></tr></td></table>');
	gallerywindow.document.write('</body></html>');
	gallerywindow.document.close();
	gallerywindow.focus();
}

