Menu

Format bug on SubMap..

Help
2004-07-09
2012-09-18
  • Kelly Hamlin

    Kelly Hamlin - 2004-07-09

    If you select DHTML, or DHTML Big on a submap, the list just goes forever to the right. So if you have 75 interfaces your monitoring, you have to scroll ALOT to the right. If you set it to normal, or normal big, then it formats properly, and there is no scrolling involved.

    Just a heads up! :)

     
    • Javier Szyszlican

      Hi,

      I tried to reproduce it, and I can't..

      Which browser do you have?

      Can you get me the HTML source of the alarms frame ?

      Javier

       
    • Nobody/Anonymous

      It happens with both Internet Explorer and Mozilla FireFox.

      Let me make a new submap with less than 20 interfaces cause it would be a pain to edit it to remove certain info (from descriptions and whatnot) from the current map of 120 interfaces

       
    • Kelly Hamlin

      Kelly Hamlin - 2004-07-15

      Below is the source of the alarms frame.
      This is a submap created by me. It has 13 or so interfaces, and it only happens on the "DHTML" views.

      <SCRIPT>

      var shown_objects = new Array();

      function show_info(o,text) {
          oid = o.id;
         
          //hide all other boxes. already shown or not
          for (var i in shown_objects)
          if ((shown_objects[i]!=null) && (i!=oid)) {
         
              if (shown_objects[i]['state']==0)     //if it was not shown yet
              shown_objects[i] = null;    //just delete it, to avoid it to be shown
              else
              window.setTimeout ("real_hide_info('"+i+"');",2000); //hide it normally
          }
         
          if (!shown_objects[oid]) { //if not's already created
              shown_objects[oid] = Array();
              shown_objects[oid]['obj'] = o;
              shown_objects[oid]['state'] = 0;

              window.setTimeout ("real_show_info('"+text+"','"+oid+"');",1500); //delay real show
          }
      }

      function real_show_info(text,oid) {
          a = shown_objects[oid];
          if (!a) return 1; //if exists
         
          o = a['obj'];
          if (!o) return 2; //if its valid;
         
          if (shown_objects[oid]['state']!=0) return 3; //don't do it again

          shown_objects[oid]['state']=1;

          //save values for restore
          shown_objects[oid]['old_x'] = o.style.left;
          shown_objects[oid]['old_y'] = o.style.top;
          shown_objects[oid]['old_w'] = o.style.width;
          shown_objects[oid]['old_h'] = o.style.height;
          shown_objects[oid]['old_text'] = o.innerHTML;
          shown_objects[oid]['old_size'] = o.style.fontSize;
          shown_objects[oid]['old_border'] = o.style.borderStyle;

          //save current position values
          x = parseInt(o.style.left.replace("px",""));
          y = parseInt(o.style.top.replace("px",""));
          w = parseInt(o.style.width.replace("px",""));
          h = parseInt(o.style.height.replace("px",""));

          o.style.width = 'auto' ;
          o.style.height = 'auto' ;
          o.style.overflow = 'visible';
          o.style.zIndex = 1;

          o.innerHTML = text;
          o.style.fontSize = '24px';
          o.style.lineHeight = o.style.fontSize;

          o.style.borderStyle = 'solid';

          //re-center the box
          o.style.left = 0;
          o.style.top = 0;

          new_w = o.offsetWidth;
          new_h = o.offsetHeight;
         
          new_x = x + (w/2) - (o.offsetWidth/2)
          new_y = y + (h/2) - (o.offsetHeight/2)
          o.style.left = new_x ;
          o.style.top  = new_y;

          //Fix Position
          win_w = window.document.body.clientWidth;
          win_h = window.document.body.clientHeight;
          win_t = window.document.body.scrollTop;
          win_l = window.document.body.scrollLeft;
          dif = 2;
         
          //fix the scroll values
          new_y -= win_t;
          new_x -= win_l;
         
          //alert ("t: "+win_t+" l: "+win_l+" w: "+win_w+" h: "+win_h+"\n t: "+new_y+" l: "+new_x+" w: "+new_w+" h: "+new_h);   
         
          if ((new_x + new_w) >= win_w)
          o.style.left = win_w - new_w - dif + win_l;

          if ((new_y + new_h) >= win_h)
          o.style.top = win_h - new_h - dif + win_t;
         
          if (new_x <= dif)
          o.style.left = win_l + dif;

          if (new_y <= dif)
          o.style.top  = win_t + dif;

          x = parseInt(o.style.left.replace("px",""));
          y = parseInt(o.style.top.replace("px",""));

          toolbox_show(oid,x,new_w,y+new_h);
          return 0;
      }

      function hide_info(o) {
          window.setTimeout ("real_hide_info('"+o.id+"');",4000); //delay real hide
      }

      function real_hide_info(oid) {
          a = shown_objects[oid]
          if (!a) return 1; //if exists

          o = a['obj'];
          if (!o) return 2; //if its valid

          if (shown_objects[oid]['state']!=1) return 3; //if is shown
         
          o.innerHTML = shown_objects[oid]['old_text'];
          o.style.fontSize = shown_objects[oid]['old_size'];
          o.style.lineHeight = o.style.fontSize;
             
          o.style.borderStyle = shown_objects[oid]['old_border'];

          o.style.width = shown_objects[oid]['old_w'];
          o.style.height = shown_objects[oid]['old_h'];
          o.style.left = shown_objects[oid]['old_x']
          o.style.top  = shown_objects[oid]['old_y']

          o.style.overflow = 'hidden';
          o.style.zIndex = 0;
         
          shown_objects[oid] = null;

          toolbox_hide(oid);

          return 0;
      }

      function ir_url(url,url2){
          if (url!="") {
          if (top.trabajo.events) top.trabajo.events.location.href = url; //if events frame exists use it
          else
              if (url2=="")
              url2=url; //if it doesnt and this is the only url take it to the main frame
      //        else
      //        window.open(url); //if the events frame doesn't exists, but we have to show 2 urls, show this one in a new window
          }
          if (url2!="") {
          if (!top.trabajo.map)
              if (!top.trabajo) window.open(url2); //esto hace que si no esta la frame salga una window
              else top.trabajo.location.href = url2; //y esto que si no esta map salga en trabajo
          else top.trabajo.map.location.href = url2;
          }
      }

      </SCRIPT>

      <script src="views/toolbox.js"></script>

      <style type="text/css">

      .interface {
          position:absolute;
          border-width: 1px;
          border-color: black;
          border-style: solid;
          font-size: 15px;
          font-family: sans-serif,monospace,arial;
          line-height: 15px;
          letter-spacing: 0px;
          white-space: nowrap;
          margin: 0px 0px 0px 0px;
          padding: 3px 0px 0px 0px;
          overflow: hidden;
          float: right;
          align: left;
          word-wrap: none;
          text-align: center;
          cursor: pointer;
      }
      </style>
      <!--
      /* Alarm Map
      * Copyright (C) <2002-2004> Javier Szyszlican <javier@szysz.com>
      *
      * This file is part of JFFNMS.
      *
      * JFFNMS is free software; you can redistribute it and/or modify
      * it under the terms of the GNU General Public License as published by
      * the Free Software Foundation; either version 2 of the License, or
      * (at your option) any later version.
      *
      * JFFNMS is distributed in the hope that it will be useful,
      * but WITHOUT ANY WARRANTY; without even the implied warranty of
      * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      * GNU General Public License for more details.
      *
      * You should have received a copy of the GNU General Public License
      * along with JFFNMS; if not, write to the Free Software
      * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
      */
      -->
      <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
      <HTML>
      <HEAD>
          <TITLE>Alarm Map</TITLE>
          <meta HTTP-EQUIV="Pragma" CONTENT="no-cache">

          <link rel="Shortcut Icon" href="/jffnms/images/favicon.ico">
          <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
          <meta http-equiv="Content-language" content="en">
          <meta http-equiv="Content-Style-Type" content="text/css">
          <meta http-equiv="Content-Script-Type" content="text/javascript">

      <SCRIPT>
      function setPointer(theCell,select) { }

      function setRowPointer(theRow, thePointerColor) {
          if (typeof(theRow.style) == 'undefined' || typeof(theRow.cells) == 'undefined') return false;
          //var row_cells_cnt = theRow.cells.length;
          for (var c = 0; c < 2; c++)  theRow.cells[c].bgColor = thePointerColor;
          return true;
      }

      function setPointerOut(all) { }

      function onClickControl(all) { }

      function DeleteRow(id,url){
          if (confirm("Are your sure you want to delete this record (ID "+id+") ?")) window.location = url;
      }
      </SCRIPT>
      </HEAD>
      <BODY leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#00A348">
      <script>
      //FIX IE Things
      if (document.all) {
          document.styleSheets[0].rules[0].style.paddingTop = '0px';
          document.styleSheets[0].rules[0].style.cursor = 'hand';
      }
      </script>

      <div id='1731' class='interface' style='top: 10; left: 10; width: 90; height: 48; background-color: 64FF64; color: 000000; '
      onClick="javascript:ir_url('events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,=','view_performance.php?interface_id=1731')" onMouseOver="javascript: show_info(this,'<b>fm-edge-02</b> CompName<br><b>Virtual-Access22</b><br><b>Description:</b> CustDesc (ATM3/0.129)<br>CompName <a target=events href=admin/adm/adm_interfaces.php?interface_id=1731&action=edit>(Physical Interfaces 162)</a><br>D100000k/U100000k');" onMouseOut="javascript: hide_info(this);">
      V22<br>Acro<br>CustDesc (ATM3/0.129)</div>

      <div id='t1731' style='position: absolute; visibility: hidden; z-index: 10;'>
          <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
      </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=1731"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
      </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=1731"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
      </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=1731&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
      </td>
      </tr></table></div>

      <div id='1731' class='interface' style='top: 10; left: 110; width: 90; height: 48; background-color: 64FF64; color: 000000; '
      onClick="javascript:ir_url('events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,=','view_performance.php?interface_id=1731')" onMouseOver="javascript: show_info(this,'<b>fm-edge-02</b> CompName<br><b>Virtual-Access22</b><br><b>Description:</b> CustDesc (ATM3/0.129)<br>CompName <a target=events href=admin/adm/adm_interfaces.php?interface_id=1731&action=edit>(Physical Interfaces 162)</a><br>D100000k/U100000k');" onMouseOut="javascript: hide_info(this);">

      V22<br>Acro<br>CustDesc (ATM3/0.129)</div>

      <div id='t1731' style='position: absolute; visibility: hidden; z-index: 10;'>
          <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
      </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=1731"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
      </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=1731"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
      </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=1731&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
      </td>
      </tr></table></div>

      <div id='1731' class='interface' style='top: 10; left: 210; width: 90; height: 48; background-color: 64FF64; color: 000000; '
      onClick="javascript:ir_url('events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,=','view_performance.php?interface_id=1731')" onMouseOver="javascript: show_info(this,'<b>fm-edge-02</b> CompName<br><b>Virtual-Access22</b><br><b>Description:</b> CustDesc (ATM3/0.129)<br>CompName <a target=events href=admin/adm/adm_interfaces.php?interface_id=1731&action=edit>(Physical Interfaces 162)</a><br>D100000k/U100000k');" onMouseOut="javascript: hide_info(this);">
      V22<br>Acro<br>CustDesc (ATM3/0.129)</div>

      <div id='t1731' style='position: absolute; visibility: hidden; z-index: 10;'>
          <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
      </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=1731"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
      </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=1731"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
      </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=1731&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
      </td>
      </tr></table></div>

      <div id='1731' class='interface' style='top: 10; left: 310; width: 90; height: 48; background-color: 64FF64; color: 000000; '
      onClick="javascript:ir_url('events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,=','view_performance.php?interface_id=1731')" onMouseOver="javascript: show_info(this,'<b>fm-edge-02</b> CompName<br><b>Virtual-Access22</b><br><b>Description:</b> CustDesc (ATM3/0.129)<br>CompName <a target=events href=admin/adm/adm_interfaces.php?interface_id=1731&action=edit>(Physical Interfaces 162)</a><br>D100000k/U100000k');" onMouseOut="javascript: hide_info(this);">
      V22<br>Acro<br>CustDesc (ATM3/0.129)</div>

      <div id='t1731' style='position: absolute; visibility: hidden; z-index: 10;'>

          <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
      </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=1731"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
      </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=1731"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
      </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=1731&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
      </td>
      </tr></table></div>

      <div id='1731' class='interface' style='top: 10; left: 410; width: 90; height: 48; background-color: 64FF64; color: 000000; '
      onClick="javascript:ir_url('events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,=','view_performance.php?interface_id=1731')" onMouseOver="javascript: show_info(this,'<b>fm-edge-02</b> CompName<br><b>Virtual-Access22</b><br><b>Description:</b> CustDesc (ATM3/0.129)<br>CompName <a target=events href=admin/adm/adm_interfaces.php?interface_id=1731&action=edit>(Physical Interfaces 162)</a><br>D100000k/U100000k');" onMouseOut="javascript: hide_info(this);">
      V22<br>Acro<br>CustDesc (ATM3/0.129)</div>

      <div id='t1731' style='position: absolute; visibility: hidden; z-index: 10;'>
          <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>

      </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=1731"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
      </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=1731"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
      </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=1731&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
      </td>
      </tr></table></div>

      <div id='1731' class='interface' style='top: 10; left: 510; width: 90; height: 48; background-color: 64FF64; color: 000000; '
      onClick="javascript:ir_url('events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,=','view_performance.php?interface_id=1731')" onMouseOver="javascript: show_info(this,'<b>fm-edge-02</b> CompName<br><b>Virtual-Access22</b><br><b>Description:</b> CustDesc (ATM3/0.129)<br>CompName <a target=events href=admin/adm/adm_interfaces.php?interface_id=1731&action=edit>(Physical Interfaces 162)</a><br>D100000k/U100000k');" onMouseOut="javascript: hide_info(this);">
      V22<br>Acro<br>CustDesc (ATM3/0.129)</div>

      <div id='t1731' style='position: absolute; visibility: hidden; z-index: 10;'>
          <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
      </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=1731"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
      </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=1731"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>

      </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=1731&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
      </td>
      </tr></table></div>

      <div id='1731' class='interface' style='top: 10; left: 610; width: 90; height: 48; background-color: 64FF64; color: 000000; '
      onClick="javascript:ir_url('events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,=','view_performance.php?interface_id=1731')" onMouseOver="javascript: show_info(this,'<b>fm-edge-02</b> CompName<br><b>Virtual-Access22</b><br><b>Description:</b> CustDesc (ATM3/0.129)<br>CompName <a target=events href=admin/adm/adm_interfaces.php?interface_id=1731&action=edit>(Physical Interfaces 162)</a><br>D100000k/U100000k');" onMouseOut="javascript: hide_info(this);">
      V22<br>Acro<br>CustDesc (ATM3/0.129)</div>

      <div id='t1731' style='position: absolute; visibility: hidden; z-index: 10;'>
          <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
      </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=1731"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
      </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=1731"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
      </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=1731&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
      </td>

      </tr></table></div>

      <div id='1731' class='interface' style='top: 10; left: 710; width: 90; height: 48; background-color: 64FF64; color: 000000; '
      onClick="javascript:ir_url('events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,=','view_performance.php?interface_id=1731')" onMouseOver="javascript: show_info(this,'<b>fm-edge-02</b> CompName<br><b>Virtual-Access22</b><br><b>Description:</b> CustDesc (ATM3/0.129)<br>CompName <a target=events href=admin/adm/adm_interfaces.php?interface_id=1731&action=edit>(Physical Interfaces 162)</a><br>D100000k/U100000k');" onMouseOut="javascript: hide_info(this);">
      V22<br>Acro<br>CustDesc (ATM3/0.129)</div>

      <div id='t1731' style='position: absolute; visibility: hidden; z-index: 10;'>
          <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
      </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=1731"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
      </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=1731"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
      </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=1731&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
      </td>
      </tr></table></div>

      <div id='1731' class='interface' style='top: 10; left: 810; width: 90; height: 48; background-color: 64FF64; color: 000000; '
      onClick="javascript:ir_url('events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,=','view_performance.php?interface_id=1731')" onMouseOver="javascript: show_info(this,'<b>fm-edge-02</b> CompName<br><b>Virtual-Access22</b><br><b>Description:</b> CustDesc (ATM3/0.129)<br>CompName <a target=events href=admin/adm/adm_interfaces.php?interface_id=1731&action=edit>(Physical Interfaces 162)</a><br>D100000k/U100000k');" onMouseOut="javascript: hide_info(this);">
      V22<br>Acro<br>CustDesc (ATM3/0.129)</div>

      <div id='t1731' style='position: absolute; visibility: hidden; z-index: 10;'>
          <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
      </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=1731"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
      </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=1731"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
      </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=1731&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
      </td>
      </tr></table></div>

      <div id='1731' class='interface' style='top: 10; left: 910; width: 90; height: 48; background-color: 64FF64; color: 000000; '
      onClick="javascript:ir_url('events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,=','view_performance.php?interface_id=1731')" onMouseOver="javascript: show_info(this,'<b>fm-edge-02</b> CompName<br><b>Virtual-Access22</b><br><b>Description:</b> CustDesc (ATM3/0.129)<br>CompName <a target=events href=admin/adm/adm_interfaces.php?interface_id=1731&action=edit>(Physical Interfaces 162)</a><br>D100000k/U100000k');" onMouseOut="javascript: hide_info(this);">
      V22<br>Acro<br>CustDesc (ATM3/0.129)</div>

      <div id='t1731' style='position: absolute; visibility: hidden; z-index: 10;'>
          <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
      </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=1731"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
      </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=1731"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
      </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=1731&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
      </td>
      </tr></table></div>

      <div id='1731' class='interface' style='top: 10; left: 1010; width: 90; height: 48; background-color: 64FF64; color: 000000; '
      onClick="javascript:ir_url('events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,=','view_performance.php?interface_id=1731')" onMouseOver="javascript: show_info(this,'<b>fm-edge-02</b> CompName<br><b>Virtual-Access22</b><br><b>Description:</b> CustDesc (ATM3/0.129)<br>CompName <a target=events href=admin/adm/adm_interfaces.php?interface_id=1731&action=edit>(Physical Interfaces 162)</a><br>D100000k/U100000k');" onMouseOut="javascript: hide_info(this);">
      V22<br>Acro<br>CustDesc (ATM3/0.129)</div>

      <div id='t1731' style='position: absolute; visibility: hidden; z-index: 10;'>

          <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
      </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=1731"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
      </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=1731"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
      </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=1731&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
      </td>
      </tr></table></div>

      <div id='1731' class='interface' style='top: 10; left: 1110; width: 90; height: 48; background-color: 64FF64; color: 000000; '
      onClick="javascript:ir_url('events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,=','view_performance.php?interface_id=1731')" onMouseOver="javascript: show_info(this,'<b>fm-edge-02</b> CompName<br><b>Virtual-Access22</b><br><b>Description:</b> CustDesc (ATM3/0.129)<br>CompName <a target=events href=admin/adm/adm_interfaces.php?interface_id=1731&action=edit>(Physical Interfaces 162)</a><br>D100000k/U100000k');" onMouseOut="javascript: hide_info(this);">
      V22<br>Acro<br>CustDesc (ATM3/0.129)</div>

      <div id='t1731' style='position: absolute; visibility: hidden; z-index: 10;'>
          <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>

      </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=1731"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
      </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=1731"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
      </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=1731&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
      </td>
      </tr></table></div>

      <div id='1731' class='interface' style='top: 10; left: 1210; width: 90; height: 48; background-color: 64FF64; color: 000000; '
      onClick="javascript:ir_url('events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,=','view_performance.php?interface_id=1731')" onMouseOver="javascript: show_info(this,'<b>fm-edge-02</b> CompName<br><b>Virtual-Access22</b><br><b>Description:</b> CustDesc (ATM3/0.129)<br>CompName <a target=events href=admin/adm/adm_interfaces.php?interface_id=1731&action=edit>(Physical Interfaces 162)</a><br>D100000k/U100000k');" onMouseOut="javascript: hide_info(this);">
      V22<br>Acro<br>CustDesc (ATM3/0.129)</div>

      <div id='t1731' style='position: absolute; visibility: hidden; z-index: 10;'>
          <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=11&express_filter=interface,Virtual-Access22,=^host,6,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
      </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=1731"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
      </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=1731"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>

      </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=1731&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
      </td>
      </tr></table></div>
      <script> refresh_timeout = window.setTimeout ('if (self.no_refresh!=1) location.href="/view_interfaces.php?map_id=11&map_color=00A348&mark_interface=&active_only=0&break_by_card=0&break_by_host=&break_by_zone=0events_update%3D0&view_type=dhtml&host_id=&sound=0&big_graph=1&only_rootmap=1&source=interfaces&screen_size=1024";',30000); </script>
      </tr>
      </table>
      </BODY>
      </HTML>

       
      • Javier Szyszlican

        Hi,

        I see the problem in the file you sent me...
        The Screen Size is define to be 1024 but the code placed items in positions over 1024.

        But I couldn't replicate it here... I've 1024x768 and my map showed up correctly. (in 2 rows)

        Javier

         
    • Nobody/Anonymous

      Have you looked at this yet? I would be greatfull if you figured this out.

       
    • Nobody/Anonymous

      Ok, i just re-read what i originally wrote and i dont think i was very clear.

      When your in admin, and goto maps, and make your own make and add interfaces to it.

      add about 15-20 (custom map)
      then goto -> Maps
      and click on the submap that you created
      then click on DHTML, ot DHTML Big and see if it happens then.

      On normal maps (hosts, and then clicking on one of those sub maps) the problem doesnt exist.

      Sorry if i was confusing :)

       
      • Javier Szyszlican

        Hi,

        You were clear...
        I tried exactly that, and It worked fine.
        I created a Map with 10-20 interfaces, then selected it using DHTML Big, and I didn't get the results you got.

        Here's my HTML source. You can put it in /opt/jffnms/htdocs/test.html and then call it from your web browser.

        <SCRIPT>

        var shown_objects = new Array();

        function show_info(o,text) {
            oid = o.id;
           
            //hide all other boxes. already shown or not
            for (var i in shown_objects)
            if ((shown_objects[i]!=null) && (i!=oid)) {
           
                if (shown_objects[i]['state']==0)     //if it was not shown yet
                shown_objects[i] = null;    //just delete it, to avoid it to be shown
                else
                window.setTimeout ("real_hide_info('"+i+"');",2000); //hide it normally
            }
           
            if (!shown_objects[oid]) { //if not's already created
                shown_objects[oid] = Array();
                shown_objects[oid]['obj'] = o;
                shown_objects[oid]['state'] = 0;

                window.setTimeout ("real_show_info('"+text+"','"+oid+"');",1500); //delay real show
            }
        }

        function real_show_info(text,oid) {
            a = shown_objects[oid];
            if (!a) return 1; //if exists
           
            o = a['obj'];
            if (!o) return 2; //if its valid;
           
            if (shown_objects[oid]['state']!=0) return 3; //don't do it again

            shown_objects[oid]['state']=1;

            //save values for restore
            shown_objects[oid]['old_x'] = o.style.left;
            shown_objects[oid]['old_y'] = o.style.top;
            shown_objects[oid]['old_w'] = o.style.width;
            shown_objects[oid]['old_h'] = o.style.height;
            shown_objects[oid]['old_text'] = o.innerHTML;
            shown_objects[oid]['old_size'] = o.style.fontSize;
            shown_objects[oid]['old_border'] = o.style.borderStyle;

            //save current position values
            x = parseInt(o.style.left.replace("px",""));
            y = parseInt(o.style.top.replace("px",""));
            w = parseInt(o.style.width.replace("px",""));
            h = parseInt(o.style.height.replace("px",""));

            o.style.width = 'auto' ;
            o.style.height = 'auto' ;
            o.style.overflow = 'visible';
            o.style.zIndex = 1;

            o.innerHTML = text;
            o.style.fontSize = '24px';
            o.style.lineHeight = o.style.fontSize;

            o.style.borderStyle = 'solid';

            //re-center the box
            o.style.left = 0;
            o.style.top = 0;

            new_w = o.offsetWidth;
            new_h = o.offsetHeight;
           
            new_x = x + (w/2) - (o.offsetWidth/2)
            new_y = y + (h/2) - (o.offsetHeight/2)
            o.style.left = new_x ;
            o.style.top  = new_y;

            //Fix Position
            win_w = window.document.body.clientWidth;
            win_h = window.document.body.clientHeight;
            win_t = window.document.body.scrollTop;
            win_l = window.document.body.scrollLeft;
            dif = 2;
           
            //fix the scroll values
            new_y -= win_t;
            new_x -= win_l;
           
            //alert ("t: "+win_t+" l: "+win_l+" w: "+win_w+" h: "+win_h+"\n t: "+new_y+" l: "+new_x+" w: "+new_w+" h: "+new_h);   
           
            if ((new_x + new_w) >= win_w)
            o.style.left = win_w - new_w - dif + win_l;

            if ((new_y + new_h) >= win_h)
            o.style.top = win_h - new_h - dif + win_t;
           
            if (new_x <= dif)
            o.style.left = win_l + dif;

            if (new_y <= dif)
            o.style.top  = win_t + dif;

            x = parseInt(o.style.left.replace("px",""));
            y = parseInt(o.style.top.replace("px",""));

            toolbox_show(oid,x,new_w,y+new_h);
            return 0;
        }

        function hide_info(o) {
            window.setTimeout ("real_hide_info('"+o.id+"');",4000); //delay real hide
        }

        function real_hide_info(oid) {
            a = shown_objects[oid]
            if (!a) return 1; //if exists

            o = a['obj'];
            if (!o) return 2; //if its valid

            if (shown_objects[oid]['state']!=1) return 3; //if is shown
           
            o.innerHTML = shown_objects[oid]['old_text'];
            o.style.fontSize = shown_objects[oid]['old_size'];
            o.style.lineHeight = o.style.fontSize;
               
            o.style.borderStyle = shown_objects[oid]['old_border'];

            o.style.width = shown_objects[oid]['old_w'];
            o.style.height = shown_objects[oid]['old_h'];
            o.style.left = shown_objects[oid]['old_x']
            o.style.top  = shown_objects[oid]['old_y']

            o.style.overflow = 'hidden';
            o.style.zIndex = 0;
           
            shown_objects[oid] = null;

            toolbox_hide(oid);

            return 0;
        }

        function ir_url(url,url2){
            if (url!="") {
            if (top.trabajo.events) top.trabajo.events.location.href = url; //if events frame exists use it
            else
                if (url2=="")
                url2=url; //if it doesnt and this is the only url take it to the main frame
        //        else
        //        window.open(url); //if the events frame doesn't exists, but we have to show 2 urls, show this one in a new window
            }
            if (url2!="") {
            if (!top.trabajo.map)
                if (!top.trabajo) window.open(url2); //esto hace que si no esta la frame salga una window
                else top.trabajo.location.href = url2; //y esto que si no esta map salga en trabajo
            else top.trabajo.map.location.href = url2;
            }
        }

        </SCRIPT>

        <script src="views/toolbox.js"></script>

        <style type="text/css">

        .interface {
            position:absolute;
            border-width: 1px;
            border-color: black;
            border-style: solid;
            font-size: 15px;
            font-family: sans-serif,monospace,arial;
            line-height: 15px;
            letter-spacing: 0px;
            white-space: nowrap;
            margin: 0px 0px 0px 0px;
            padding: 3px 0px 0px 0px;
            overflow: hidden;
            float: right;
            align: left;
            word-wrap: none;
            text-align: center;
            cursor: pointer;
        }
        </style>
        <!--
        /* Alarm Map
        * Copyright (C) <2002-2004> Javier Szyszlican <javier@szysz.com>
        *
        * This file is part of JFFNMS.
        *
        * JFFNMS is free software; you can redistribute it and/or modify
        * it under the terms of the GNU General Public License as published by
        * the Free Software Foundation; either version 2 of the License, or
        * (at your option) any later version.
        *
        * JFFNMS is distributed in the hope that it will be useful,
        * but WITHOUT ANY WARRANTY; without even the implied warranty of
        * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        * GNU General Public License for more details.
        *
        * You should have received a copy of the GNU General Public License
        * along with JFFNMS; if not, write to the Free Software
        * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
        */
        -->
        <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
        <HTML>
        <HEAD>
            <TITLE>Alarm Map</TITLE>
            <meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
            <link rel="Shortcut Icon" href="/jffnms/images/favicon.ico">
            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
            <meta http-equiv="Content-language" content="en">
            <meta http-equiv="Content-Style-Type" content="text/css">
            <meta http-equiv="Content-Script-Type" content="text/javascript">

        <SCRIPT>
        function setPointer(theCell,select) { }

        function setRowPointer(theRow, thePointerColor) {
            if (typeof(theRow.style) == 'undefined' || typeof(theRow.cells) == 'undefined') return false;
            //var row_cells_cnt = theRow.cells.length;
            for (var c = 0; c < 2; c++)  theRow.cells[c].bgColor = thePointerColor;
            return true;
        }

        function setPointerOut(all) { }

        function onClickControl(all) { }

        function DeleteRow(id,url){
            if (confirm("Are your sure you want to delete this record (ID "+id+") ?")) window.location = url;
        }
        </SCRIPT>
        </HEAD>
        <BODY leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#00A348">
        <script>
        //FIX IE Things
        if (document.all) {
            document.styleSheets[0].rules[0].style.paddingTop = '0px';
            document.styleSheets[0].rules[0].style.cursor = 'hand';
        }
        </script>

        <div id='b1' class='interface' style='top: 10; left: 10; width: 90; height: 48; background-color: rgb(150,150,150); color: white; '
        onClick="javascript:ir_url('events.php?express_filter=zone,10,=','')">
        Argentina<br>Zone<br><div style='position:absolute; top: 37px; left:74px; width: 16px; height: 11px; background-image: url(/jffnms/images/ar.png); z-index: -10;'></div></div>

        <div id='3041' class='interface' style='top: 10; left: 120; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Port 199,=^host,59,=','view_performance.php?interface_id=3041')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Port 199</b><br><b>Port Description:</b> smux<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=3041&action=edit>(TCP Ports 199)</a>');" onMouseOut="javascript: hide_info(this);">
        Port 199<br>Internos<br>smux</div>

        <div id='t3041' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Port 199,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=3041"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=3041"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=3041&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2684' class='interface' style='top: 10; left: 220; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Port 21,=^host,59,=','view_performance.php?interface_id=2684')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Port 21</b><br><b>Port Description:</b> ftp<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2684&action=edit>(TCP Ports 21)</a>');" onMouseOut="javascript: hide_info(this);">
        Port 21<br>Internos<br>ftp</div>

        <div id='t2684' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Port 21,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2684"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=2684"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2684&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2336' class='interface' style='top: 10; left: 320; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Port 22,=^host,59,=','view_performance.php?interface_id=2336')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Port 22</b><br><b>Port Description:</b> ssh<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2336&action=edit>(TCP Ports 22)</a>');" onMouseOut="javascript: hide_info(this);">
        Port 22<br>Internos<br>ssh</div>

        <div id='t2336' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Port 22,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2336"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=2336"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2336&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2338' class='interface' style='top: 10; left: 420; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Port 443,=^host,59,=','view_performance.php?interface_id=2338')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Port 443</b><br><b>Port Description:</b> https<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2338&action=edit>(TCP Ports 443)</a>');" onMouseOut="javascript: hide_info(this);">
        Port 443<br>Internos<br>https</div>

        <div id='t2338' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Port 443,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2338"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=2338"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2338&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='3038' class='interface' style='top: 10; left: 520; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Port 49,=^host,59,=','view_performance.php?interface_id=3038')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Port 49</b><br><b>Port Description:</b> tacacs<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=3038&action=edit>(TCP Ports 49)</a>');" onMouseOut="javascript: hide_info(this);">
        Port 49<br>Internos<br>tacacs</div>

        <div id='t3038' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Port 49,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=3038"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=3038"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=3038&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2337' class='interface' style='top: 10; left: 620; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Port 80,=^host,59,=','view_performance.php?interface_id=2337')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Port 80</b><br><b>Port Description:</b> http<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2337&action=edit>(TCP Ports 80)</a>');" onMouseOut="javascript: hide_info(this);">
        Port 80<br>Internos<br>http</div>

        <div id='t2337' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Port 80,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2337"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=2337"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2337&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='3039' class='interface' style='top: 10; left: 720; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Port 81,=^host,59,=','view_performance.php?interface_id=3039')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Port 81</b><br><b>Port Description:</b> hosts2-ns<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=3039&action=edit>(TCP Ports 81)</a>');" onMouseOut="javascript: hide_info(this);">
        Port 81<br>Internos<br>hosts2-ns</div>

        <div id='t3039' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Port 81,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=3039"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=3039"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=3039&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='3040' class='interface' style='top: 10; left: 820; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Port 88,=^host,59,=','view_performance.php?interface_id=3040')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Port 88</b><br><b>Port Description:</b> kerberos-sec<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=3040&action=edit>(TCP Ports 88)</a>');" onMouseOut="javascript: hide_info(this);">
        Port 88<br>Internos<br>kerberos-sec</div>

        <div id='t3040' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Port 88,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=3040"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=3040"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=3040&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2342' class='interface' style='top: 65; left: 120; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,eth0,=^host,59,=','view_performance.php?interface_id=2342')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>eth0</b><br><b>IP Address:</b> 10.1.0.120<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2342&action=edit>(Physical Interfaces 2)</a><br>D10000k/U10000k');" onMouseOut="javascript: hide_info(this);">
        eth0<br>Internos<br>10.1.0.120</div>

        <div id='t2342' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,eth0,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2342"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='tools' href="admin/tools.php?interface_id=2342"><img src='/jffnms/images/tool.png' border='0' alt='Tools'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2342&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2339' class='interface' style='top: 65; left: 220; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,/,=^host,59,=','view_performance.php?interface_id=2339')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>/</b><br><b>Disk Type:</b> FixedDisk<br><b>Size (Bytes):</b> 38837497856<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2339&action=edit>(Storage 1)</a>');" onMouseOut="javascript: hide_info(this);">
        /<br>Internos<br>FixedDisk 38837497856</div>

        <div id='t2339' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,/,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2339"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2339&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2685' class='interface' style='top: 65; left: 320; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,/boot,=^host,59,=','view_performance.php?interface_id=2685')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>/boot</b><br><b>Disk Type:</b> FixedDisk<br><b>Size (Bytes):</b> 31824896<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2685&action=edit>(Storage 2)</a>');" onMouseOut="javascript: hide_info(this);">
        /boot<br>Internos<br>FixedDisk 31824896</div>

        <div id='t2685' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,/boot,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2685"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2685&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2623' class='interface' style='top: 65; left: 420; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,/dev/shm,=^host,59,=','view_performance.php?interface_id=2623')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>/dev/shm</b><br><b>Disk Type:</b> FixedDisk<br><b>Size (Bytes):</b> 461504512<br>Skynet <a target=events href=admin/adm/adm_interfaces.php?interface_id=2623&action=edit>(Storage 4)</a>');" onMouseOut="javascript: hide_info(this);">
        /dev/shm<br>Skynet<br>FixedDisk 461504512</div>

        <div id='t2623' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,/dev/shm,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2623"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2623&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2340' class='interface' style='top: 65; left: 520; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Real Memory,=^host,59,=','view_performance.php?interface_id=2340')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Real Memory</b><br><b>Disk Type:</b> Ram<br><b>Size (Bytes):</b> 923009024<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2340&action=edit>(Storage 101)</a>');" onMouseOut="javascript: hide_info(this);">
        Real M<br>Internos<br>Ram 923009024</div>

        <div id='t2340' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Real Memory,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2340"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2340&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2341' class='interface' style='top: 65; left: 620; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Swap Space,=^host,59,=','view_performance.php?interface_id=2341')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Swap Space</b><br><b>Disk Type:</b> VirtualMemory<br><b>Size (Bytes):</b> 526409728<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2341&action=edit>(Storage 102)</a>');" onMouseOut="javascript: hide_info(this);">
        Swap S<br>Internos<br>VirtualMemory 526409728</div>

        <div id='t2341' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Swap Space,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2341"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2341&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2335' class='interface' style='top: 65; left: 720; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,CPU,=^host,59,=','view_performance.php?interface_id=2335')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>CPU</b><br><b>Description:</b> Linux apu.lan.tiba.com 2.4.18 #6 Thu Apr 18 17:35:49 ART 2002 i686<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2335&action=edit>(Linux/Unix System Info 1)</a>');" onMouseOut="javascript: hide_info(this);">
        CPU<br>Internos<br>Linux apu.lan.tiba.com 2.4.18 #6 Thu Apr 18 17:35:49 ART 2002 i686</div>

        <div id='t2335' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,CPU,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2335"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2335&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2343' class='interface' style='top: 65; left: 820; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,httpd,=^host,59,=','view_performance.php?interface_id=2343')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>httpd</b><br><b>Description:</b> Application /usr/sbin/httpd<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2343&action=edit>(Applications 3867)</a>');" onMouseOut="javascript: hide_info(this);">
        httpd<br>Internos<br>Application /usr/sbin/httpd</div>

        <div id='t2343' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,httpd,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2343"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2343&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2622' class='interface' style='top: 120; left: 120; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,mingetty,=^host,59,=','view_performance.php?interface_id=2622')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>mingetty</b><br><b>Description:</b> Application /sbin/mingetty<br>Santa Maria <a target=events href=admin/adm/adm_interfaces.php?interface_id=2622&action=edit>(Applications 10242)</a>');" onMouseOut="javascript: hide_info(this);">
        mingetty<br>Santa Maria<br>Application /sbin/mingetty</div>

        <div id='t2622' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,mingetty,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2622"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2622&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2686' class='interface' style='top: 120; left: 220; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,sshd,=^host,59,=','view_performance.php?interface_id=2686')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>sshd</b><br><b>Description:</b> Application /usr/sbin/sshd<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2686&action=edit>(Applications 2345)</a>');" onMouseOut="javascript: hide_info(this);">
        sshd<br>Internos<br>Application /usr/sbin/sshd</div>

        <div id='t2686' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,sshd,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2686"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2686&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2345' class='interface' style='top: 120; left: 320; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,syslogd,=^host,59,=','view_performance.php?interface_id=2345')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>syslogd</b><br><b>Description:</b> Application /usr/sbin/syslogd<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2345&action=edit>(Applications 7634)</a>');" onMouseOut="javascript: hide_info(this);">
        syslogd<br>Internos<br>Application /usr/sbin/syslogd</div>

        <div id='t2345' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,syslogd,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2345"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2345&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2346' class='interface' style='top: 120; left: 420; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,tac_plus,=^host,59,=','view_performance.php?interface_id=2346')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>tac_plus</b><br><b>Description:</b> Application /usr/sbin/tac_plus<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2346&action=edit>(Applications 9902)</a>');" onMouseOut="javascript: hide_info(this);">
        tac_plus<br>Internos<br>Application /usr/sbin/tac_plus</div>

        <div id='t2346' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,tac_plus,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2346"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2346&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2344' class='interface' style='top: 120; left: 520; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,xinetd,=^host,59,=','view_performance.php?interface_id=2344')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>xinetd</b><br><b>Description:</b> Application xinetd<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2344&action=edit>(Applications 5460)</a>');" onMouseOut="javascript: hide_info(this);">
        xinetd<br>Internos<br>Application xinetd</div>

        <div id='t2344' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,xinetd,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2344"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2344&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2566' class='interface' style='top: 120; left: 620; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Reachability,=^host,59,=','view_performance.php?interface_id=2566')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Reachability</b><br><b>Description:</b> Reachability to 10.1.0.120<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2566&action=edit>(Reachable 1)</a>');" onMouseOut="javascript: hide_info(this);">
        Reachability<br>Internos<br>Reachability to 10.1.0.120</div>

        <div id='t2566' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Reachability,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=2566"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2566&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='2980' class='interface' style='top: 120; left: 720; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Time,=^host,59,=','')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Time</b><br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=2980&action=edit>(NTP 1)</a>');" onMouseOut="javascript: hide_info(this);">
        Time<br>Internos<br></div>

        <div id='t2980' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Time,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=2980&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='3067' class='interface' style='top: 120; left: 820; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Port 123,=^host,59,=','view_performance.php?interface_id=3067')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Port 123</b><br><b>Port Description:</b> ntp<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=3067&action=edit>(UDP Ports 123)</a>');" onMouseOut="javascript: hide_info(this);">
        Port 123<br>Internos<br>ntp</div>

        <div id='t3067' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Port 123,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=3067"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=3067&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='3068' class='interface' style='top: 175; left: 120; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Port 161,=^host,59,=','view_performance.php?interface_id=3068')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Port 161</b><br><b>Port Description:</b> snmp<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=3068&action=edit>(UDP Ports 161)</a>');" onMouseOut="javascript: hide_info(this);">
        Port 161<br>Internos<br>snmp</div>

        <div id='t3068' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Port 161,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=3068"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=3068&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>

        <div id='3066' class='interface' style='top: 175; left: 220; width: 90; height: 48; background-color: 64FF64; color: 000000; '
        onClick="javascript:ir_url('events.php?map_id=29&express_filter=interface,Port 69,=^host,59,=','view_performance.php?interface_id=3066')" onMouseOver="javascript: show_info(this,'<b>Apu</b> Argentina<br><b>Port 69</b><br><b>Port Description:</b> tftp<br>TIBA Internos <a target=events href=admin/adm/adm_interfaces.php?interface_id=3066&action=edit>(UDP Ports 69)</a>');" onMouseOut="javascript: hide_info(this);">
        Port 69<br>Internos<br>tftp</div>

        <div id='t3066' style='position: absolute; visibility: hidden; z-index: 10;'>
            <table cellspacing=0 cellpadding=0><tr><td>&nbsp;<a target='events' href="events.php?map_id=29&express_filter=interface,Port 69,=^host,59,="><img src='/jffnms/images/text.png' border='0' alt='Events'></a>
        </td><td>&nbsp;<a target='map' href="view_performance.php?interface_id=3066"><img src='/jffnms/images/graph.png' border='0' alt='Performance'></a>
        </td><td>&nbsp;<a target='modification' href="admin/adm/adm_interfaces.php?interface_id=3066&action=edit"><img src='/jffnms/images/edit.png' border='0' alt='Edit'></a>
        </td>
        </tr></table></div>
        <script> refresh_timeout = window.setTimeout ('if (self.no_refresh!=1) location.href="/jffnms/view_interfaces.php?map_id=29&map_color=00A348&mark_interface=&active_only=0&break_by_card=0&break_by_host=&break_by_zone=1&view_type=dhtml&host_id=&sound=1&big_graph=1&only_rootmap=1&source=interfaces&client_id=0&screen_size=1024&user=admin&pass=admin&alarms_last=a%3A0%3A%7B%7D&alarms_time=1090442160";',20000); </script>
        </tr>
        </table>
        </BODY>
        </HTML>

         

Anonymous
Anonymous

Add attachments
Cancel