function openPeoplePhotoViewer(people_id, photo_id)
{
	var h = 700;
	var w = 640;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=auto,resizable=yes';
	win = window.open('/people_photo_popup_viewer.php?people_id=' + people_id + '&photo_id=' + photo_id, 'AcornPeoplePhotoViewer' + people_id, winprops)

	if (parseInt(navigator.appVersion) >= 4) 
	{ 
		win.window.focus();
	}
}