diff --git a/pandora_console/images/line_height.png b/pandora_console/images/line_height.png
new file mode 100644
index 0000000000..843ab37da6
Binary files /dev/null and b/pandora_console/images/line_height.png differ
diff --git a/pandora_console/operation/visual_console/pure_ajax.php b/pandora_console/operation/visual_console/pure_ajax.php
new file mode 100644
index 0000000000..c58fe12caf
--- /dev/null
+++ b/pandora_console/operation/visual_console/pure_ajax.php
@@ -0,0 +1,235 @@
+' .
+ html_print_image ("images/visual_console.png", true,
+ array ("title" => __('Visual consoles list'))) . '';
+
+if ($vconsole_write || $vconsole_manage) {
+ $url_base = 'index.php?sec=network&sec2=godmode/reporting/visual_console_builder&action=';
+
+ $hash = md5($config["dbpass"] . $id_layout . $config["id_user"]);
+
+ $options['public_link']['text'] = ''.
+ html_print_image ("images/camera_mc.png", true,
+ array ("title" => __('Show link to public Visual Console'))).'';
+ $options['public_link']['active'] = false;
+
+ $options['data']['text'] = '' .
+ html_print_image ("images/op_reporting.png", true,
+ array ("title" => __('Main data'))) .'';
+ $options['list_elements']['text'] = '' .
+ html_print_image ("images/list.png", true,
+ array ("title" => __('List elements'))) .'';
+
+ if (enterprise_installed()) {
+ $options['wizard_services']['text'] = '' .
+ html_print_image ("images/wand_services.png", true,
+ array ("title" => __('Services wizard'))) .'';
+ }
+
+ $options['wizard']['text'] = '' .
+ html_print_image ("images/wand.png", true,
+ array ("title" => __('Wizard'))) .'';
+ $options['editor']['text'] = '' .
+ html_print_image ("images/builder.png", true,
+ array ("title" => __('Builder'))) .'';
+}
+
+$options['view']['text'] = ''
+ . html_print_image("images/operation.png", true, array ("title" => __('View'))) .'';
+$options['view']['active'] = true;
+
+if (!is_metaconsole()) {
+ if (!$config['pure']) {
+ $options['pure']['text'] = ''
+ . html_print_image('images/full_screen.png', true, array('title' => __('Full screen mode')))
+ . "";
+ ui_print_page_header($layout_name, 'images/visual_console.png', false, '', false, $options);
+ }
+ //Set the hidden value for the javascript
+ html_print_input_hidden('metaconsole', 0);
+}
+else {
+ //Set the hidden value for the javascript
+ html_print_input_hidden('metaconsole', 1);
+}
+
+ visual_map_print_visual_map ($id_layout, true, true,
+ null, null, '', false, $graph_javascript);
+
+ ?>
+
+
+
+
\ No newline at end of file