// JavaScript Document

function mostraDetallPersona(url,amplada,altura) {
	var nom = 'monitor';
    var myLeft = (screen.width-amplada)/2;
    var myTop = (screen.height-altura)/2;
	var props;
	props = "left="+myLeft+",top="+myTop+",width=" + amplada + ",height=" + altura + ",toolbar=no,scrollbars=yes";
	fin = window.open(url,nom,props);
	fin.focus();
}