diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog
index f24b39d224..445154d491 100644
--- a/pandora_console/ChangeLog
+++ b/pandora_console/ChangeLog
@@ -1,3 +1,69 @@
+2011-09-15 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
+
+	* include/help/en/help_visual_console_editor_editor_tab.php
+	include/help/en/help_reporting_list_items_tab.php
+	include/help/en/help_alert_template.php
+	include/help/en/help_alert_action.php
+	include/help/en/help_alert_command.php
+	include/help/en/help_alert_compound.php
+	include/help/en/help_reporting_wizard_sla_tab.php
+	include/help/en/help_reporting_wizard_tab.php
+	include/help/en/help_graph_view.php
+	include/help/en/help_module_linking.php
+	include/help/en/help_visual_console_editor_list_elements_tab.php
+	include/help/en/help_visual_console_editor_data_tab.php
+	include/help/en/help_policy_agent.php
+	include/help/en/help_profile.php
+	include/help/en/help_visual_console_editor_wizard_tab.php
+	include/help/en/help_graph_builder.php
+	include/help/en/help_event_alert.php
+	include/help/en/help_external_alert.php
+	include/help/en/help_visual_console_editor_preview_tab.php
+	include/help/en/help_reporting_item_editor_tab.php
+	include/help/en/help_snmp_alert_custom.php
+	include/help/en/help_reporting_preview_tab.php
+	include/help/en/help_policy_queue.php
+	include/help/en/help_snmp_alert.php
+	include/help/en/help_graph_editor.php
+	include/help/en/help_reporting_global_tab.php
+	include/help/es/help_visual_console_editor_editor_tab.php
+	include/help/es/help_reporting_list_items_tab.php
+	include/help/es/help_alert_template.php
+	include/help/es/help_alert_action.php
+	include/help/es/help_alert_command.php
+	include/help/es/help_alert_compound.php
+	include/help/es/help_reporting_wizard_sla_tab.php
+	include/help/es/help_reporting_wizard_tab.php
+	include/help/es/help_graph_view.php
+	include/help/es/help_module_linking.php
+	include/help/es/help_visual_console_editor_list_elements_tab.php
+	include/help/es/help_visual_console_editor_data_tab.php
+	include/help/es/help_policy_agent.php
+	include/help/es/help_profile.php
+	include/help/es/help_visual_console_editor_wizard_tab.php
+	include/help/es/help_graph_builder.php
+	include/help/es/help_event_alert.php
+	include/help/es/help_external_alert.php
+	include/help/es/help_visual_console_editor_preview_tab.php
+	include/help/es/help_reporting_item_editor_tab.php
+	include/help/es/help_snmp_alert_custom.php
+	include/help/es/help_reporting_preview_tab.php
+	include/help/es/help_policy_queue.php
+	include/help/es/help_snmp_alert.php
+	include/help/es/help_graph_editor.php
+	include/help/es/help_reporting_global_tab.php: New help pages.
+
+	* godmode/alerts/alert_list.list.php
+	godmode/alerts/alert_compounds.php
+	godmode/alerts/alert_templates.php
+	godmode/alerts/alert_actions.php
+	godmode/alerts/alert_list.builder.php
+	godmode/alerts/alert_commands.php
+	godmode/snmpconsole/snmp_alert.php
+	godmode/users/profile_list.php
+	godmode/modules/manage_network_templates.php
+	godmode/reporting/graph_builder.php: Added contextual alerts.
+
 2011-09-14  Miguel de Dios  <miguel.dedios@artica.es>
 	
 	* include/functions.php: cleaned source code style.
diff --git a/pandora_console/godmode/alerts/alert_actions.php b/pandora_console/godmode/alerts/alert_actions.php
index fff89b787a..97f9db0776 100644
--- a/pandora_console/godmode/alerts/alert_actions.php
+++ b/pandora_console/godmode/alerts/alert_actions.php
@@ -48,7 +48,7 @@ $copy_action = (bool) get_parameter ('copy_action');
 
 if ((!$copy_action) && (!$delete_action) && (!$update_action))
 	// Header
-	ui_print_page_header (__('Alerts').' &raquo; '.__('Alert actions'), "images/god2.png", false, "", true);
+	ui_print_page_header (__('Alerts').' &raquo; '.__('Alert actions'), "images/god2.png", false, "alert_action", true);
 
 if ($copy_action) {
 	$id = get_parameter ('id');
diff --git a/pandora_console/godmode/alerts/alert_commands.php b/pandora_console/godmode/alerts/alert_commands.php
index 413601acf4..462b069f11 100644
--- a/pandora_console/godmode/alerts/alert_commands.php
+++ b/pandora_console/godmode/alerts/alert_commands.php
@@ -39,7 +39,7 @@ if (is_ajax ()) {
 }
 
 // Header
-ui_print_page_header (__('Alerts').' &raquo; '.__('Alert commands'), "images/god2.png", false, "", true);
+ui_print_page_header (__('Alerts').' &raquo; '.__('Alert commands'), "images/god2.png", false, "alert_command", true);
 
 $update_command = (bool) get_parameter ('update_command');
 $create_command = (bool) get_parameter ('create_command');
diff --git a/pandora_console/godmode/alerts/alert_compounds.php b/pandora_console/godmode/alerts/alert_compounds.php
index 825088e71e..fd0f0161b3 100644
--- a/pandora_console/godmode/alerts/alert_compounds.php
+++ b/pandora_console/godmode/alerts/alert_compounds.php
@@ -52,7 +52,7 @@ $enable_alert = (int) get_parameter ('enable_alert');
 $disable_alert = (int) get_parameter ('disable_alert');
 
 // Header
-ui_print_page_header (__('Alerts').' &raquo; '.__('Correlated alerts'), "images/god2.png", false, "", true);
+ui_print_page_header (__('Alerts').' &raquo; '.__('Correlated alerts'), "images/god2.png", false, "alert_compound", true);
 
 if ($update_compound) {
 	$id = (int) get_parameter ('id');
diff --git a/pandora_console/godmode/alerts/alert_list.builder.php b/pandora_console/godmode/alerts/alert_list.builder.php
index a275bf955c..02a7bec4fa 100644
--- a/pandora_console/godmode/alerts/alert_list.builder.php
+++ b/pandora_console/godmode/alerts/alert_list.builder.php
@@ -49,7 +49,7 @@ if (! $id_agente) {
 	$src_code = html_print_image('images/lightning.png', true, false, true);
 	$table->data['agent'][1] = html_print_input_text_extended ('id_agent', '', 'text_id_agent', '', 30, 100, false, '',
 	array('style' => 'background: url(' . $src_code . ') no-repeat right;'), true)
-	. '<a href="#" class="tip">&nbsp;<span>' . __("Type at least two characters to search") . '</span></a>';
+	. ui_print_help_tip(__('Type at least two characters to search'), true);
 }
 
 $table->data[0][0] = __('Module');
diff --git a/pandora_console/godmode/alerts/alert_list.list.php b/pandora_console/godmode/alerts/alert_list.list.php
index 9b683889d6..cc21199ad6 100644
--- a/pandora_console/godmode/alerts/alert_list.list.php
+++ b/pandora_console/godmode/alerts/alert_list.list.php
@@ -61,7 +61,7 @@ $form_filter .= "<td>".__('Agents')."</td><td>";
 $src_code = html_print_image('images/lightning.png', true, false, true);
 $form_filter .= html_print_input_text_extended ('agent_name', $agentName, 'text-agent_name', '', 12, 100, false, '',
 array('style' => 'background: url(' . $src_code . ') no-repeat right;'), true);
-$form_filter .= '<a href="#" class="tip">&nbsp;<span>' . __("Type at least two characters to search") . '</span></a>';
+$form_filter .=  ui_print_help_tip(__('Type at least two characters to search'), true); //'<a href="#" class="tip">&nbsp;<span>' . __("Type at least two characters to search") . '</span></a>';
 $form_filter .= "</td>\n";
 
 
diff --git a/pandora_console/godmode/alerts/alert_templates.php b/pandora_console/godmode/alerts/alert_templates.php
index b125663008..1c699432dc 100644
--- a/pandora_console/godmode/alerts/alert_templates.php
+++ b/pandora_console/godmode/alerts/alert_templates.php
@@ -114,7 +114,7 @@ $delete_template = (bool) get_parameter ('delete_template');
 // This prevents to duplicate the header in case delete_templete action is performed
 if (!$delete_template) 
 // Header
-ui_print_page_header (__('Alerts')." &raquo; ". __('Alert templates'), "images/god2.png", false, "", true);
+ui_print_page_header (__('Alerts')." &raquo; ". __('Alert templates'), "images/god2.png", false, "alert_template", true);
 
 if ($update_template) {
 	$id = (int) get_parameter ('id');
diff --git a/pandora_console/godmode/modules/manage_network_templates.php b/pandora_console/godmode/modules/manage_network_templates.php
index 33fbf6fed8..7786a84567 100644
--- a/pandora_console/godmode/modules/manage_network_templates.php
+++ b/pandora_console/godmode/modules/manage_network_templates.php
@@ -27,7 +27,7 @@ if (! check_acl ($config['id_user'], 0, "PM")) {
 }
 
 // Header
-ui_print_page_header (__('Module management')." &raquo; ".__('Module template management'), "", false, "", true);
+ui_print_page_header (__('Module management')." &raquo; ".__('Module template management'), "", false, "template_tab", true);
 
 
 require_once ('include/functions_network_profiles.php');
diff --git a/pandora_console/godmode/reporting/graph_builder.php b/pandora_console/godmode/reporting/graph_builder.php
index be32641653..068324be7b 100644
--- a/pandora_console/godmode/reporting/graph_builder.php
+++ b/pandora_console/godmode/reporting/graph_builder.php
@@ -176,7 +176,19 @@ if (isset($name))
 	$head .= " - ".$name;
 
 // Header
-ui_print_page_header ($head, "", false, "", true, $buttons);
+$tab = get_parameter("tab", "");
+switch ($tab){
+	case "main": 
+		ui_print_page_header ($head, "", false, "graph_builder", true, $buttons);
+		break;
+	case "graph_editor":
+		ui_print_page_header ($head, "", false, "graph_editor", true, $buttons);
+                break;
+	case "preview":
+		ui_print_page_header ($head, "", false, "graph_view", true, $buttons);
+                break;
+}
+
 
 if($add_graph)
 	ui_print_result_message($id_graph, __('Graph stored successfully'), __('There was a problem storing Graph'));
diff --git a/pandora_console/godmode/snmpconsole/snmp_alert.php b/pandora_console/godmode/snmpconsole/snmp_alert.php
index c101297493..400e2587b7 100644
--- a/pandora_console/godmode/snmpconsole/snmp_alert.php
+++ b/pandora_console/godmode/snmpconsole/snmp_alert.php
@@ -27,11 +27,11 @@ if (! check_acl ($config['id_user'], 0, "LW")) {
 // =============
 
 if (isset ($_GET["update_alert"]) && $_GET["update_alert"] == "-1") {
-	ui_print_page_header (__('SNMP Console')." &raquo; ".__('Create alert'), "images/computer_error.png", false, "", true);
+	ui_print_page_header (__('SNMP Console')." &raquo; ".__('Create alert'), "images/computer_error.png", false, "snmp_alert", true);
 } else if (isset ($_GET["update_alert"]) && $_GET["update_alert"] != "-1") {
-	ui_print_page_header (__('SNMP Console')." &raquo; ".__('Update alert'), "images/computer_error.png", false, "", true);
+	ui_print_page_header (__('SNMP Console')." &raquo; ".__('Update alert'), "images/computer_error.png", false, "snmp_alert", true);
 } else if (isset ($_GET["submit"])) {
-	ui_print_page_header (__('SNMP Console')." &raquo; ".__('Update alert'), "images/computer_error.png", false, "", true);
+	ui_print_page_header (__('SNMP Console')." &raquo; ".__('Update alert'), "images/computer_error.png", false, "snmp_alert", true);
 	$id_as = (int) get_parameter_get ("submit", -1);
 	$source_ip = (string) get_parameter_post ("source_ip");
 	$alert_type = (int) get_parameter_post ("alert_type"); //Event, e-mail
@@ -92,7 +92,7 @@ if (isset ($_GET["update_alert"]) && $_GET["update_alert"] == "-1") {
 	}
 
 } else {
-	ui_print_page_header (__('SNMP Console')." &raquo; ".__('Alert overview'), "images/computer_error.png", false, "", true);
+	ui_print_page_header (__('SNMP Console')." &raquo; ".__('Alert overview'), "images/computer_error.png", false, "snmp_alert", true);
 }
 
 // From variable init
diff --git a/pandora_console/godmode/users/profile_list.php b/pandora_console/godmode/users/profile_list.php
index 6019989e32..4c0ffaabcf 100644
--- a/pandora_console/godmode/users/profile_list.php
+++ b/pandora_console/godmode/users/profile_list.php
@@ -45,7 +45,7 @@ $buttons[$tab]['active'] = true;
 
 
 // Header
-ui_print_page_header (__('User management').' &raquo; '.__('Profiles defined in Pandora'), "images/god3.png", false, "", true, $buttons);
+ui_print_page_header (__('User management').' &raquo; '.__('Profiles defined in Pandora'), "images/god3.png", false, "profile", true, $buttons);
 
 $delete_profile = (bool) get_parameter ('delete_profile');
 $create_profile = (bool) get_parameter ('create_profile');
diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php
index 14daa6ea4b..0938171611 100644
--- a/pandora_console/include/functions_html.php
+++ b/pandora_console/include/functions_html.php
@@ -1434,7 +1434,7 @@ function html_print_autocomplete_modules($name = 'module', $default = '', $id_ag
 	
 	html_print_input_text_extended ($name, $default, 'text-' . $name, '', 30, 100, false, '',
 		array('style' => 'background: url(images/lightning_blue.png) no-repeat right;'));
-	echo '<a href="#" class="tip">&nbsp;<span>' . __("Type at least two characters to search the module.") . '</span></a>';
+	ui_print_help_tip(__('Type at least two characters to search the module.'), false);
 
 	$output = ob_get_clean();
 	
diff --git a/pandora_console/include/help/en/help_alert_action.php b/pandora_console/include/help/en/help_alert_action.php
new file mode 100644
index 0000000000..e9ae10eaa1
--- /dev/null
+++ b/pandora_console/include/help/en/help_alert_action.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en/
+*/
+?>
+
+<h1>Action alert</h1>
+
+<p>Alert action is the component of the alert that keep relation between command and fields: Field 1, Field 2 and Field 3. These actions will be used in alert templates in order to associate a trigger with a specific action.</p>
diff --git a/pandora_console/include/help/en/help_alert_command.php b/pandora_console/include/help/en/help_alert_command.php
new file mode 100644
index 0000000000..252776b61b
--- /dev/null
+++ b/pandora_console/include/help/en/help_alert_command.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en
+*/
+?>
+
+<h1>Alert command</h1>
+
+<p>Pandora FMS's reaction to a value &#34;out of range&#34; can be of diverse kinds: record in a syslog, e-mail or SMS sending, or the execution of any script hosted in Pandora FMS's machine that can be processed.</p>
diff --git a/pandora_console/include/help/en/help_alert_compound.php b/pandora_console/include/help/en/help_alert_compound.php
new file mode 100644
index 0000000000..eab6c27c88
--- /dev/null
+++ b/pandora_console/include/help/en/help_alert_compound.php
@@ -0,0 +1,10 @@
+<?php
+/*
+* @package Include/help/en
+*/
+?>
+
+<h1>Alert compound</h1>
+
+<p>Allows to use more than one module to generate a Pandora FMS reaction. These modules could be from the same agent or from different ones.</p>
+
diff --git a/pandora_console/include/help/en/help_alert_template.php b/pandora_console/include/help/en/help_alert_template.php
new file mode 100644
index 0000000000..db4a350bf1
--- /dev/null
+++ b/pandora_console/include/help/en/help_alert_template.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/es/
+*/
+?>
+
+<h1>Alert template</h1>
+
+<p>Alert templates are like preset alerts that are useful to apply on agents and modules used to fire commands. This make more easy to deal with alerts.</p>
diff --git a/pandora_console/include/help/en/help_event_alert.php b/pandora_console/include/help/en/help_event_alert.php
new file mode 100644
index 0000000000..6794420a23
--- /dev/null
+++ b/pandora_console/include/help/en/help_event_alert.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en
+*/
+?>
+
+<h1>Event alert</h1>
+
+<p>Allows to trigger a Pandora FMS reaction that match with an event. Event alerts are composed by various rules and logical operators.</p>
diff --git a/pandora_console/include/help/en/help_external_alert.php b/pandora_console/include/help/en/help_external_alert.php
new file mode 100644
index 0000000000..57a7e633d0
--- /dev/null
+++ b/pandora_console/include/help/en/help_external_alert.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en/
+*/
+?>
+
+<h1>External alert</h1>
+
+<p>External Alerts are similar to Alerts the difference is they allow you to link alerts with agent modules which are not in the main list of policy modules. It is very useful to asign alert to some agent modules and not to all of them.</p>
diff --git a/pandora_console/include/help/en/help_graph_builder.php b/pandora_console/include/help/en/help_graph_builder.php
new file mode 100644
index 0000000000..6e7e9606c1
--- /dev/null
+++ b/pandora_console/include/help/en/help_graph_builder.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en/
+*/
+?>
+
+<h1>Graph builder</h1>
+
+<p>Allows to create new graphs and edit older ones. In this view you can set general parameters of graphs.</p>
diff --git a/pandora_console/include/help/en/help_graph_editor.php b/pandora_console/include/help/en/help_graph_editor.php
new file mode 100644
index 0000000000..79c9055cfc
--- /dev/null
+++ b/pandora_console/include/help/en/help_graph_editor.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en/
+*/
+?>
+
+<h1>Item editor</h1>
+
+<p>This view allows to add modules to graphs. You can add more than one module in order to create combined graphs. Combined Graphs allow to the user to define graphs with a variable size, that have values of different modules that own to one or more agents. In this way you can visually compare information that comes from several sources.</p>
diff --git a/pandora_console/include/help/en/help_graph_view.php b/pandora_console/include/help/en/help_graph_view.php
new file mode 100644
index 0000000000..f5191cb214
--- /dev/null
+++ b/pandora_console/include/help/en/help_graph_view.php
@@ -0,0 +1,10 @@
+<?php
+/*
+* @package Include/help/en/
+*/
+?>
+
+<h1>Graph viewer</h1>
+
+<p>In this view graphs are showed. It is possible to filter by data, period and zoom factor.</p>
+
diff --git a/pandora_console/include/help/en/help_module_linking.php b/pandora_console/include/help/en/help_module_linking.php
new file mode 100644
index 0000000000..1cb3356cee
--- /dev/null
+++ b/pandora_console/include/help/en/help_module_linking.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en/
+*/
+?>
+
+<h1>Linking modules</h1>
+
+<p>Unlinked modules are modules that are not modified by the policy in the future. This is really useful because allow to define individual exceptions to the policy behaviour. You don't need to remove an agent if you want to change the behaviour of one module (for example, min_threshold), just unlink from the policy.</p>
diff --git a/pandora_console/include/help/en/help_policy_agent.php b/pandora_console/include/help/en/help_policy_agent.php
new file mode 100644
index 0000000000..90ea1c8809
--- /dev/null
+++ b/pandora_console/include/help/en/help_policy_agent.php
@@ -0,0 +1,16 @@
+<?php
+/*
+* @package Include/help/en/
+*/
+?>
+
+<h1>Policy agent</h1>
+
+<p>In this view you can assign agents to a policy. This can be done in two ways:</p>
+<ul>
+<li type="circle">Massive actions</li>
+<li type="circle">Unity actions</li>
+</ul>
+<p>It is possible to select multiple agentes in order to add them to the policy. Also it is possible to delete them moving them to the left column.</p>
+<p>In the inferior part of this view it is showed the complete list of agents associated to the policy and agents pending to delete.</p>
+
diff --git a/pandora_console/include/help/en/help_policy_queue.php b/pandora_console/include/help/en/help_policy_queue.php
new file mode 100644
index 0000000000..3e4bc4763c
--- /dev/null
+++ b/pandora_console/include/help/en/help_policy_queue.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @packafe Include/help/en/
+*/
+?>
+
+<h1>Queue</h1>
+
+<p>All changes done to policies will be shown in this view, and there you could introduce the policy to the process queue, where it will wait its turn to get applied.</p>
diff --git a/pandora_console/include/help/en/help_profile.php b/pandora_console/include/help/en/help_profile.php
new file mode 100644
index 0000000000..1d0134fe7a
--- /dev/null
+++ b/pandora_console/include/help/en/help_profile.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en/
+*/
+?>
+
+<h1>Profile</h1>
+
+<p>Pandora FMS is a Web management tool that allows multiple users to work with different permissions in multiple defined agent groups. The permissions an user can have are defined in profiles.</p>
diff --git a/pandora_console/include/help/en/help_reporting_global_tab.php b/pandora_console/include/help/en/help_reporting_global_tab.php
new file mode 100644
index 0000000000..8a426af71d
--- /dev/null
+++ b/pandora_console/include/help/en/help_reporting_global_tab.php
@@ -0,0 +1,14 @@
+<?php
+/*
+*  @package Include/help/en
+*/
+?>
+
+<h1>Global</h1>
+
+<p>This view allows to create reports with global information. You can create these reports:</p>
+<ul>
+<li type="circle">Exception: This shows values of several modules that fulfill a logical operator.</li>
+<li type="circle">General: Show values of several modules ordered (ascending, descending, by agent name) or/and grouped by agent.</li>
+<li type="circle">Top n: Show a report of N elements of several modules ordered, displaying max, min or avg values on the report bottom.</li>
+</ul>
diff --git a/pandora_console/include/help/en/help_reporting_item_editor_tab.php b/pandora_console/include/help/en/help_reporting_item_editor_tab.php
new file mode 100644
index 0000000000..f7e3a53171
--- /dev/null
+++ b/pandora_console/include/help/en/help_reporting_item_editor_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en
+*/
+?>
+
+<h1>Report item editor</h1>
+
+<p>Item Editor tab is more complex than the others, because from it, you'll be able to create the form items or to edit them. Besides, the form is dynamic depending on the kind of item to create. In the edition, all the fields (expept the kind) can be edited. If you need to change the kind, the way to do this is to eliminate the current one and create it again with the same configurations.</p>
diff --git a/pandora_console/include/help/en/help_reporting_list_items_tab.php b/pandora_console/include/help/en/help_reporting_list_items_tab.php
new file mode 100644
index 0000000000..7a3c6e7294
--- /dev/null
+++ b/pandora_console/include/help/en/help_reporting_list_items_tab.php
@@ -0,0 +1,16 @@
+<?php
+/*
+* @package Include/help/en
+*/
+?>
+
+<h1>Report list items</h1>
+
+<p>With this tab you'll get a global visualization of all items that make up the report. The items in the list will be shown in the order that they'll have in the report. From this tab it's possible:</p>
+
+<ul>
+<li type="circle">To modify the item (by doing click on the adjustable spanner).</li>
+<li type="circle">To modify the order in an automatic way in the header cells with the white arrows, classifying them by alphabetically element kind or by agent name.</li>
+<li type="circle">To modify the order manually through the green arrows on the left.</li>
+<li type="circle">To eliminate the item clicking on the red cross.</li>
+</ul>
diff --git a/pandora_console/include/help/en/help_reporting_preview_tab.php b/pandora_console/include/help/en/help_reporting_preview_tab.php
new file mode 100644
index 0000000000..ff5895ddd9
--- /dev/null
+++ b/pandora_console/include/help/en/help_reporting_preview_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en/
+*/
+?>
+
+<h1>Preview</h1>
+
+<p>This tab shows the report such as it is when it's generated in HTML format, to could see the results in an easy way. It will show the report as you see the report in the real operation/view report option.</p>
diff --git a/pandora_console/include/help/en/help_reporting_wizard_sla_tab.php b/pandora_console/include/help/en/help_reporting_wizard_sla_tab.php
new file mode 100644
index 0000000000..9264792823
--- /dev/null
+++ b/pandora_console/include/help/en/help_reporting_wizard_sla_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en
+*/
+?>
+
+<h1>SLA Wizard</h1>
+
+<p>Allows to measure the service level (Service Level Agreement) of any monitor of Pandora FMS. In this wizard you can create a SLA report of several agents.</p>
diff --git a/pandora_console/include/help/en/help_reporting_wizard_tab.php b/pandora_console/include/help/en/help_reporting_wizard_tab.php
new file mode 100644
index 0000000000..a3908e30b1
--- /dev/null
+++ b/pandora_console/include/help/en/help_reporting_wizard_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/es
+*/
+?>
+
+<h1>Wizard</h1>
+
+<p>Here, there is an small questionnaire to create several elements of static imagen kind at the same time in the visual console with only two clicks.</p>
diff --git a/pandora_console/include/help/en/help_snmp_alert.php b/pandora_console/include/help/en/help_snmp_alert.php
new file mode 100644
index 0000000000..f315f5697c
--- /dev/null
+++ b/pandora_console/include/help/en/help_snmp_alert.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en
+*/
+?>
+
+<h1>SNMP alert</h1>
+
+<p>It's possible to associate an alert to a trap, so Pandora FMS warns us on arrival of a specific trap. SNMP traps have got nothing to do with the rest of the system alerts, even if both reuse the actions' system.</p>
diff --git a/pandora_console/include/help/en/help_snmp_alert_custom.php b/pandora_console/include/help/en/help_snmp_alert_custom.php
new file mode 100644
index 0000000000..5856fe0355
--- /dev/null
+++ b/pandora_console/include/help/en/help_snmp_alert_custom.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include /help/en
+*/
+?>
+
+<h1>Custom data</h1>
+
+<p>This search in the trap &#34;Value&#34; fields, and also in the fields &#34;Custom OID&#34; and &#34;Custom Value&#34;, that is, in the rest of the TRAP fields.</p>
diff --git a/pandora_console/include/help/en/help_visual_console_editor_data_tab.php b/pandora_console/include/help/en/help_visual_console_editor_data_tab.php
new file mode 100644
index 0000000000..86428c16db
--- /dev/null
+++ b/pandora_console/include/help/en/help_visual_console_editor_data_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en/
+*/
+?>
+
+<h1>Editor</h1>
+
+<p>In this one, you can edit and create the visual console basic data. It will be the only one visible for a new map until you save it. The essential values that it has are: visual console name, the group for the ACL management, and the background image.</p>
diff --git a/pandora_console/include/help/en/help_visual_console_editor_editor_tab.php b/pandora_console/include/help/en/help_visual_console_editor_editor_tab.php
new file mode 100644
index 0000000000..63108f899d
--- /dev/null
+++ b/pandora_console/include/help/en/help_visual_console_editor_editor_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en
+*/
+?>
+
+<h1>Editor</h1>
+
+<p>This tab has most of the part of the functionality of the visual console editor, because is where you could create the elements, edit and place them. It is a dynamic page, so it will be necessary that your browser support correctly the javascript languaje. As you can see in the screen shot, the screen is divided in two areas that are well defined: the button box, the work area (where you will "draw" the visual console) and the option palette ( that is not visible in this screen shot).</p>
diff --git a/pandora_console/include/help/en/help_visual_console_editor_list_elements_tab.php b/pandora_console/include/help/en/help_visual_console_editor_list_elements_tab.php
new file mode 100644
index 0000000000..9a0e59ebae
--- /dev/null
+++ b/pandora_console/include/help/en/help_visual_console_editor_list_elements_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en/
+*/
+?>
+
+<h1>List of elements</h1>
+
+<p>This tab gives a questionnaire tabulated in files of the elements that the visual console that you are editing has. It is a quick way of editing the different elements, besides being a useful tool for the users that need to adjust certain values of the elements.</p>
diff --git a/pandora_console/include/help/en/help_visual_console_editor_preview_tab.php b/pandora_console/include/help/en/help_visual_console_editor_preview_tab.php
new file mode 100644
index 0000000000..790bc1824a
--- /dev/null
+++ b/pandora_console/include/help/en/help_visual_console_editor_preview_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en
+*/
+?>
+
+<h1>Preview</h1>
+
+<p>This tab is useful to see the result of your work in a quick way, avoiding surfing between the Pandora Console menus. The visual console view is an static view, so, if the state of the elements contained there, they will not be drawing again as it happens with the visual console view that hangs on the Visual Console menu.</p>
diff --git a/pandora_console/include/help/en/help_visual_console_editor_wizard_tab.php b/pandora_console/include/help/en/help_visual_console_editor_wizard_tab.php
new file mode 100644
index 0000000000..d526949a1f
--- /dev/null
+++ b/pandora_console/include/help/en/help_visual_console_editor_wizard_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/en
+*/
+?>
+
+<h1>Wizard</h1>
+
+<p>Here, there is an small questionnaire to create several elements of static imagen kind at the same time in the visual console with only two clicks.</p>
diff --git a/pandora_console/include/help/es/help_alert_action.php b/pandora_console/include/help/es/help_alert_action.php
new file mode 100644
index 0000000000..db673d076b
--- /dev/null
+++ b/pandora_console/include/help/es/help_alert_action.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/es/
+*/
+?>
+
+<h1>Acciones sobre alertas</h1>
+
+<p>Las acciones sobre alertas son un componente de la alerta que mantiene la relacion entre un comando y los campos Field 1, Field 2 y Field 3. Estas acciones seran usadas en los templates que asocian una condicion sobre una accion completa.</p>
diff --git a/pandora_console/include/help/es/help_alert_command.php b/pandora_console/include/help/es/help_alert_command.php
new file mode 100644
index 0000000000..57b1aad847
--- /dev/null
+++ b/pandora_console/include/help/es/help_alert_command.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/es
+*/
+?>
+
+<h1>Comando de alerta</h1>
+
+<p>La reaccion de Pandora FMS para un valor &#34;fuera de rango&#34; puede ser de diversos tipos: escribir en un syslog, envio de una mail o SMS, o bien la ejecucion de cualquier script que este alojado en la maquina de Pandora FMS y pueda ser procesado.</p>
diff --git a/pandora_console/include/help/es/help_alert_compound.php b/pandora_console/include/help/es/help_alert_compound.php
new file mode 100644
index 0000000000..1f46531855
--- /dev/null
+++ b/pandora_console/include/help/es/help_alert_compound.php
@@ -0,0 +1,10 @@
+<?php
+/*
+* @package Include/help/es
+*/
+?>
+
+<h1>Alerta correlacion</h1>
+
+<p>Permite usar mas de un modulo para generar una reaccion en Pandora FMS. Dichos modulos pueden pertenecer a un mismo agente o a varios.</p>
+
diff --git a/pandora_console/include/help/es/help_alert_template.php b/pandora_console/include/help/es/help_alert_template.php
new file mode 100644
index 0000000000..4cdb6b523b
--- /dev/null
+++ b/pandora_console/include/help/es/help_alert_template.php
@@ -0,0 +1,10 @@
+<?php
+/*
+* @package Include/help/en/
+*/
+?>
+
+<h1>Plantilla de alerta</h1>
+
+<p>Las plantillas de alertas son como alertas predefinidas que son utiles para aplicar a agentes y modulos usados para hacer saltar comandos. Esto hace mas facil trabajar con las alertas.</p>
+
diff --git a/pandora_console/include/help/es/help_event_alert.php b/pandora_console/include/help/es/help_event_alert.php
new file mode 100644
index 0000000000..43bcd39f80
--- /dev/null
+++ b/pandora_console/include/help/es/help_event_alert.php
@@ -0,0 +1,10 @@
+<?php
+/*
+* @package Include/help/es
+*/
+?>
+
+<h1>Alerta de evento</h1>
+
+<p>Permite disparar una reaccion de Pandora FMS que coincide con un evento. Las alertas de evento estan compuestas por varias reglas y operadores logicos.</p> 
+
diff --git a/pandora_console/include/help/es/help_external_alert.php b/pandora_console/include/help/es/help_external_alert.php
new file mode 100644
index 0000000000..33c4f55437
--- /dev/null
+++ b/pandora_console/include/help/es/help_external_alert.php
@@ -0,0 +1,10 @@
+<?php
+/*
+* @package Include/help/es/
+*/
+?>
+
+<h1>Alertas externas</h1>
+
+<p>Las Alertas Externas son similares a las Alertas, la diferencia es que estas permiten enlazar alertas con módulos de agentes que no están en la lista principal de módulos de la política. Es muy útil para asignar alertas sólo a algunos módulos de agente y no a todos ellos.</p> 
+
diff --git a/pandora_console/include/help/es/help_graph_builder.php b/pandora_console/include/help/es/help_graph_builder.php
new file mode 100644
index 0000000000..02c0b31154
--- /dev/null
+++ b/pandora_console/include/help/es/help_graph_builder.php
@@ -0,0 +1,10 @@
+<?php
+/*
+* @package Include/help/es/
+*/
+?>
+
+<h1>Editor graficos</h1>
+
+<p>Permite crear nuevas graficas y editar los antiguos. En esta vista se pueden configurar los parametros generales de las graficas.</p>
+
diff --git a/pandora_console/include/help/es/help_graph_editor.php b/pandora_console/include/help/es/help_graph_editor.php
new file mode 100644
index 0000000000..73c4595504
--- /dev/null
+++ b/pandora_console/include/help/es/help_graph_editor.php
@@ -0,0 +1,10 @@
+<?php
+/*
+* @package Include/help/es/
+*/
+?>
+
+<h1>Editor de items</h1>
+
+<p>Esta vista permite a&ntile;ade modulos a graficos. Puedes a&ntilde;adir mas de un modulo para crear graficos combinados. Los graficos combinados permiten definir el peso de las variables, tendran valores de diferentes modulos que seran de uno a mas agentes. De esta forma se puede comparar visualmente informacion que venga de diferentes fuentes.</p>
+
diff --git a/pandora_console/include/help/es/help_graph_view.php b/pandora_console/include/help/es/help_graph_view.php
new file mode 100644
index 0000000000..731ef82f5c
--- /dev/null
+++ b/pandora_console/include/help/es/help_graph_view.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/es/
+*/
+?>
+
+<h1>Vista de graficas</h1>
+
+<p>En esta vista se muestra la visualizacion de graficas. Se puede filtrar por fecha, periodo y el factor de zoom.</p>
diff --git a/pandora_console/include/help/es/help_module_linking.php b/pandora_console/include/help/es/help_module_linking.php
new file mode 100644
index 0000000000..9ecfff1275
--- /dev/null
+++ b/pandora_console/include/help/es/help_module_linking.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/es/
+*/
+?>
+
+<h1>Modulos linkados</h1>
+
+<p>Los modulos no enlazados son modulos que no seran modificados por las politicas en un futuro. Esto es muy util porque permite definir excepciones al comportamiento de la politica. No se necesita eliminar un agente para cambiar el comportamiento de un modulo (por ejemplo, min_threshold), solo no enlazarlo a la politica.</p>
diff --git a/pandora_console/include/help/es/help_policy_agent.php b/pandora_console/include/help/es/help_policy_agent.php
new file mode 100644
index 0000000000..1c411de6a8
--- /dev/null
+++ b/pandora_console/include/help/es/help_policy_agent.php
@@ -0,0 +1,15 @@
+<?php
+/*
+* @package Include/help/es/
+*/
+?>
+
+<h1>Agentes de la politica</h1>
+
+<p>En esta vista se pueden asignar/borrar agentes a la politica. Esto se puede hacer de dos formas:</p>
+<ul>
+<li>Acciones masivas</li>
+<li>Acciones unitarias</li>
+</ul>
+<p>Se puede seleccionar multiples agentes para agregarlos en la politica. Tambien se puede eliminarlos pasandolos a la columna de la izquierda.</p>
+<p>En la parte inferior de esta vista se muestra la lista de agentes asociados a la politica y los que estan pendientes de borrado.</p>
diff --git a/pandora_console/include/help/es/help_policy_queue.php b/pandora_console/include/help/es/help_policy_queue.php
new file mode 100644
index 0000000000..168af443e8
--- /dev/null
+++ b/pandora_console/include/help/es/help_policy_queue.php
@@ -0,0 +1,10 @@
+<?php
+/*
+* @packafe Include/help/es/
+*/
+?>
+
+<h1>Cola</h1>
+
+<p>Las diferentes acciones que se pueden realizar no se aplicarán hasta que la política se aplique. Si agregamos a la política un agente podemos crear diversos módulos y alertas, por ejemplo, pero hasta que no apliquemos la política no se harán efectivos.</p>
+~                     
diff --git a/pandora_console/include/help/es/help_profile.php b/pandora_console/include/help/es/help_profile.php
new file mode 100644
index 0000000000..83de6daf7d
--- /dev/null
+++ b/pandora_console/include/help/es/help_profile.php
@@ -0,0 +1,10 @@
+<?php
+/*
+* @package Include/help/es/
+*/
+?>
+
+<h1>Perfil</h1>
+
+<p>Pandora FMS es una herramienta de gestión Web que permite que trabajen múltiples usuarios con diferentes permisos en múltiples grupos de agentes que hay definidos. En los perfiles se definen los permisos que puede tener un usuario.</p>
+
diff --git a/pandora_console/include/help/es/help_reporting_global_tab.php b/pandora_console/include/help/es/help_reporting_global_tab.php
new file mode 100644
index 0000000000..aa8f9728d3
--- /dev/null
+++ b/pandora_console/include/help/es/help_reporting_global_tab.php
@@ -0,0 +1,15 @@
+<?php
+/*
+*  @package Include/help/es
+*/
+?>
+
+<h1>Global</h1>
+
+<p>Esta vista muestra informes con informacion global. Puede crear estos informes:</p>
+<ul>
+<li type="circle">Exception: Esto muestra valores de varios modulos que satisfacen una operacion logica.</li>
+<li type="circle">General: Muestra valores de varios modulos ordenados (ascendentemente, descendentemente, por nombre de agente) y/o agrupados por nombre.</li>
+<li type="circle">Top n: Muestra un informe de N elementos de varios modulos ordenados, ense&ntilde;ando valores max, min o avg en la parte baja del informe.</li>
+</ul>
+
diff --git a/pandora_console/include/help/es/help_reporting_item_editor_tab.php b/pandora_console/include/help/es/help_reporting_item_editor_tab.php
new file mode 100644
index 0000000000..6bbe12a57f
--- /dev/null
+++ b/pandora_console/include/help/es/help_reporting_item_editor_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/es
+*/
+?>
+
+<h1>Editor de elementos</h1>
+
+<p>La pestaña Item editor, es la mas compleja del resto, porque desde esta se podra crear los items del formulario o editarlos. Ademas el formulario es dinamico según el tipo de item a crear. En la edicion se puede editar todos los campos excepto el tipo, si necesitas cambiarle el tipo, la forma de hacerlo es eliminando el actual y crearlo de nuevo con las mismas configuraciones.</p>
diff --git a/pandora_console/include/help/es/help_reporting_list_items_tab.php b/pandora_console/include/help/es/help_reporting_list_items_tab.php
new file mode 100644
index 0000000000..76c417b2ad
--- /dev/null
+++ b/pandora_console/include/help/es/help_reporting_list_items_tab.php
@@ -0,0 +1,17 @@
+<?php
+/*
+* @package Include/help/es
+*/
+?>
+
+<h1>Report list items</h1>
+
+<p>En esta pesta&ntilde;a tendras una vision global de todos los items que componen el informe. Los items en la lista apareceran con el orden en que se mostraran en informe. Desde esta pestaña se puede:</p>
+
+<ul>
+<li type="circle">modificar el item (haciendo click en la llave inglesa).</li>
+<li type="circle">modificar el orden por medio de las flechas verdes de la izquierda de forma manual.</li>
+<li type="circle">modificar el orden de forma automatica en las celdas de la cabera con las flechas blancas, ordenando alfabeticamente por tipo de elemento, alfabeticamente por nombre del agente o alfabeticamente por el nombre del agente.</li>
+<li type="circle">eliminar el item haciendo click en el aspa roja.</li>
+</ul>
+~           
diff --git a/pandora_console/include/help/es/help_reporting_preview_tab.php b/pandora_console/include/help/es/help_reporting_preview_tab.php
new file mode 100644
index 0000000000..f54323351c
--- /dev/null
+++ b/pandora_console/include/help/es/help_reporting_preview_tab.php
@@ -0,0 +1,10 @@
+<?php
+/*      
+* @package Include/help/es/
+*/
+?>
+
+<h1>Preview</h1>
+
+<p>Esta pesta&ntilde;a muestra el informe tal como se cuando se genera en formato Html, para poder ir viendo los resultados de una forma cómoda. El informe se ve tal cual lo vería un usuario en la seccion de ver informe. </p>
+
diff --git a/pandora_console/include/help/es/help_reporting_wizard_sla_tab.php b/pandora_console/include/help/es/help_reporting_wizard_sla_tab.php
new file mode 100644
index 0000000000..96a0c586da
--- /dev/null
+++ b/pandora_console/include/help/es/help_reporting_wizard_sla_tab.php
@@ -0,0 +1,10 @@
+<?php
+/*
+* @package Include/help/es
+*/
+?>
+
+<h1>Wizard SLA</h1>
+
+<p>Permite medir el nivel del servicio (Service Level Agreement) de todos los moduloes de Pandora FMS. En es este wizard puedes crear un informe SLA de muchas agentes.</p>
+
diff --git a/pandora_console/include/help/es/help_reporting_wizard_tab.php b/pandora_console/include/help/es/help_reporting_wizard_tab.php
new file mode 100644
index 0000000000..b5a07a02e9
--- /dev/null
+++ b/pandora_console/include/help/es/help_reporting_wizard_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/es
+*/
+?>
+
+<h1>Wizard</h1>
+
+<p>Esta pestaña pertenece a la versión Enterprise de Pandora, esta pestaña nos permite realizar de una forma automática con unos pocos click, y de una vez multitud de items para un informe, con configuraciones comunes pero aplicadas a multitud de agentes y o módulos.</p>
diff --git a/pandora_console/include/help/es/help_snmp_alert.php b/pandora_console/include/help/es/help_snmp_alert.php
new file mode 100644
index 0000000000..b545f0ad3d
--- /dev/null
+++ b/pandora_console/include/help/es/help_snmp_alert.php
@@ -0,0 +1,10 @@
+<?php
+/*
+* @package Include/help/es
+*/
+?>
+
+<h1>Alertas SNMP</h1>
+
+<p>Es posible asociar una alerta a un trap, asi Pandora FMS puede avisarnos de la llegada de un trap expecifico. Los traps SNMP no tienen relacion con el resto de sistema de alertas, aunque reulticen el sistema de alertas.</p>
+
diff --git a/pandora_console/include/help/es/help_snmp_alert_custom.php b/pandora_console/include/help/es/help_snmp_alert_custom.php
new file mode 100644
index 0000000000..10bb4cea2a
--- /dev/null
+++ b/pandora_console/include/help/es/help_snmp_alert_custom.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include /help/en
+*/
+?>
+
+<h1>Custom data</h1>
+
+<p>Campos personalizados enviados en el trap. Pueden ser datos muy complejos, que tengan una lógica específica en función del dispositivo que envía el trap. Un trap puede enviar varios datos en este campo.</p>
diff --git a/pandora_console/include/help/es/help_visual_console_editor_data_tab.php b/pandora_console/include/help/es/help_visual_console_editor_data_tab.php
new file mode 100644
index 0000000000..9c857a7c94
--- /dev/null
+++ b/pandora_console/include/help/es/help_visual_console_editor_data_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/es/
+*/
+?>
+
+<h1>Editor</h1>
+
+<p>En esta se pueden editar y crear los datos basicos de la consola visual. Sera la unica visible para un mapa nuevo hasta que la guardes. Los valores basicos que contiene son: nombre de la consola visual, el grupo para la gestion de ACL, y la imagen background.</p>
diff --git a/pandora_console/include/help/es/help_visual_console_editor_editor_tab.php b/pandora_console/include/help/es/help_visual_console_editor_editor_tab.php
new file mode 100644
index 0000000000..544e2d4287
--- /dev/null
+++ b/pandora_console/include/help/es/help_visual_console_editor_editor_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/es
+*/
+?>
+
+<h1>Editor</h1>
+
+<p>Esta pestaña contiene la mayor parte de la funcionalidad del editor de la consola visual, porque es donde podrás crear los elementos, editarlos y posicionarlos. Es una página dinámica, por lo que es necesario que tu navegador soporte correctamente el lenguaje javascript. Como se puede ver en la captura de pantalla, la pantalla se divide en dos áreas claramente diferenciadas: la caja de botones, el área de trabajo (donde "pintarás" la consola visual) y la paleta de opciones (no visible en esta captura de pantalla).</p>
diff --git a/pandora_console/include/help/es/help_visual_console_editor_list_elements_tab.php b/pandora_console/include/help/es/help_visual_console_editor_list_elements_tab.php
new file mode 100644
index 0000000000..76e7d0f9cd
--- /dev/null
+++ b/pandora_console/include/help/es/help_visual_console_editor_list_elements_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/es/
+*/
+?>
+
+<h1>List of elements</h1>
+
+<p>Esta pestaña proporciona un formulario tabulado en filas de los elementos que contiene la consola visual que está editando. Es una forma rápida de editar los distintos elementos, además de ser una útil herramienta para los usuarios que necesitan afinar en ciertos valores de los elementos.</p>
diff --git a/pandora_console/include/help/es/help_visual_console_editor_preview_tab.php b/pandora_console/include/help/es/help_visual_console_editor_preview_tab.php
new file mode 100644
index 0000000000..3cf27b539e
--- /dev/null
+++ b/pandora_console/include/help/es/help_visual_console_editor_preview_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/es
+*/
+?>
+
+<h1>Previsualizacion</h1>
+
+<p>La pestaña preview sirve para ver el resultado de tu trabajo de forma rápida, evitando navegar entre los menús de Pandora Console. La vista de la consola visual es una vista estática, por lo que si cambia el estado de los elementos contenidos, estos no se redibujarán como ocurre con la vista de la consola visual que cuelga del menú Visual Console.</p>
diff --git a/pandora_console/include/help/es/help_visual_console_editor_wizard_tab.php b/pandora_console/include/help/es/help_visual_console_editor_wizard_tab.php
new file mode 100644
index 0000000000..8101a9a4d2
--- /dev/null
+++ b/pandora_console/include/help/es/help_visual_console_editor_wizard_tab.php
@@ -0,0 +1,9 @@
+<?php
+/*
+* @package Include/help/es
+*/
+?>
+
+<h1>Wizard</h1>
+
+<p>La pestaña wizard contiene un pequeño formulario para crear de una vez multitud de elementos de tipo Imagen estática en la consola visual con sólo un par de clicks.</p>