58a59,66
>   $form['google_cse_custom_js'] = array(
>     '#title' => t('Custom Javascript file'),
>     '#type' => 'textfield',
>     '#maxlength' => 200,
>     '#size' => 60,
>     '#description' => t('Specify the path to a custom google_cse.js file. i.e. "' . path_to_theme() . '/js/google_cse.js"'),
>     '#default_value' => variable_get('google_cse_custom_js', ''),
>   );
256c264,270
<   drupal_add_js(drupal_get_path('module', 'google_cse') .'/google_cse.js', 'module', 'footer');
---
>
>   if ($custom_js_file = variable_get('google_cse_custom_js', '')) {
>       drupal_add_js($custom_js_file, 'module', 'footer');
>   }
>   else {
>       drupal_add_js(drupal_get_path('module', 'google_cse') .'/google_cse.js', 'module', 'footer');
>   }
