// JavaScript Document

function showPhoto(thePhoto,theTitle) {
	w_width = 670;
	w_height = 550;
	if (screen) {
		w_left = (screen.availWidth - w_width)/2;
		w_top = ((screen.availHeight - w_height)/2)-20;
	}
	theWindowParam = 'width='+w_width+',height='+w_height+',left='+w_left+',top='+w_top+',status=no,resizable=no,scrollbars=yes';

	window.photoWindow = open('./photos/showphoto.php?photo_name='+thePhoto+'&photo_title='+theTitle,'photoWindow', theWindowParam);
	setTimeout('if(photoWindow&&!photoWindow.closed)photoWindow.focus()',100);
}