/**
 * Extra Javascript functions
 *
 * @package PhpGedView
 * @subpackage Display
 * @author Jonathan Jaubart
 * @version p_30
 */

/**
 * Open the popup window to compute the new sosa from an individual
 *
 *@param int pid Identifier of the individual
 *@return false
 */
function computeSosa(pid){
	window.open('module.php?mod=perso_tools&pgvaction=computeSosa&pid='+pid,'_blank', 'top=50,left=50,width=600,height=500,resizable=1,scrollbars=1');
	return false;
}