/* Routine to display pedigree in separate window */

function showPed (fileName)
{
	var how;
	var ped;
	
	ped = "ped/" + fileName + ".html";
	
	if (screen.width < 800)
		how = "scrollbars=1,border=0,toolbar=0,width=704,height=570";
	else
	{
		if (screen.height > 600)
			how = "scrollbars=1,border=0,toolbar=0,width=704,height=570";
		else
			how = "scrollbars=1,border=0,toolbar=0,width=704,height=570";
	}
	
	window.open(ped,"",how);
}