function showPhoto(photo, caption)
{
	var height = 560;
	var width = 720;
	if (height > screen.availHeight) height = screen.availHeight;
	if (width > screen.availWidth) width = screen.availWidth;

	var left = (screen.availWidth - width) / 2;
	var top = (screen.availHeight - height) / 2;

	window.open("/photo.asp?Photo=" + photo + "&caption=" + escape(caption), "Tradewest_Asset_Solutions", "height="+height+",width="+width+",left="+left+",top="+top+",status=no,toolbar=no,menubar=no,location=no,scrollbars=yes");
}
