var width_popup_grupo = '783';
var height_popup_grupo = '423';

function mostrarPopupGrupo(id) {
	x = (screen.width - width_popup_grupo) / 2;
	y = (screen.height - height_popup_grupo) / 2;
	
	url = "popup_grupo_informativo.php?id=" + id;
	parametros = 'width=' + width_popup_grupo + ',height=' + height_popup_grupo + ',top=' + y + ',left=' + x + ',toolbar=no,directories=no,resizable=yes,status=yes,menubar=no,scrollbars=yes';
	window.open(url, 'Nagual', parametros);
}