jQuery(document).ready(function() {


	function popUpWindow(URLStr, left, top, width, height) {
	
	   open(URLStr, 'popUpWin', 'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	
	}

	jQuery('.cp-animal_pedigree_link>a').click(function() {
	popUpWindow(jQuery(this).attr('href'), 100, 100, 640,480);	
	return false;	   
	});
	jQuery('.cp-animal_progeny_link>a').click(function() {
	popUpWindow(jQuery(this).attr('href'), 100, 100, 640,480);
	return false;												   
	});
})