jQuery(function($) {
	$(".staff_popup").click(function() {
		var ancho = 600;
		var alto = 400;
		var features = "resizable=yes, scrollbars=no";
		var izq = (screen.width - ancho) / 2;
		var arr = (screen.height - alto) / 2;
		window.open($(this).attr("href"), 'ventana', 'width=' + ancho + ',height=' + alto + ',left=' + izq + ',top=' + arr + ',' + features);
		return false;
	});
});

