����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 52.15.120.29 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/dell/srvadmin/lib64/openmanage/apache-tomcat/webapps/omsa/oma/js/ |
Upload File : |
//------------------------------------------------------------------------- // // DELL INC. PROPRIETARY INFORMATION // // This software is supplied under the terms of a license agreement or // nondisclosure agreement with Dell Computer Corporation and may not // be copied or disclosed except in accordance with the terms of that // agreement. // // Copyright (c) 1995-2001 Dell Inc. All Rights Reserved. // // Abstract/Purpose: // // // Environment: // Windows NT/2000, Linux, Netware // // Created/Version: // 2001 Jul 24 / $Revision: $ // // Author: // Javier Jimenez // // Last Modified By/On: // $Author: $ / $Date: $ // //------------------------------------------------------------------------- // NOTE: Include this source file in an HTML page to set the state of the // selection frameset when the browser's back button is used. function getParameter (sName) { start_index = location.search.indexOf ('&' + sName + '='); if (start_index == -1) start_index = location.search.indexOf ('?' + sName + '='); if (start_index == -1) return null; start_index = location.search.indexOf ('=', start_index) + 1; end_index = location.search.indexOf ('&', start_index); if (end_index == -1) return location.search.substr (start_index); else return location.search.substr (start_index, end_index - start_index); } sComponent = getParameter ('ct'); if (sComponent != null) { sSNB = getParameter ('snb'); if (sSNB != null) { sLSNB = getParameter ('lsnb'); if (sLSNB != null) { try { if (parent.ct.g_sLastLink == sComponent) { if (parent.snb.g_vMenuItemName[parent.snb.g_nLastMenuItem - 1] == sSNB) { if (parent.lsnb.g_vMenuItemName[parent.lsnb.g_nLastItem - 1] != sLSNB) { parent.lsnb._select (sLSNB); } } else { parent.ct.g_bLSNBGoingBack = true; parent.ct.g_sLSNB = sLSNB; parent.snb.history.back (); parent.snb._select (sSNB); } } else { // Correct all the seletion frames to match the current data area page. parent.ct.g_bLoadInProgress = true; parent.ct.g_bLSNBGoingBack = true; parent.ct.g_bSNBGoingBack = true; parent.ct.g_sLSNB = sLSNB; parent.ct.g_sSNB = sSNB; parent.ct._select (sComponent); parent.snb.history.back () } } catch (e) { } } } }