function viewPhoto(photo,width,height)
{
	var newPhotoWindow;
	newPhotoWindow = window.open("/include/photo.php?photo=" + photo, "subwindimg", "status,top=25,left=25,height=" + height + ",width=" + width);
	newPhotoWindow.focus();
}

