I know how to center a regular popup window with javascript, but I can't get it to work with CodeIgniter's anchor_popup function.
Here is my code
$attributes = array(
'class' => 'blue-button',
'width' => '800',
'height' => '600',
'screenx' => '(window.width - 800) / 2',
'screeny' => '(window.height - 600) / 2'
);
echo anchor_popup('program/start_worksheet/8', 'Start Worksheet', $attributes);