CINXE.COM

P14DH - Directional Feeder Relay with NF C 13100 & UTE C15400

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head id="ctl00_Head1"><title> P14DH - Directional Feeder Relay with NF C 13100 & UTE C15400 </title><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" /><meta name="apple-mobile-web-app-capable" content="yes" /><meta http-equiv="imagetoolbar" content="no" /><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><meta name="Keywords" content="IED, bus protection, feeder protection, generator protection, motor protection, protection relays, substation, transformer protection, wireless, wireless radios, telecommunications, power sensing" /><meta name="Description" content="GE Grid Solutions Online Store" /><link href="Styles/signUp.css" rel="stylesheet" /><link rel="stylesheet" href="/styles/style.css" type="text/css" /><link rel="stylesheet" href="/Styles/cwcstyles.css?v=1" type="text/css" /><link rel="stylesheet" href="/Styles/cwc_newstyles.css?v=1" type="text/css" /><link rel="stylesheet" href="/Styles/bootstrap.css" type="text/css" /><link rel="stylesheet" href="/Styles/topmenu.css?v=1" type="text/css" /><link rel="stylesheet" href="Styles/configurator.css?v=1" type="text/css" /><link href="/styles/jquery-ui.css" rel="stylesheet" type="text/css" /> <script src="/js/jquery.min.js" type="text/javascript"></script> <script src="/js/jquery-ui.js" type="text/javascript"></script> <script src='/js/jquery.js' type="text/javascript"></script> <script src='/js/jquery.validate.js' type="text/javascript"></script> <script src="/js/bootstrap.min.js" type="text/javascript"></script> <script src="/js/topmenu.js" type="text/javascript"></script> <script src="/js/OLS.js" type="text/javascript"></script> <script src="/js/application.js" type="text/javascript"></script> <link rel="stylesheet" href="/styles/style.css" type="text/css" /> <!--[if lt IE 9]> <script src="/js/html5shiv.js"></script> <script src="/js/respond.min.js"></script> <![endif]--> <style type="text/css"> ul.nav li.dropdown:hover > ul.dropdown-menu { display: block; margin: 0; } .body { font-size: 11px; } /*Related with ISO*/ .mousehover { cursor: pointer; } /*Related with ISO*/ </style> <link href="Angular/build/ngOLS-ftEd.css" rel="stylesheet" /></head> <body onclick="clicked=true;" style="overflow-y: scroll;"> <script type="text/jscript"> function privacy_click(s) { var W = 1000; if (W > screen.width) W = screen.width window.open(s, null, "width=" + W + ",height=" + (screen.height - 100) + ",scrollbars=yes,resizable=yes"); } function reg_click(s) { var W = 700, sx = Math.floor(screen.width / 2) - 350, sy = Math.floor(screen.height / 2) - 205; window.open(s, null, "width=" + W + ",height=" + (410) + ",scrollbars=yes,resizable=yes,left=" + sx + ",top=" + sy + ",screenx=" + sx + ",screeny=" + sy); } var clicked = false; function bodyUnload() { if (clicked == false)//browser is closed { var request = GetRequest(); request.open("GET", "/Logout.aspx", true); request.send(); } } function GetRequest() { var xmlHttp = null; try { // Firefox, Opera 8.0+, Safari xmlHttp = new XMLHttpRequest(); } catch (e) { //Internet Explorer try { xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlHttp; } $m = jQuery.noConflict(); $().ready(function () { var tips = $m(".validateTips"); var username = $m("#username"); var password = $m("#password"); var bValid = true; showhideloginbutton(); //// Place here the first init of the autocomplete InitAutoCompl(); $('[autofocus]').focus(); $m('#login').on('click', function () { bValid = true; bValid = bValid && checkEmpty(username, 'Username cannot be blank'); // bValid = bValid && checkEmpty(password, 'password cannot be empty'); /*Related with ISO*/ bValid = bValid && checkEmpty(password, 'Password cannot be blank'); if (bValid) { bValid = bValid && checkLength(username, 1, 30, 'Username has an incorrect length.'); //bValid = bValid && checkLength(password, 8, 15, 'password has an incorrect length.'); if (bValid) { $("#ctl00_hidUrlHash").val(window.location.hash); AuthenticateUser(); } } }); $('#register').on('click', function (e) { var url = "/Account/SignupNew.aspx"; $(location).attr('href', url); }); $m('#myModal').on('hidden.bs.modal', function (e) { $('#username').val(''); $('#password').val(''); $('#username').removeClass("ui-state-error"); $('#password').removeClass("ui-state-error"); tips.text(''); }); $m('#myModal').on('show.bs.modal', function () { $("#username").focus(); setTimeout(function () { document.getElementById('username').focus(); }, 1000); //Calling Cookie value and setup username var cookiedata = getCookie("UserName"); if (cookiedata != null) { $('#username').val(cookiedata); } }); $m('#myModal').keyup(function (event) { if (event.keyCode == 13) { $m("#login").click(); } }); $('[data-toggle="tooltip"]').tooltip(); $('#btnlogout').on('click', function (e) { document.getElementById('ctl00_btnHidden_logout').click(); }); $('#btncart').on('click', function (e) { var url = "/cart.aspx"; $(location).attr('href', url); }); $m('#logoutModal').on('hide.bs.modal', function () { window.location.href = "/home.aspx"; }); $("#ctl00_btnSearch").click(function () { $("#ctl00_txtSearchHid").val($("#txtSearch").val()); $("#ctl00_btnHiddenSearch").click(); }); $m('.alphanumcheck').bind('keypress', function (event) { var regex = new RegExp("^[a-zA-Z0-9]+$"); var key = String.fromCharCode(!event.charCode ? event.which : event.charCode); if (!regex.test(key)) { event.preventDefault(); return false; } }); //Number check only $m('.numcheck').bind('keypress', function (event) { var regex = new RegExp("^[0-9]+$"); var key = String.fromCharCode(!event.charCode ? event.which : event.charCode); if (!regex.test(key)) { event.preventDefault(); return false; } }); //Search on Enter key $m("#txtSearch").keypress(function (event) { var keycode = (event.keyCode ? event.keyCode : event.which); if (keycode == 13) { $("#ctl00_txtSearchHid").val($("#txtSearch").val()); $("#ctl00_btnHiddenSearch").click(); } }); }); function openModal() { $('#username').addClass("ui-state-error"); $('#password').addClass("ui-state-error"); updateTips('Invalid username or password!'); $m('#myModal').modal({ show: true }); } function openModalmsg(tips) { $('#username').addClass("ui-state-error"); $('#password').addClass("ui-state-error"); updateTips(tips); $m('#myModal').modal({ show: true }); } function openLogoutModal() { $m('#logoutModal').modal('show'); } function openAlert() { $m('#messageBox').modal('show'); return false; } /*Related with ISO*/ function openAlert1(message) { $m('#ctl00_lblAlert').text(message); $m('#messageBox').modal('show'); return false; } /*Related with ISO*/ function showhideloginbutton() { var loginStatus = document.getElementById('ctl00_txtHidden_LoginStatus').value; if (loginStatus == 'LoggedIn') { $('#btnlogin').hide(); $('#btnlogout').show(); } else { $('#btnlogout').hide(); $('#btnlogin').show(); } } function updateTips(t) { tips = $(".validateTips"); tips // .text(t) //Commented by Swamy on 04 July 2018 --> for GERITM0568665 .html(t) // Added by Swamy on 04 July 2018 --> for GERITM0568665 .addClass("ui-state-highlight"); setTimeout(function () { tips.removeClass("ui-state-highlight", 2500); }, 500); } function checkLength(o, min, max, n) { if (o.val().length > max || o.val().length < min) { o.addClass("ui-state-error"); updateTips(n); return false; } else { o.removeClass("ui-state-error"); return true; } } function checkEmpty(o, n) { if (o.val().length == 0) { o.addClass("ui-state-error"); updateTips(n); return false; } else { o.removeClass("ui-state-error"); return true; } } function AuthenticateUser() { document.getElementById('ctl00_txtUsername').value = $m("#username").val(); document.getElementById('ctl00_txtPassword').value = $m("#password").val(); var uvalue = $m("#username").val(); setCookie("UserName", uvalue, 360); document.getElementById('ctl00_btnHidden_login').click(); } function goToSignupPage() { } function DisplayMessage(t) { $('#dMsgs').dialog({ width: 400, show: 'fade', hide: 'drop', open: function (event, ui) { setTimeout(function () { $('#dMsgs').dialog('close'); }, 8000); } }); $("#errormsg").text(""); $("#errormsg").append(t); } function DisplayMessageHome(t) { $('#dMsgsV2').dialog({ width: 400, show: 'fade', hide: 'drop', open: function (event, ui) { setTimeout(function () { $('#dMsgsV2').dialog('close'); //}, 8000); }, 4000); //reducing the time for login pop-up. } }); $("#lblMsg").text(""); $("#lblMsg").append(t); } function alertV2(t, title) { $('#dMsgsV2').dialog({ width: 400, show: 'fade', hide: 'drop', title: title, open: function (event, ui) { setTimeout(function () { $('#dMsgsV2').dialog('close'); }, 5000); } }); $("#lblMsg").text(""); $("#lblMsg").append(t); } function alertV3(t, title) { $('#dMsgsV3').dialog({ width: 400, show: 'fade', hide: 'drop', title: title, open: function (event, ui) { setTimeout(function () { $('#dMsgsV3').dialog('close'); }, 5000); } }); $("#lblMsg3").text(""); $("#lblMsg3").append(t); } function InitializeRequest(sender, args) { } function EndRequest(sender, args) { // after update occur on UpdatePanel re-init the Autocomplete InitAutoCompl(); } function InitAutoCompl() { } </script> <form name="aspnetForm" method="post" action="./ViewProduct.aspx?Model=P14DH11A2C0620A" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_btnDisableEnter')" id="aspnetForm"> <div> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTQzMDE3ODYxOWRk2ZRV1vF4iQYLWfkDZN8TLZVU0fmxhxYPKJAXDQSaZSY=" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['aspnetForm']; if (!theForm) { theForm = document.aspnetForm; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <script src="/WebResource.axd?d=-4OjTyrZRiuL3s1Hp4aXjSFTMgENtzG4F4FYHNmu3GxFGncDuE20PUxg1QalYpG1aD2RM8qgALOszvCMiPFc72xCSa2m97glatJE0zBZV-Q1&amp;t=638563128220000000" type="text/javascript"></script> <script src="/ScriptResource.axd?d=G41s2f37VpGA_5jPcrRdt76Kl8Lv55S7T_4R2wbVnK80hhOs55humEnZ-Vvg_yzLR1D1XiqeLM1VHmp6FeHy253HafAy_MY_TCdTTROKXuiQ25r9GeZQ0CfGnHptadex46H3sQRkK2Y4-6l8VUXlUN4fllWWY5frNJbpNjkZyH41&amp;t=ffffffffc820c398" type="text/javascript"></script> <script src="/ScriptResource.axd?d=zAW2n0eMecSuF3gAEEaj1SiwXcMBQcbhnm6htcitU-bN_LlWD9EjnWw29M4nBhOg5RYwGMpTIBD7Q0LMQMPShfvdEv6Ir9ztVi-BL3uhxctviuhWzNNPoeUpC1_AOChox-9652ayLOxcv53ll8sqQofcbe0Gm0nMmrqoG0UaZ9LrFQ7VKMOlosa3H1N1FJaq0&amp;t=ffffffffc820c398" type="text/javascript"></script> <script src="/WebResource.axd?d=DNcDh2E4ijd6iPOIU9FUcgzQj8o4wR37j1CAocJL967H5Lt1blRqqgWmI5JWk6nrIEhOgsj7HnUEjvJl4YfDE9yzlj_Qe4ykCAab0gJh7ww1&amp;t=638563128220000000" type="text/javascript"></script> <div> <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="3AE29D83" /> <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEdAC+ApPXjW2AZnkaxGF8EA5OKwWXFD9JVvPvFlBgY5I6t9y/PSAvxybIG70Gi7lMSo2FlcKAMMSJlNLI1BNoRnuT941PuJm2VXhEXaI7QNEYvv9l99pAk+20Tf+g79lCJTVwD232S90rYZPQOcleNDlgfYaC3ndeSYbY1npdQ5HAMmFY7bCiIywUFQBKe9Bw7oURMR1c6VQeEbNm33WHZHIeRSf/GhFB5yYmBcg9//VfdSH5Q9l37HUjK48yTSQYD9cZ8zwTMsYeaRTC/NYDc4ff8DvCh4aWE7WkU8w0HGa3a1qpdjLaLAPuirjZfhzLi1GFD/AImex2t1tkk9YxGSYJl+5Zy7Az7ndgejS0AEh0tHEwJw4bEgixVqC+068jLnxO7WKbJSGhFU7HWbtuGdpDOrsWGR9/EmR256lS6Fbbr5d5s3b5c5tRtvQxfDq5m/qPAv22gQ2pUA0t3nhvRJbOwxQVyoohj+kLOR1eJfUhCjZjpnoRrvE+8j9H0c14lPcqIoEc7i6fmf+y0tIUAT1t0ABNXC/wFtfG2+tne9Qb6FeGPylh/7r4u3BdhEuZ5u5l3I+VmedjnMmunVOkTyOHrBRDw7AZA8Az/WP6ijGnQwQkS4UZqjAnVeG2F4Op6/N6DuUjw5BRUIVNHQLLWFKfZwlNdxt3aKziCXKfCgyBORu3I/pjmL5BZyk6CdpSnwaqO0xOvF+4QF2ikiA7E/d2H1+YKlmQPiUETCPJsoEGks6OspVAbPw9CBHG5M9tZIw79Rn1S3UWbvFSAiPaUnnGJQjsLiTzxbF+FSBhbU4Z6OhN0XqBn2vJJSWy5Nq4h5m7B6MWbardI1yFtTC9zyY1wZi+ETIBZLbrhDC99Rfm11GPvUUIUIU3m264JC565EBN3dNVU88ISEbo7oSxeHNS7grePj/wNhJQQfirRNCvLz6GS6WlgMYve11mLMSSm6cMe5g+TRT4XqUzBA4k7PIn8q6188U0cmlH75wl7qSpsdkCOD5jGa22NBCUxDCbHBjbhQLpHqsxi0Hu9t+iaGLVZ" /> </div> <div class="modal fade" id="messageBox" tabindex="-2" role="dialog" data-backdrop="static"> <div class="container"> <div style="margin-top: 50px;"> <div class="panel panel-info"> <div class="panel-heading"> <div class="panel-title">Alert</div> </div> <div style="padding-top: 10px" class="panel-body alertText"> <div style="margin-bottom: 5px" class="input-group"> <span id="ctl00_lblAlert" style="font-family:lblAlert;"></span> </div> <div id="divAlertCloseButton" class="alertButton"> <button type="button" class="btn btn-primary btnCloseAlert" data-dismiss="modal">Close</button> </div> </div> </div> </div> </div> </div> <div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" data-backdrop="static"> <div class="container"> <div class="panel panel-info"> <div class="panel-heading"> <button type="button" class="close" data-dismiss="modal">&times;</button> <div class="panel-title">Sign Out</div> </div> <div style="padding-top: 10px" class="panel-body"> <div class="msg">You have been signed out of your account</div> <button type="button" class="btn btn-primary" data-dismiss="modal">OK!</button> </div> </div> </div> </div> <div class="modal fade" id="myModal" tabindex="-1" role="dialog"> <div class="container"> <div id="loginbox" style="margin-top: 50px;"> <div class="panel panel-info"> <div class="panel-heading" style="background-color: #005E60;color: #ffffff;border: 1px solid #005E60;"> <button type="button" class="close" data-dismiss="modal">&times;</button> <div class="panel-title">Sign In</div> <div style="float: right; font-size: 80%; position: relative; top: -5px"><a href="/Account/ForgotPassword.aspx" style="color: white;">Forgot password?</a></div> </div> <div style="padding-top: 10px" class="panel-body"> <p class="validateTips" /> <div style="margin-bottom: 5px;" class="input-group"> <span class="input-group-addon" style="background-color: #005E60; color: #c8ff08;"><i class="glyphicon glyphicon-user"></i></span> <input type="text" name="username" id="username" style="height: 30px; width: 220px;" autofocus="focus" /> <img src="/images/tip.jpg" class="btn-tip red-tooltip" data-toggle="tooltip" data-placement="top" title="Online Store username" /> <input name="ctl00$txtUsername" type="text" id="ctl00_txtUsername" style="display: none; width: 10px;" /> </div> <div style="margin-bottom: 5px" class="input-group"> <span class="input-group-addon" style=" background-color: #005E60; color: #c8ff08;"><i class="glyphicon glyphicon-lock"></i></span> <input type="password" name="password" id="password" style="height: 30px; width: 220px;" /> <img src="/images/tip.jpg" class="btn-tip red-tooltip" data-toggle="tooltip" data-placement="top" title="Password is case sensitive" /> <input name="ctl00$txtPassword" type="password" id="ctl00_txtPassword" style="display: none" /> </div> <div style="margin-top: 10px;" class="form-group"> <!-- Button --> <div class="col-sm-12 controls" id="btnGroup"> <a class="buyNowButton" id="login">Sign In</a> <a class="itemBox" style="width:80px;" id="register">Register</a> <a class="itemBox" style="width:80px;" data-dismiss="modal">Cancel</a> <input name="ctl00$txtHidden_LoginStatus" type="text" id="ctl00_txtHidden_LoginStatus" style="display: none;" /> <input type="hidden" name="ctl00$hidUrlHash" id="ctl00_hidUrlHash" /> </div> </div> </div> </div> </div> </div> </div> <!-- /.modal --> <div style="margin-right: auto; margin-left: auto; width: 985px"> <div class="header"> <table width="984" border="0" cellpadding="0" cellspacing="0" style="margin-bottom: 5px; left: auto; right: auto; height: 50px;"> <tr> <td style="width: 350px; padding-left: 5px; vertical-align: top; padding-top: 10px"> <div> <a href="/Home.aspx"> <img src="/images/gev-logo.svg" alt="Grid Solutions Online Store" style="width:225px;height:50px;"/></a> </div> <div style="padding-left:5px;padding-top:20px;color: #005e60;font-weight:bold; font-size:15px;"> <span>Grid Solutions Online Store</span> </div> </td> <td style="vertical-align: top;"> <table style="float: right; width: 370px; margin-top: 0px; margin-right: 20px;" border="0"> <tr> <td colspan="5"> <div class="input-group search-input-group" style="font-size: smaller;"> <div class="input-group-btn masterpage-search-panel"> <input type="hidden" name="masterpage_search_param" value="all" id="masterpage_search_param"> <input type="text" class="masterpage-form-control input-sm " name="txtSearch" id="txtSearch" maxlength="50" placeholder="Search Item..." tabindex="1"> <button id="ctl00_btnSearch" class="btn btn-primary masterpage-search-button btn-sm" type="button"><span class="glyphicon glyphicon-search"></span></button> <input type="hidden" name="ctl00$txtSearchHid" id="ctl00_txtSearchHid" /> <input type="hidden" name="ctl00$txtdrpvalueHid" id="ctl00_txtdrpvalueHid" /> <input type="submit" name="ctl00$btnHiddenSearch" value="" id="ctl00_btnHiddenSearch" style="display: none" /> </div> </div> </td> </tr> <tr> <td style="text-align: right !important;" valign="bottom" align="right"> <a type="button" class="itemBoxCart" id="btncart" name="btncart">&nbsp;&nbsp; <span id="ctl00_lblCartItemsCount">0</span> </a> </td> <td valign="bottom"> </td> <td valign="bottom"> <a type="button" class="itemBox" data-toggle="modal" data-target="#myModal" id="btnlogin" name="btnlogin">Log In / Register </a> <a type="button" class="itemBox" id="btnlogout" name="btnlogout" style="display: none">Logout </a> </td> <td valign="bottom"> </td> <td valign="bottom" align="left"> <!--Changed By Sanjeev Kumar Dated 14th March 2017 for New Support Page--> <a href="../Support.aspx" class="itemBox">Support</a> </td> <td valign="bottom" align="left"> <a href="https://www.gegridsolutions.com/contact.htm#Sales" target="_blank" class="itemBox">Contact Sales </a> </td> <!-- <td valign="bottom" align="left"> <a href="/OLSInfo/OLSInfo.aspx" class="itemBox">Support </a> </td> --> </tr> </table> </td> <td align="right" valign="top" style="width: 100px; text-align: right !important; padding-right: 10px;"> <div class="normal" style="font-size: 12px; text-align: right; margin-top: 8px"> 1.877.605.6777 </div> <div class="normal" style="font-size: 12px; text-align: right; margin-top: 5px"> +678.844.6777 </div> <div class="normalLink" style="margin-top: 4px; margin-bottom: 4px; float: right"> <a href="https://www.GEGridSolutions.com" target="_blank">Grid Solutions</a> </div> </td> </tr> <tr> <td colspan="3"> <div class="WelcomeLabel"> <span id="ctl00_lblWelcome" class="mousehover" name="lblWelcome"></span> </div> </td> </tr> <tr style="border: none;"> <td valign="top" style="border: none;" colspan="3"> <ul class="nav navbar-nav"> <!-- <li> <div id="divMenu1" style="visibility:hidden" > <a href="../home.aspx" ><img src="/images/GEDE_OLS_Menu_DEOLS.jpg" width="132" height="66" border="0" /></a> </div> </li> --> <li class='TopNavBarItem_Left' ></li><li class="dropdown"><a href="#" class="dropdown-toggle TopNavBarItem" data-toggle="dropdown" style='width:130px;' >Critical Communications<span class=""></span></a><ul class="dropdown-menu multi-level" ><li ><Div class='featuredMenuItem'><div class='featuredMenuItemLink'><a href="../../MDS/Front.aspx">Featured Products</a></div><div class='featuredMenuItemImage'><img alt=Featured Products src="/images/DE/GEDE_OLS_Feat_comm.gif" /></div></Div></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=12" class="dropdown-toggle" >Wireless Licensed Solutions</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=12" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=Orbit" >MDS Orbit MCR</a></li><li><a href="../ViewProduct.aspx?Model=Orbit ECR" >MDS Orbit ECR</a></li><li><a href="../ViewProduct.aspx?Model=Orbit OCR" >MDS Orbit OCR</a></li><li><a href="../ViewProduct.aspx?Model=MDS Master Stn" >MDS Master Station</a></li><li><a href="../ViewProduct.aspx?Model=SD" >SD Series Long Range IP/Ethernet & Serial</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=13" class="dropdown-toggle" >Wireless Unlicensed Solutions</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=13" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=TransNEXT" >MDS TransNEXT</a></li><li><a href="../ViewProduct.aspx?Model=Orbit" >MDS Orbit MCR</a></li><li><a href="../ViewProduct.aspx?Model=Orbit ECR" >MDS Orbit ECR</a></li><li><a href="../ViewProduct.aspx?Model=Orbit OCR" >MDS Orbit OCR</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=130" class="dropdown-toggle" >I/O Solutions</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=130" >Overview</a></li><li><a href="../ViewProduct.aspx?model=IOX" >Remote Solutions</a></li><li><a href="../MDS/NETioMigrationSolutions.aspx" >NETio Migration Solutions</a></li><li><a href="../MDS/head-endsolutions.aspx" >Head-End Solutions</a></li><li><a href="../MDS/MDSIOAccesories.aspx" >Accessories</a></li><li><a href="../MDS/CustomIOSolutions.aspx" >Custom IO Solutions</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=100" class="dropdown-toggle" >Cellular Solutions</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=100" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=Orbit" >MDS Orbit MCR Series</a></li><li><a href="../ViewProduct.aspx?Model=Orbit ECR" >MDS Orbit ECR Series</a></li><li><a href="../ViewProduct.aspx?Model=Orbit OCR" >MDS Orbit OCR</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=14" class="dropdown-toggle" >Network Management</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=14" >Overview</a></li><li><a href="../ProdCategory.aspx?SPID=3677&TYPE=ACCESSORY" >PulseNET</a></li><li><a href="../ProdCategory.aspx?SPID=3678&TYPE=ACCESSORY" >PulseNET Enterprise</a></li><li><a href="../ProdCategory.aspx?SPID=3679&TYPE=ACCESSORY" >PulseNET Enterprise Upgrade</a></li><li><a href="../ProdCategory.aspx?SPID=2452&TYPE=ACCESSORY" >PulseNET Annual Maintenance - 1 Device</a></li><li><a href="../ProdCategory.aspx?SPID=2455&TYPE=ACCESSORY" >PulseNET Enterprise Annual Maintenance - 1 Device </a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=102" class="dropdown-toggle" >Wireless Enclosure Systems</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=102" >Overview</a></li><li><a href="../MDS/MDSRM.aspx" >Rack Mount Models</a></li><li><a href="../MDS/MDSERP.aspx" >Enclosure Ready Panel Models</a></li><li><a href="../MDS/MDSPE.aspx" >Outdoor Packaged Enclosure Models</a></li><li><a href="../MDS/MDSCustomModel.aspx" >Customized Model</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=15" class="dropdown-toggle" >Accessories</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=15" >Overview</a></li><li><a href="../MDS/Acc_Results.aspx?ProdID=47" >Antennas</a></li><li><a href="../MDS/Acc-RFkits.aspx?ProdID=48" >RF Kits</a></li><li><a href="../MDS/Acc_Results.aspx?ProdID=49" >Power Supplies</a></li><li><a href="../MDS/Acc-Cables.aspx?ProdID=50" >Cables & Connectors</a></li><li><a href="../MDS/Acc_Results.aspx?ProdID=51" >Installation Tools & Hardware</a></li><li><a href="../MDS/Acc_Results.aspx?ProdID=52" >Filters & Surge Suppressors</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=16" class="dropdown-toggle" >Ethernet Switches</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=16" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=S20" >S20 Managed Ethernet Switch</a></li><li><a href="../ViewProduct.aspx?Model=H49" >H49 PRP/HSR Redbox Switch</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=133" class="dropdown-toggle" >Time Synchronization</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=133" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=RT430" >RT430 GNSS Precision-Time Clock</a></li><li><a href="../ViewProduct.aspx?Model=RT431" >RT431 GPS Precision-Time Clock</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=17" class="dropdown-toggle" >Routers & Converters</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=17" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=Multinet" >MultiNet Serial to Ethernet Converter</a></li><li><a href="/ProdCategory.aspx?TYPE=ACCESSORY&SPID=9999" >MiCOM P40U – Serial/Parallel to USB Adapter</a></li></ul></li><li><a href="../../Training/TrainingCourses.aspx?ProdCatId=59" >Training Courses</a></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=107" class="dropdown-toggle" >Lentronics JMUX Parts</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=107" >Overview</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1008&ProdCatId=107" >Common Equipment</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1012&ProdCatId=107" >Optical Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1016&ProdCatId=107" >SPE Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1010&ProdCatId=107" >VT Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1011&ProdCatId=107" >DS-0 Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=687&ProdCatId=107" >Teleprotection Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1014&ProdCatId=107" >Cabling / Accessories</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1013&ProdCatId=107" >Documentation</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1017&ProdCatId=107" >Software</a></li><li><a href="../Lentronics/ListParts.aspx?cat=648&ProdCatId=107" >Services</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=108" class="dropdown-toggle" >Lentronics TN1U Parts</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=108" >Overview</a></li><li><a href="../Lentronics/ListParts.aspx?cat=649&ProdCatId=108" >Common Equipment</a></li><li><a href="../Lentronics/ListParts.aspx?cat=653&ProdCatId=108" >Optical Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=688&ProdCatId=108" >TUG-3 Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=650&ProdCatId=108" >TU-1 Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=652&ProdCatId=108" >DS-0 Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=689&ProdCatId=108" >Teleprotection Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=655&ProdCatId=108" >Cabling / Accessories</a></li><li><a href="../Lentronics/ListParts.aspx?cat=654&ProdCatId=108" >Documentation</a></li><li><a href="../Lentronics/ListParts.aspx?cat=658&ProdCatId=108" >Software</a></li><li><a href="../Lentronics/ListParts.aspx?cat=659&ProdCatId=108" >Services</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=109" class="dropdown-toggle" >Lentronics TN1Ue Parts</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=109" >Overview</a></li><li><a href="../Lentronics/ListParts.aspx?cat=660&ProdCatId=109" >Common Equipment</a></li><li><a href="../Lentronics/ListParts.aspx?cat=664&ProdCatId=109" >Optical Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=690&ProdCatId=109" >TUG-3 Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=661&ProdCatId=109" >TU-1 Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=663&ProdCatId=109" >DS-0 Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=691&ProdCatId=109" >Teleprotection Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=666&ProdCatId=109" >Cabling / Accessories</a></li><li><a href="../Lentronics/ListParts.aspx?cat=665&ProdCatId=109" >Documentation</a></li><li><a href="../Lentronics/ListParts.aspx?cat=669&ProdCatId=109" >Software</a></li><li><a href="../Lentronics/ListParts.aspx?cat=670&ProdCatId=109" >Services</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=128" class="dropdown-toggle" >Lentronics TTMX Parts</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=2&ProdCatId=128" >Overview</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1207&ProdCatId=128" >Common Equipment</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1208&ProdCatId=128" >TU-1 Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1209&ProdCatId=128" >DS-0 Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1210&ProdCatId=128" >Teleprotection Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1211&ProdCatId=128" >Cabling / Accessories</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1212&ProdCatId=128" >Documentation</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1213&ProdCatId=128" >Software</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1214&ProdCatId=128" >Services</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=2&ProdCatId=129" class="dropdown-toggle" >Lentronics JunglePAX Parts</a><ul class="dropdown-menu"><li><a href="/ProductCategory.aspx?CatId=2&ProdCatId=129" >Overview</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1216&ProdCatId=129" >Common Equipment</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1217&ProdCatId=129" >Optical Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1218&ProdCatId=129" >Access Level Interface</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1219&ProdCatId=129" >Access Level Interface - Teleprotection</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1220&ProdCatId=129" >Cabling / Accessories</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1221&ProdCatId=129" >NMS Server</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1222&ProdCatId=129" >Software</a></li><li><a href="../Lentronics/ListParts.aspx?cat=1223&ProdCatId=129" >Services</a></li></ul></li></ul></li><li class="dropdown"><a href="../Multilin/Front.aspx" class="dropdown-toggle TopNavBarItem" data-toggle="dropdown" style='width:130px;' >Protection & Control<span class=""></span></a><ul class="dropdown-menu multi-level" ><li ><Div class='featuredMenuItem'><div class='featuredMenuItemLink'><a href="../../Multilin/Front.aspx">Featured Products</a></div><div class='featuredMenuItemImage'><img alt=Featured Products src="/images/DE/GEDE_OLS_Feat_PC.gif" /></div></Div></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=3&ProdCatId=19" class="dropdown-toggle" >Generation</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=19" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=889" >889 Generator Protection System</a></li><li><a href="../ViewProduct.aspx?Model=G60" >G60 Generator Protection System</a></li><li><a href="../ViewProduct.aspx?Model=G30" >G30 Generator Protection System</a></li><li><a href="../ViewProduct.aspx?Model=P343" >P343 Medium to Large Sized Generator Management Relay</a></li><li><a href="../ViewProduct.aspx?Model=P341" >P341 Grid Interconnect Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=GPM" >GPM-F Field Ground Protection Module</a></li><li><a href="../ViewProduct.aspx?Model=P345" >P345 Large Generator Management Relay with Stator Earth Fault</a></li><li><a href="../ViewProduct.aspx?Model=P14DG" >P14DG Distributed Generator Interconnection Relay</a></li><li><a href="../ViewProduct.aspx?Model=GPM-S" >GPM-S Stator Ground Protection Module</a></li><li><a href="../FRupgrade489.aspx?Model=489" >489 to 889 Retrofit Generator Protection System</a></li><li><a href="../ViewProduct.aspx?Model=P391" >P391 Rotor Earth Fault Module</a></li><li><a href="../ViewProduct.aspx?Model=DGPR" >DGPR Retrofit Solution</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=3&ProdCatId=20" class="dropdown-toggle" >Transformer</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=20" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=T60" >T60 Transformer Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=845" >845 Transformer Protection System</a></li><li><a href="../ViewProduct.aspx?Model=345" >345 Transformer Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=P64" >P64 Transformer Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=P643" >P643 - 3 End Transformer Management Relay</a></li><li><a href="../ViewProduct.aspx?Model=P642" >P642 - 2 Winding Transformer Management Relay</a></li><li><a href="../ViewProduct.aspx?Model=P652" >P652 - 2 Winding Transformer Management Relay</a></li><li><a href="../ViewProduct.aspx?Model=P645" >P645 - 5 End Transformer Management Relay</a></li><li><a href="../ViewProduct.aspx?Model=T35" >T35 Transformer Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=P641" >P641 Transformer Protection Relay</a></li><li><li class="dropdown-submenu pull-left"><a href="../SubProductCategory.aspx?CatId=3&ProdCatId=20&ProdID=1247" >Retrofit</a><ul class="dropdown-menu"><li><a href="../SRupgrade745.aspx?Model=745" >745 to 845 Retrofit Kit</a></li></ul></li></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=3&ProdCatId=21" class="dropdown-toggle" >Transmission</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=21" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=P44" >P44 MiCOMho 5<sup>th</sup> Generation Line Distance Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=P54" >P54 MiCOM 5<sup>th</sup>Generation Line Differential Protection Relay</a></li><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=21&filter=P543-5" >P543/5/6 Line Differential Protection Relay (Optional Distance)</a></li><li><a href="../ViewProduct.aspx?Model=D60" >D60 Line Distance Relay</a></li><li><a href="../ViewProduct.aspx?Model=P44T" >P44T Catenary Distance Protection</a></li><li><a href="../ViewProduct.aspx?Model=L90" >L90 Line Differential Protection System</a></li><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=21&filter=P441-4" >P442/4 Line Distance Management Relays</a></li><li><a href="../ViewProduct.aspx?Model=L60" >L60 Line Phase Comparison Relay</a></li><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=21&filter=P54A-E" >P54A/B/C/E Multi-Ended Line Differential Protection</a></li><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=21&filter=P443-6" >P443/5/6 MiCOMho Distance Protection Relays</a></li><li><a href="../ViewProduct.aspx?Model=L30" >L30 Line Current Differential System</a></li><li><a href="../ViewProduct.aspx?Model=D30" >D30 Line Distance Relay</a></li><li><a href="../ViewProduct.aspx?Model=P841" >P841 Line Terminal Protection System</a></li><li><a href="../ViewProduct.aspx?Model=P541" >P541 Line-Differential Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=P591" >P591 Interface Unit - Fiber Optic to G.703</a></li><li><a href="../ViewProduct.aspx?Model=P593" >P593 Interface Unit - Fiber Optic to X.21</a></li><li><a href="../ViewProduct.aspx?Model=P542" >P542 Line Differential Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=P847" >P847 Phasor Measurement Unit</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=3&ProdCatId=22" class="dropdown-toggle" >Bus</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=22" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=B90D" >B90 Bus Differential Relay</a></li><li><a href="../ViewProduct.aspx?Model=B30" >B30 Bus Differential Relay</a></li><li><a href="../ViewProduct.aspx?Model=P741" >P741 - Busbar Differential Relay (Central Unit)</a></li><li><a href="../ViewProduct.aspx?Model=P742" >P742 - Busbar Differential Relay (Peripheral Unit)</a></li><li><a href="../ViewProduct.aspx?Model=P747" >P747 – Busbar Differential Relay</a></li><li><a href="../ViewProduct.aspx?Model=P746" >P746 – Busbar Differential Relay </a></li><li><a href="../ViewProduct.aspx?Model=P743" >P743 - Busbar Differential Relay (Extended Peripheral Unit)</a></li><li><a href="../ViewProduct.aspx?Model=MFAC" >MFAC: High – Speed Differential Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=MCAG" >MCAG High - Speed Differential Protection</a></li><li><a href="../ViewProduct.aspx?Model=MVTP" >MVTP – Buswire Supervision Relay</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=3&ProdCatId=23" class="dropdown-toggle" >Network</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=23" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=N60" >N60 Network Stability and Synchrophasor Measurement System</a></li><li><a href="../ViewProduct.aspx?Model=C70" >C70 Capacitor Bank Relay</a></li><li><a href="../ViewProduct.aspx?Model=C60" >C60 Breaker Management System</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=3&ProdCatId=24" class="dropdown-toggle" >Feeder Protection</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=24" >Overview</a></li><li><li class="dropdown-submenu pull-left"><a href="../SubProductCategory.aspx?CatId=3&ProdCatId=24&ProdID=1142" >Distribution & Industrial Advanced Feeder Protection with Mimic</a><ul class="dropdown-menu"><li><a href="../ViewProduct.aspx?Model=850" >850 Feeder Protection & Control with Color Mimic</a></li><li><a href="../ViewProduct.aspx?Model=F650" >F650 Feeder Protection System</a></li></ul></li></li><li><li class="dropdown-submenu pull-left"><a href="../SubProductCategory.aspx?CatId=3&ProdCatId=24&ProdID=1143" >Distribution & Industrial Enhanced Compact Feeder</a><ul class="dropdown-menu"><li><a href="../ViewProduct.aspx?Model=P14DB-E" >P14DB Enhanced Directional Feeder in Compact Case</a></li><li><a href="../ViewProduct.aspx?Model=P14DL-E" >P14DL Enhanced Directional Feeder in Compact Case with Reclose & Fault Location</a></li><li><a href="../ViewProduct.aspx?Model=P14NB-E" >P14NB Enhanced Non-Directional Feeder in Compact Case</a></li><li><a href="../ViewProduct.aspx?Model=P14NL-E" >P14NL Enhanced Non-Directional Feeder in Compact Case with Reclose</a></li><li><a href="../ViewProduct.aspx?Model=P94VB-E" >P94VB Enhanced Voltage and Frequency in Compact Case</a></li><li><a href="../ViewProduct.aspx?Model=P94VP-E" >P94VP Enhanced Voltage and Frequency in Compact Case with Reclose and Check Synch</a></li></ul></li></li><li><a href="/ViewProduct.aspx?Model=M-Agile" >Distribution & Industrial Feeder Protection & Control</a></li><li><li class="dropdown-submenu pull-left"><a href="../SubProductCategory.aspx?CatId=3&ProdCatId=24&ProdID=1144" >Distribution & Industrial Feeder Relays</a><ul class="dropdown-menu"><li><a href="../ViewProduct.aspx?Model=P14DB" >P14DB Directional Feeder - MIDOS Scalable Case</a></li><li><a href="../ViewProduct.aspx?Model=P14DL" >P14DL Directional Feeder with Reclose & Fault Location - MIDOS Scalable Case</a></li><li><a href="../ViewProduct.aspx?Model=P14DZ" >P14DZ Directional Feeder Relay with High Impedance Fault Detection</a></li><li><a href="../ViewProduct.aspx?Model=P14DH" >P14DH Directional Feeder Relay with Wattmetric Earth Fault</a></li><li><a href="../ViewProduct.aspx?Model=P14DH11A2C0620A" >P14DH - Directional Feeder Relay with NF C 13100 & UTE C15400</a></li><li><a href="../ViewProduct.aspx?Model=P14NB" >P14NB Non-directional Feeder - MIDOS Scalable Case</a></li><li><a href="../ViewProduct.aspx?Model=P14NZ" >P14NZ Non-directional Feeder with High Impedance Fault Detection & Reclose</a></li><li><a href="../ViewProduct.aspx?Model=P94VB" >P94VB Voltage and Frequency Relay - MIDOS Scalable Case</a></li><li><a href="../ViewProduct.aspx?Model=P94VP" >P94VP Voltage & Frequency Relay with Check Synch - MIDOS Scalable Case</a></li><li><a href="../ViewProduct.aspx?Model=P94VR" >P94VR Voltage & Frequency Relay with Check Synch and - MIDOS Scalable Case</a></li><li><a href="../ViewProduct.aspx?Model=350" >350 Feeder Protection System</a></li></ul></li></li><li><li class="dropdown-submenu pull-left"><a href="../SubProductCategory.aspx?CatId=3&ProdCatId=24&ProdID=1145" >Transmission & Sub-Transmission Modular Protection</a><ul class="dropdown-menu"><li><a href="../ViewProduct.aspx?Model=P84" >P84 MiCOM 5<sup>th</sup> Generation Multi-Functional Line Terminal Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=F60" >F60 Feeder Protection Universal Relay</a></li><li><a href="../ViewProduct.aspx?Model=P145" >P145 Feeder Management Relay with Autoreclose, Synchronizing & Function Keys</a></li><li><a href="../ViewProduct.aspx?Model=P144" >P144 Feeder Management Relay with Autoreclose & Transient Earth Fault Detection</a></li><li><a href="../ViewProduct.aspx?Model=P143" >P143 Feeder management Relay with Autoreclose & Check Synchronizing</a></li><li><a href="../ViewProduct.aspx?Model=P142" >P142 Feeder management Relay with Autoreclose</a></li><li><a href="../ViewProduct.aspx?Model=P141" >P141 Feeder Management Relay</a></li></ul></li></li><li><li class="dropdown-submenu pull-left"><a href="../SubProductCategory.aspx?CatId=3&ProdCatId=24&ProdID=1146" >Multi-Feeder / Multi-Bay Protection</a><ul class="dropdown-menu"><li><a href="../ViewProduct.aspx?Model=F35" >F35 Multiple Feeder Management Relay</a></li></ul></li></li><li><li class="dropdown-submenu pull-left"><a href="../SubProductCategory.aspx?CatId=3&ProdCatId=24&ProdID=1147" >Low Voltage and Medium Voltage Feeder Relays</a><ul class="dropdown-menu"><li><a href="../ViewProduct.aspx?Model=P15D" >P15D Dual Powered Overcurrent Relay</a></li><li><a href="../ViewProduct.aspx?Model=P153" >P153 Compact Feeder Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=P154" >P154 Non-directional Overcurrent Relay</a></li></ul></li></li><li><li class="dropdown-submenu pull-left"><a href="../SubProductCategory.aspx?CatId=3&ProdCatId=24&ProdID=1148" >Retrofit</a><ul class="dropdown-menu"><li><a href="../SRupgrade.aspx?Model=750" >750/760 to 850 Retrofit Kit</a></li><li><a href="../SRupgrade735.aspx?Model=735" >735 to 850 Retrofit Kit</a></li></ul></li></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=3&ProdCatId=26" class="dropdown-toggle" >Motor</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=26" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=M-Agile Motor" >P24N/D Multilin Agile Motor Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=859" >859 Motor Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=869" >869 Motor Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=M60" >M60 Motor Protection System</a></li><li><a href="../FRupgrade.aspx?Model=469" >469 to 869 Retrofit Motor Protection System</a></li><li><a href="../ViewProduct.aspx?Model=P241" >P241 Motor Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=P242" >P242 Motor Protection Relay with Extended IO</a></li><li><a href="../ViewProduct.aspx?Model=P243" >P243 Motor Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=P253" >P253 Motor Protection Relay</a></li><li><a href="../ViewProduct.aspx?Model=MM300E" >MM300 Enhanced Motor Protection System</a></li><li><a href="../ViewProduct.aspx?Model=RMIO" >RMIO Remote Module I/O</a></li><li><a href="../ViewProduct.aspx?Model=339" >339 Motor Protection Relay</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=3&ProdCatId=27" class="dropdown-toggle" >Special Function/Control</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=27" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=C30" >C30 Controller</a></li><li><a href="../Viewproduct.aspx?model=C650" >C650 - Bay Controller and Monitoring System</a></li><li><a href="../ViewProduct.aspx?Model=N60" >N60 Network Stability & Synchrophasor Protection</a></li><li><a href="../ViewProduct.aspx?Model=CIO" >CIO Remote CAN Bus I/O Module</a></li><li><a href="../ViewProduct.aspx?Model=RRTD" >RRTD Remote RTD Module</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=3&ProdCatId=28" class="dropdown-toggle" >IEC 61850 Process Bus</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=28" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=MU320E" >MU320 Extended Version</a></li><li><a href="../ViewProduct.aspx?Model=Brick" >HardFiber Brick Process Interface Unit</a></li><li><a href="../ViewProduct.aspx?Model=UR-ProcessBus" >IEC 61850 Process Bus Module</a></li><li><a href="../ViewProduct.aspx?Model=MU640" >MU640 HVDC Merging Unit</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=3&ProdCatId=29" class="dropdown-toggle" >Meters</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=29" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=EPM9900P" >EPM 9900P Advanced Power Quality Meter</a></li><li><a href="../ViewProduct.aspx?Model=EPM9700" >EPM 9700 Advanced Power Quality Meter</a></li><li><a href="../ViewProduct.aspx?Model=EPM7000P" >EPM 7000P – Power Quality Meter</a></li><li><a href="../ViewProduct.aspx?Model=PL7000PT" >EPM 7000PT – Power Quality Meter - Transducer </a></li><li><a href="../ViewProduct.aspx?Model=EPM7000" >EPM 7000 Power Quality Meter</a></li><li><a href="../ViewProduct.aspx?Model=PQMII" >PQMII Power Quality Meter</a></li><li><a href="../ViewProduct.aspx?Model=EPM6000" >EPM 6000 Multi-Function Power Meter</a></li><li><a href="../ViewProduct.aspx?Model=EPM6010" >EPM 6010 Building Automation Power Meter</a></li><li><a href="../ViewProduct.aspx?Model=EPM2200" >EPM 2200 Power Meter</a></li><li><a href="../ViewProduct.aspx?Model=EPM4600" >EPM 4600 Multi-feed Power and Energy Meter</a></li><li><a href="../ViewProduct.aspx?Model=EPM4600%20Display" >EPM 4600 Touch Screen Display</a></li><li><a href="../ViewProduct.aspx?Model=PLSOFT" >GE Communicator - Advanced Setup, Visualization and Analysis Software for EPM Meters</a></li><li><a href="../ViewProduct.aspx?Model=PLSOFT-EAG" >GE Energy Aggregator - Energy Visualization, Analysis and Reporting Software Solution</a></li><li><a href="../ViewProduct.aspx?Model=I5M" >iSTAT i500 - i5MC, i5MV Single- Phase High Performance Transducer</a></li><li><a href="../ViewProduct.aspx?Model=I5MX" >iSTAT i500 – i5MT Three-Phase High Performance Multifunction Transducer</a></li><li><a href="../ViewProduct.aspx?Model=I4MC-I4MV" >iSTAT i4Mx – i4MC, i4MV Single Phase Transducer</a></li><li><a href="../ViewProduct.aspx?Model=I4MT" >iSTAT i4MT - Three Phase Transducer</a></li><li><a href="../ViewProduct.aspx?Model=i4Dx" >iSTAT i4Dx – i4DB DC Transducers</a></li><li><a href="../ViewProduct.aspx?Model=BA3" >BA300 Substation Battery Monitoring</a></li><li><a href="../ViewProduct.aspx?Model=M2x2" >iSTAT M232 Communicating Measurement Centre</a></li><li><a href="../ViewProduct.aspx?Model=M2x3" >iSTAT M2x3 High Performance Measurement Centre</a></li><li><a href="../ViewProduct.aspx?Model=M365" >iSTAT M365 Power Quality Analyser</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=3&ProdCatId=30" class="dropdown-toggle" >Electromechanical/Single Function</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=30" >Overview</a></li><li><a href="../Single.aspx" >Single Function Relay Products</a></li><li><a href="../ViewProduct.aspx?Model=MVAX11" >MVAX11 Tripping & Interposing Supervision Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAX12" >MVAX12 Supply Supervision Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAX21" >MVAX21 Trip Circuit Supervision Relay (CB Closed only)</a></li><li><a href="../ViewProduct.aspx?Model=MVAX31" >MVAX31 Trip Circuit Supervision Relay (CB Open or Closed)</a></li><li><a href="../ViewProduct.aspx?Model=MVAX91" >MVAX91 Trip Circuit Supervision Relay With Preclosing Supervision</a></li><li><a href="../ViewProduct.aspx?Model=MMLB" >MMLB Test Plug</a></li><li><a href="../ViewProduct.aspx?Model=MMLG" >MMLG Test Module</a></li><li><a href="../ViewProduct.aspx?Model=PRIMA" >PRIMA</a></li><li><a href="../ViewProduct.aspx?Model=MVAA13" >MVAA13– One Unit, hand reset Auxiliary Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAA16" >MVAA16– One Unit, high Speed Self reset Auxiliary Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAA21" >MVAA21– Two Units, self-reset Auxiliary Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAA23" >MVAA23– Two Units, hand reset Auxiliary Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAJ" >MVAJ 05x/10x/20x – Tripping Relay High or Low Burden</a></li><li><a href="../ViewProduct.aspx?Model=P991" >P991 – Test Block</a></li><li><a href="../ViewProduct.aspx?Model=MBCI" >MBCI - Pilot Wire Line Differential Relay</a></li><li><a href="../ViewProduct.aspx?Model=MCRI" >MCRI – Pilot Wire Line Differential Relay</a></li><li><a href="../ViewProduct.aspx?Model=MRTP" >MRTP Pilot Supervision and Injection Units</a></li><li><a href="../ViewProduct.aspx?Model=MVTT" >MVTT Timing Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAJ23" >MVAJ23 High Burden Tripping Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAJ13" >MVAJ13 - Low Burden Tripping Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAJ21" >MVAJ21 - High Burden Tripping Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAW02" >MVAW02 Low Burden Inter-trip Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAW13" >MVAW Interposing Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAW21" >MVAW21 Interposing Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVUA11" >MVUA11 Auxiliary Relay with fixed time delay</a></li><li><a href="../ViewProduct.aspx?Model=MVAJ25" >MVAJ25 High Burden Tripping Relay with Hand/Electrical Reset Contacts</a></li><li><a href="../ViewProduct.aspx?Model=MVAJ11" >MVAJ11 Low Burden Tripping Relay (Self Reset Contacts)</a></li><li><a href="../ViewProduct.aspx?Model=MVAJ14" >MVAJ14 Low Burden Control Relay (Electrically Reset Contacts)</a></li><li><a href="../ViewProduct.aspx?Model=MCAA" >MCAA Current Operated Auxiliary Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAP22" >MVAP22 Voltage Selection and Supply Supervision Relay</a></li><li><a href="../ViewProduct.aspx?Model=MVAZ04" >MVAZ04 Protection In/Out Relay</a></li><li><a href="../ViewProduct.aspx?Model=MMLZ" >MMLZ Range of Auxiliary Modules</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=3&ProdCatId=31" class="dropdown-toggle" >Software </a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=3&ProdCatId=31" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=VP" >EnerVista Viewpoint Monitoring</a></li><li><a href="../ViewProduct.aspx?Model=VPVIEW" >EnerVista Viewpoint Monitoring ViewNodes</a></li></ul></li><li><a href="../../Training/TrainingCourses.aspx?ProdCatId=60" >Training Courses</a></li><li><a href="../../CyberSecurity.aspx" >Cyber Security</a></li><li><a href="../../Accessories.aspx" >Accessories</a></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=3&ProdCatId=101" class="dropdown-toggle" >Measurement and Recording</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatID=3&ProdCatid=101" >Overview</a></li><li><a href="../ViewProduct.aspx?model=DR60" >DR60 Digital Fault Recorder</a></li><li><a href="../ViewProduct.aspx?model=RPV311" >RPV311 Multifunction Recorder</a></li><li><a href="../ViewProduct.aspx?Model=RA331" >RA331 Acquisition Module for RPV311</a></li><li><a href="../ViewProduct.aspx?Model=RA332" >RA332 Acquisition Module for RPV311</a></li><li><a href="../ViewProduct.aspx?model=RA333" >RA333 Travelling Wave and DFR Acquisition Module for RPV311</a></li></ul></li><li><a href="../DITLookup.aspx?ProductCatID=119" >Digital Instrument Transformers</a></li></ul></li><li class="dropdown"><a href="#" class="dropdown-toggle TopNavBarItem" data-toggle="dropdown" style='width:130px;' >Substation Automation<span class=""></span></a><ul class="dropdown-menu multi-level" ><li ><Div class='featuredMenuItem'><div class='featuredMenuItemLink'><a href="../../Energy/Front.aspx">Featured Products</a></div><div class='featuredMenuItemImage'><img alt=Featured Products src="/images/DE/G500.jpg" /></div></Div></li><li><a href="../ViewProduct.aspx?Model=PLH+-+Power+Link+HMI" >Substation HMI Software</a></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=4&ProdCatId=37" class="dropdown-toggle" >Gateways</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=4&ProdCatId=37" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=G100" >G100 Advanced Substation Gateway </a></li><li><a href="../ViewProduct.aspx?Model=G500" >G500 Advanced Substation Gateway</a></li><li><a href="../ViewProduct.aspx?Model=MCP-S" >MCP Substation Gateway Spare Parts</a></li><li><a href="../ViewProduct.aspx?Model=iBox" >iBox Serial Substation Controller</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=4&ProdCatId=38" class="dropdown-toggle" >Remote Terminal Units</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=4&ProdCatId=38" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=D25" >D25 Multifunction IED</a></li><li><a href="../ViewProduct.aspx?Model=D25 Spare Parts" >D25 Spare Parts</a></li><li><a href="../ViewProduct.aspx?Model=iBox" >iBox Serial Substation Controller</a></li><li><a href="../ViewProduct.aspx?Model=C264" >C264 Modular Bay Computer</a></li><li><a href="../ViewProduct.aspx?Model=SASRTU" >Single RTU Assembly</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=4&ProdCatId=113" class="dropdown-toggle" >I/O Modules</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=4&ProdCatId=113" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=D20CP" >D20 Program Chip Set</a></li><li><a href="../ProdCategory.aspx?PID=2726&TYPE=PART" >D20 Parts/Accessories</a></li><li><a href="../ViewProduct.aspx?Model=D20%20KI" >D20/D25 Interposer Relay Module</a></li><li><a href="../ViewProduct.aspx?Model=D20A" >D20A Analog Input Module</a></li><li><a href="../ViewProduct.aspx?Model=D20A%20Spare%20Parts" >D20A Analog Input Module Spare Parts</a></li><li><a href="../ViewProduct.aspx?Model=D20A%20DNP%20IO" >D20A DNP3 Analog Input Module</a></li><li><a href="../ViewProduct.aspx?Model=D20C%20Parts" >D20C Combination I/O Module Spare Parts</a></li><li><a href="../ViewProduct.aspx?Model=D20C" >D20C Combination Input/Output Module</a></li><li><a href="../ViewProduct.aspx?Model=D20C%20DNP%20IO" >D20C DNP3 Combination I/O Module</a></li><li><a href="../ViewProduct.aspx?Model=D20E" >D20E Substation I/O Module</a></li><li><a href="../ViewProduct.aspx?Model=D20K" >D20K Control Output Module</a></li><li><a href="../ViewProduct.aspx?Model=D20K%20DNP%20IO" >D20K DNP3 Control Output Module</a></li><li><a href="../ViewProduct.aspx?Model=D20K%20Spare%20Parts" >D20K Spare Parts</a></li><li><a href="../ViewProduct.aspx?Model=D20KIS%20Parts" >D20KI Interposer Relay Panel Spare Parts</a></li><li><a href="../ViewProduct.aspx?Model=D20S%20DNP%20IO" >D20S DNP3 Status Input Module</a></li><li><a href="../ViewProduct.aspx?Model=D20S%20Spare%20Parts" >D20S Spare Parts</a></li><li><a href="../ViewProduct.aspx?Model=D20S" >D20S Status Input Module</a></li></ul></li><li><a href="../../Energy/replacementparts.aspx" >Replacement Parts</a></li><li><a href="../../Training/TrainingCourses.aspx?ProdCatId=62" >Training Courses</a></li></ul></li><li class="dropdown"><a href="#" class="dropdown-toggle TopNavBarItem" data-toggle="dropdown" style='width:120px;' >Monitoring & Diagnostics <span class=""></span></a><ul class="dropdown-menu multi-level" ><li ><Div class='featuredMenuItem'><div class='featuredMenuItemLink'><a href="../../MD/Front.aspx">Featured Products</a></div><div class='featuredMenuItemImage'><img alt=Featured Products src="/images/DE/GEDE_OLS_Feat_MD.gif" /></div></Div></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=5&ProdCatId=41" class="dropdown-toggle" >Single Gas Monitoring</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=5&ProdCatId=41" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=HydranM2X" >Hydran M2-X</a></li><li><a href="../ViewProduct.aspx?Model=Hydran-M2X-HZ" >Hydran M2X for Hazardous Locations</a></li><li><a href="../ViewProduct.aspx?Model=H201TI" >Hydran201TI</a></li><li><a href="../ViewProduct.aspx?Model=H201Ci" >Hydran 201Ci</a></li><li><a href="../ViewProduct.aspx?Model=H201Ci-C" >Hydran 201Ci-C</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=5&ProdCatId=42" class="dropdown-toggle" >Transformer Solutions</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=5&ProdCatId=42" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=BMT430" >BMT 430</a></li><li><a href="../ViewProduct.aspx?Model=BMT330" >Intellix BMT 330</a></li><li><a href="../OilLab.aspx" >Oil Lab Analysis</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=5&ProdCatId=43" class="dropdown-toggle" >Multiple Gas Monitoring</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=5&ProdCatId=43" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=MINITRANS" >MINITRANS</a></li><li><a href="../ViewProduct.aspx?Model=DGA500" >Kelman DGA 500</a></li><li><a href="../ViewProduct.aspx?Model=DGA900" >Kelman DGA 900</a></li><li><a href="../ViewProduct.aspx?Model=DGA900plus" >Kelman DGA 900 PLUS</a></li><li><a href="../ViewProduct.aspx?Model=DGA900-Multitran" >Kelman DGA 900 MULTITRANS</a></li><li><a href="../ViewProduct.aspx?Model=DGA900-Taptrans" >Kelman DGA 900 TAPTRANS</a></li><li><a href="../ViewProduct.aspx?Model=DGA900 TapTrans Plus" >Kelman DGA 900 TAPTRANS PLUS</a></li><li><a href="../ViewProduct.aspx?Model=TRANSPORTX2" >Transport X2</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=5&ProdCatId=112" class="dropdown-toggle" >Software Solutions</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=5&ProdCatId=112" >Overview</a></li><li><a href="../ViewProduct.aspx?Model=Perception" >Perception Fleet</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=5&ProdCatId=91" class="dropdown-toggle" >Parts Lookup</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=5&ProdCatId=91" >Overview</a></li><li><a href="../MD/ListParts.aspx?SubCat=140" >HYDRAN 201Ti / 201Ci</a></li><li><a href="../MD/ListParts.aspx?SubCat=143" >Hydran M2/M2X</a></li><li><a href="../MD/ListParts.aspx?SubCat=138" >MiniTrans</a></li><li><a href="../MD/ListParts.aspx?SubCat=137" >Transfix</a></li><li><a href="../MD/ListParts.aspx?SubCat=139" >Transport X</a></li><li><a href="../MD/ListParts.aspx?SubCat=167" >Transport X2</a></li><li><a href="../MD/ListParts.aspx?SubCat=168" >DGA 900</a></li><li><a href="../MD/ListParts.aspx?SubCat=169" >BMT 330</a></li></ul></li></ul></li><li class="dropdown"><a href="#" class="dropdown-toggle TopNavBarItem" data-toggle="dropdown" style='width:100px;' >Power Delivery<span class=""></span></a><ul class="dropdown-menu multi-level" ><li ><Div class='featuredMenuItem'><div class='featuredMenuItemLink'><a href="../../PowerDelivery/Front.aspx">Featured Products</a></div><div class='featuredMenuItemImage'><img alt=Featured Products src="/images/DE/GEDE_OLS_Home_46.gif" /></div></Div></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=6&ProdCatId=111" class="dropdown-toggle" >Power Connectors</a><ul class="dropdown-menu"><li><a href="../../ProductCategory.aspx?CatId=6&ProdCatId=111" >Overview</a></li><li><a href="../ProdCategory.aspx?PID=4115" >Cable Connectors</a></li><li><a href="../PowerDelivery/PalmCableConnectorLanding.aspx" >Palm Cable Connectors</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=6&ProdCatId=44" class="dropdown-toggle" >Surge Arresters</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=6&ProdCatId=44" >Overview</a></li><li><a href="/PowerDelivery/NewCapacitorsLookup.aspx?7#/7" >Intermediate</a></li><li><a href="/PowerDelivery/NewCapacitorsLookup.aspx?8#/8" >Station</a></li><li><a href="/PowerDelivery/NewCapacitorsLookup.aspx?9#/9" >Riser Pole </a></li><li><a href="/PowerDelivery/NewCapacitorsLookup.aspx?6#/6" >Distribution</a></li><li><a href="/PowerDelivery/NewCapacitorsLookup.aspx?10#/10" >Surge Protective Device</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=6&ProdCatId=45" class="dropdown-toggle" >Prolec Transformers</a><ul class="dropdown-menu"><li><a href="/PowerDelivery/ProlecTransformersLookup.aspx?t=spareparts" >Low Voltage Bushings</a></li></ul></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=6&ProdCatId=46" class="dropdown-toggle" >Capacitors</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=6&ProdCatId=46" >Overview</a></li><li><a href="https://store.gegridsolutions.com/PowerDelivery/NewCapacitorsLookup.aspx?1#/1" >Protective Capacitor-AC Rotaing Machinery</a></li><li><a href="https://store.gegridsolutions.com/PowerDelivery/NewCapacitorsLookup.aspx?2#/2" >Single & Three Phase High Voltage</a></li><li><a href="https://store.gegridsolutions.com/PowerDelivery/NewCapacitorsLookup.aspx?3#/3" >Low Voltage Fixed Power Factor</a></li><li><a href="https://store.gegridsolutions.com/PowerDelivery/NewCapacitorsLookup.aspx?4#/4" >Low Voltage Motor & Pump Power Factor</a></li><li><a href="https://store.gegridsolutions.com/PowerDelivery/NewCapacitorsLookup.aspx?5#/5" >Medium Voltage Fixed Power Factor</a></li><li><a href="https://store.gegridsolutions.com/PowerDelivery/NewCapacitorsLookup.aspx?11#/11" >Induction Heating & Melting</a></li><li><a href="https://store.gegridsolutions.com/PowerDelivery/NewCapacitorsLookup.aspx?12#/12" >DC Power Electronic</a></li><li><a href="https://store.gegridsolutions.com/PowerDelivery/NewCapacitorsLookup.aspx?13#/13" >High Voltage Capacitor Fuses</a></li><li><a href="https://store.gegridsolutions.com/PowerDelivery/NewCapacitorsLookup.aspx?14#/14" >Medium Voltage Power Factor</a></li></ul></li><li><a href="../../PowerDelivery/PostInsulator.aspx" >ANSI Post Insulators</a></li><li><a href="../../PowerDelivery/Partslookup.aspx" >Parts Lookup</a></li><li class="dropdown-submenu "><a href="/ProductCategory.aspx?CatId=6&ProdCatId=105" class="dropdown-toggle" >IEC LV Capacitor</a><ul class="dropdown-menu"><li><a href="../ProductCategory.aspx?CatId=6&ProdCatId=105" >Overview</a></li><li><a href="/PowerDelivery/LowVoltageCapacitor.aspx" >Low Voltage Capacitor Units</a></li><li><a href="/PowerDelivery/LowVoltageCapacitorBank.aspx" >Low Voltage Detuned Filter Capacitor Banks</a></li><li><a href="/PowerDelivery/PowerFactorControllers.aspx" >Power Factor Controllers</a></li><li><a href="/PowerDelivery/LowVoltageAHF.aspx" >Low Voltage Active Harmonic Filters</a></li><li><a href="/PowerDelivery/LowVoltageReactor.aspx" >Low Voltage Reactors</a></li></ul></li><li><a href="../../PowerDelivery/ReactorData.aspx" >Line/Load Reactors</a></li><li><a href="../DITLookup.aspx?ProductCatID=120" >Instrument Transformers</a></li></ul></li><li class="dropdown"><a href="#" class="dropdown-toggle TopNavBarItem" data-toggle="dropdown" style='width:100px;' >Power Sensing<span class=""></span></a><ul class="dropdown-menu multi-level" style="right: 0; left: auto;" ><li ><Div class='featuredMenuItem'><div class='featuredMenuItemLink'><a href="../../PowerSensing/Front.aspx">Featured Products</a></div><div class='featuredMenuItemImage'><img alt=Featured Products src="/images/DE/encompass_header.png" /></div></Div></li><li><a href="../../PowerSensing/ITIProductCategory.aspx?CatId=8&ProdCatId=121" >Transformers (CT/VT/CPT)</a></li><li><a href="../../PowerSensing/ITIProductCategory.aspx?CatId=8&ProdCatId=122" >Test Switches & Test Blocks</a></li><li><a href="../../PowerSensing/ITIProductCategory.aspx?CatId=8&ProdCatId=123" >Control & Transfer Switches</a></li><li><a href="../../PowerSensing/ITIProductCategory.aspx?CatId=8&ProdCatId=124" >Auxiliary/Lockout Relays </a></li><li><a href="../../PowerSensing/ITIProductCategory.aspx?CatId=8&ProdCatId=125" >Electronics</a></li><li><a href="../../PowerSensing/ITIProductCategory.aspx?CatId=8&ProdCatId=126" >Terminal Blocks</a></li><li><a href="../../PowerSensing/ITIProductCategory.aspx?CatId=8&ProdCatId=127" >Indicating Lights</a></li></ul></li><li class="dropdown"><a href="#" class="dropdown-toggle TopNavBarItem" data-toggle="dropdown" style='width:130px;' >HV Parts & Services<span class=""></span></a><ul class="dropdown-menu multi-level" ><li class="dropdown-submenu pull-left "><a href="/ProductCategory.aspx?CatId=9&ProdCatId=131" class="dropdown-toggle" >AIS/GIS</a><ul class="dropdown-menu"><li><a href="../../PowerDelivery/CBREvaluation.aspx" >Dead Tank Condition Assessment</a></li><li><a href="../../PowerDelivery/Catalogues/Cat_DT1_72_5kV.aspx?PName=Catalogue" >Dead Tank Parts Catalog</a></li></ul></li><li class="dropdown-submenu pull-left "><a href="/ProductCategory.aspx?CatId=9&ProdCatId=132" class="dropdown-toggle" >Power Transformer</a><ul class="dropdown-menu"><li><a href="../SpareParts.aspx?SubProdCat=7&Cat=983" >DRYCOL Spare Parts</a></li><li><a href="../OilLab.aspx" >Oil Lab Analysis</a></li></ul></li></ul></li><li class="dropdown"><a href="#" class="dropdown-toggle TopNavBarItem" data-toggle="dropdown">Training Center<span class=""></span></a><ul class="dropdown-menu multi-level" style="right: 0; left: auto;" ><li><a href="../../Training/TrainingCourses.aspx?ProdCatId=56" >Grid Solution Overview</a></li><li><a href="../../Training/TrainingCourses.aspx?ProdCatId=59" >Industrial Communication</a></li><li><a href="../../Training/TrainingCourses.aspx?ProdCatId=60" >Protection & Control</a></li><li><a href="../../Training/TrainingCourses.aspx?ProdCatId=62" >Substation Automation</a></li><li><a href="../../Training/TrainingCourses.aspx?ProdCatId=63" >HV/MV Training</a></li></ul></li><li class='TopNavBarItem_Right' ></li> </ul> </td> </tr> </table> </div> <div class="main"> <table width="1000" border="0" cellpadding="0" cellspacing="0" class="bodycontent" style="border-radius: 15px; border: 0px solid #E2E2E2;"> <tr> <td> <script type="text/javascript">var sSelectedCustomer = ""; </script> <script type="text/javascript" src="ViewProdJS/tbl.js"></script> <script type="text/javascript" src="ViewProdJS/format.js?ver638683660204404452"></script> <script type="text/javascript" src="ViewProdJS/viewprdout.js?ver638683660204404452"></script> <script type="text/javascript" src="ViewProdJS/rules.js?ver638683660204404452"></script> <script src="ViewProdJS/utils.js?ver638683660204404452" type="text/javascript"></script> <script src="ViewProdJS/DOMobject.js?ver638683660204404452" type="text/javascript"></script> <script src="ViewProdJS/MnDCalculationDOM.js" type="text/javascript"></script> <script type="text/javascript"> $m = jQuery.noConflict(); </script> <script type="text/javascript"> var olsmodel = '#olsmodel'; var olsLookup = '#olsLookup'; var olsProdCode = '#olsProdCode'; var olsdescription = '#olsdescription'; var olsisdigital = '#olsisdigital'; var olsordercode = '#olsordercode'; var olstotalprice = '#olstotalprice'; var olslistprice = '#olslistprice'; var olslistpriceother = '#olslistpriceother'; var olsbreakdown = '#olsbreakdown'; var olsoptions = '#olsoptions'; var olsconfigurl = '#olsconfigurl'; var olseditmode = '#olseditmode'; var olsmodprices = '#olsmodprices'; var olsbominfo = '#olsbominfo'; var olsbominfo2 = '#olsbominfo2'; var olsproductline = '#olsproductline'; var olsQuantity = '#olsQuantity'; var olsTRLocation = '#olsTRLocation'; var olsAArray = '#olsAArray'; var olsAddLT = '#olsAddLT'; var olscbk = '#olscbk'; var olsRegularPriceUS = '#olsRegularPriceUS'; var olsRegularPriceCan = '#olsRegularPriceCan'; //anka var swOptions = '#swOptions'; $m().ready(function () { frmMain = document.getElementById("aspnetForm"); callingDOM(); var ctlval = document.getElementById('ctl00_MainContent_hidCasualLoginAllow').value; if (ctlval == "BN") { $("#btnAddToCart").css('display', 'block'); } //if (ctlval == "Y") { // $("#btnAddToCart").css('display', 'none'); // $("#A1").css('display', 'block'); // DisplayMessage('User login required... </BR></BR>For complete pricing/ordering information, <a href="http://www.gegridsolutions.com/contact.htm?loc=2#Order/" target="_blank">contact</a> MDS directly'); //} if (ctlval == "Y") { $("#btnAddToCart").css('display', 'none'); if (sBuzz == "D") { $("#A1").css('display', 'block'); DisplayMessage('User login required... </BR></BR>For complete pricing/ordering information, <a href="http://www.gegridsolutions.com/contact.htm?loc=2#Order/" target="_blank">contact</a> MDS directly'); } else if (sBuzz == "N") { // $("#A1").css('display', 'block'); //Changes are done by Avik for INC13914833 on 8-Nov-2017 // DisplayMessage('User login required... </BR></BR>For complete pricing/ordering information, <a href="http://www.gegridsolutions.com/contact.htm?loc=2#Order/" target="_blank">contact</a> M&D directly'); DisplayMessage('Login Required... </BR></BR>Please contact the M&D Sales Support team for complete pricing/ordering information.</BR>SALES.GRIDSOLUTIONSMD@GE.COM</BR>1-905-927-7070'); //End of changes are done by Avik for INC13914833 on 8-Nov-2017 } } if (isConfigureNeeded) { DisplayMessage('Please Configure Your Product!!'); } }); function callingDOM() { //DOM Object document.getElementById("product-options").innerHTML = creatingDOM(); //Special Options SpecialOption(); //Related Products setReltedProductLink(); //rsModel("CrossSellAvail")=true And iEditMode=-1 //Commented by swamy for old code //if (bCrossSellAvail == true && iEditMode == -1 && !window.isSRupgrade) { //Added by swamy for 869 retrofit product if (bCrossSellAvail == true && iEditMode == -1 && !window.isSRupgrade && !window.isFRupgrade && !window.isSRupgrade735 && !window.isFRupgrade489 && !window.isSrUpgrade745) { CrossSalesOrderCode(); } else if (isAllowAdditional == true) { // Added for Maday // alert("me in side"); CrossSalesOrderCode_retrofitUpgrade(); } if (Options.length <= 0) { //document.getElementById("section_spoption").style.visibility = 'hidden'; document.getElementById("section_spoption").style.display = 'none'; document.getElementById("spoption").innerHTML = ""; } else { var imgComInfo = document.getElementById("imgComInfo"); imgComInfo.style.display = "none"; if (ModelBusiness == 'N') { var found = 0; for (i = 0; i < Options.length; i++) { if (Options[i].Description == 'Commissioning') { found = 1; imgComInfo.style.display = "block"; break; } } } } //Commented by swamy for old code //if (aryRelProd.length <= 0 || iEditMode >= 1 || window.isSRupgrade ) { //Added by swamy for 869 retrofit product //if (aryRelProd.length <= 0 || iEditMode >= 1 || window.isSRupgrade || window.isFRupgrade || window.isSRupgrade735 || window.isFRupgrade489) { if (aryRelProd.length <= 0 || iEditMode >= 1 || (window.isSRupgrade && isAllowAdditional == false) || (window.isFRupgrade && isAllowAdditional == false) || (window.isSRupgrade735 && isAllowAdditional == false) || (window.isFRupgrade489 && isAllowAdditional == false) || (window.isSrUpgrade745 && isAllowAdditional == false)) { //document.getElementById("section_relateditems").style.visibility = 'hidden'; document.getElementById("section_relateditems").style.display = 'none'; document.getElementById("rproduct").innerHTML = ""; } var imgfldservInfo = document.getElementById("imgfldservInfo"); imgfldservInfo.style.display = "none"; $("#fldservDefInfo").empty(); //alert(sBuzz); //alert(newModel); if (newModel == "Serv-Com" || newModel == "Serv-Inst-Com" || newModel == "Serv-Settings" || newModel == "Serv-Site-SuperV" || newModel == "Serv-PDR") { if (newModel == "Serv-Com") { var strServComInfo = "<div style='margin-bottom: 3px'><b>Grid Automation Services – Commissioning Only</b></div>"; $("#fldservDefInfo").append(strServComInfo); } else if (newModel == "Serv-Inst-Com") { var strServInstCom = "<div style='margin-bottom: 3px'><b>Grid Automation Services – Installation & Commissioning</b></div>"; $("#fldservDefInfo").append(strServInstCom); } else if (newModel == "Serv-Settings") { var strServSettings = "<div style='margin-bottom: 3px'><b>Grid Automation Services – Relay Settings</b></div>"; $("#fldservDefInfo").append(strServSettings); } else if (newModel == "Serv-Site-SuperV") { var strServSiteSuperV = "<div style='margin-bottom: 3px'><b>Grid Automation Services – Field Site Supervision</b></div>"; $("#fldservDefInfo").append(strServSiteSuperV); }//start : Retrofit Panels on OLS - GERITM2677828 / GESCTASK1512697 else if (newModel == "Serv-PDR") { var strServPDR = "<div style='margin-bottom: 3px'><b>Grid Automation Services – Panel/Door Replacements</b></div>"; strServPDR = strServPDR + "<ul><li> Door Option includes 1-day for a Field Service Engineer to Review Site and Dimensions</li>"; strServPDR = strServPDR + "<li> Door and Panel Door Sizes can be adjusted to match specification and requirements</li>"; strServPDR = strServPDR + "<li> Control Equipment, Test Switches, and Indicators option are based on GE Branded products. If other specific equipment is required please contact factory (price may vary)</li>"; strServPDR = strServPDR + "<li> A Terminal Block will be mounted on the back of the Retrofit Plate or Door whenever a Control Unit, Test-Block, and/or indicator option is selected.</li>"; strServPDR = strServPDR + "<li> The protection relays are not included in this price. Please add the required Protection Relay as a separate item to your Cart.</li>"; strServPDR = strServPDR + "<li> The Power Quality and/or Revenue Meters are not included in this price. Please add the requires Meter as a separate item to your Cart.</li>"; strServPDR = strServPDR + "<li> The Door or Plate default Layout and wiring is based on One (1) Protection Relay and One (1) Meter only.</li>"; strServPDR = strServPDR + "<li> The Wire Harness Option include a wire-bundle (based on drawings) to connect the equipment mounted on the provided Plate/Door to the existing terminal block inside the existing Gear/Panel.</li>"; strServPDR = strServPDR + "<li> The price includes Crating for Import/Export. Delivery is EX-WORKS FACTORY)</li>"; strServPDR = strServPDR + "<li> Customized Options and Layouts are available and may results in price variation. Please contact factory for details.</li><ul>"; $("#fldservDefInfo").append(strServPDR); }//end : Retrofit Panels on OLS - GERITM2677828 / GESCTASK1512697 else { $("#fldservDefInfo").empty(); } imgfldservInfo.style.display = "block"; } if (window.isSRupgrade || window.isFRupgrade || window.isSRupgrade735 || window.isFRupgrade489 || window.isSrUpgrade745) { PrepareUpgradeMode(); } setTimeout(function () { start() }, 10); } function AddItemToCart() { // Call below function from util.js var ctlval = document.getElementById('ctl00_MainContent_hidCasualLoginAllow').value; if (ctlval == "Y") { var sMsg = "User login required... </BR></BR>For complete pricing/ordering information, <a href='http://www.gegridsolutions.com/contact.htm?loc=2#Order' target='_blank'>contact</a> MDS directly"; DisplayMessage(sMsg); return false; } AddtoBasket_click(); UpdateCart(); } function ConfigureProduct() { var sModel = document.getElementById('ctl00_MainContent_hiddenFldConfig').value; if (sModel == "SBM") { ConfigureSwitch('../PowerSensing/SBMxConfig.aspx', 12); } if (sModel == "SB1") { ConfigureSwitch('../PowerSensing/SB1xConfigure.aspx', 12); } if (sModel == "SB9") { ConfigureSwitch('../PowerSensing/SB9xConfigure.aspx', 12); } } function UpdateCart() { var data1 = [], rowData = {}, bResult = false; var aryAccess, isAccDigital; var aryAAccess; var ilNum = $("#ctl00_MainContent_hidEditLineNum").val(); rowData["CartItemDesc"] = $(olsdescription).val(); rowData["Item"] = $(olsmodel).val(); rowData["OrderCode"] = $(olsordercode).val(); rowData["Breakdown"] = decodeURIComponent($(olsbreakdown).val()); rowData["Options"] = decodeURIComponent($(olsoptions).val()); rowData["BasePrice"] = $(olslistprice).val(); rowData["ConfigURL"] = $(olsconfigurl).val(); rowData["sAddLT"] = $(olsAddLT).val(); //rowData["Quantity"] = 1; rowData["Business"] = sBuzz; rowData["Plant"] = sPlantCode; rowData["LineNum"] = ilNum; rowData["NetPrice"] = $(olstotalprice).val(); if (!bSPAFound) { rowData["IsSPAFound"] = bCatSPAFound; } else { rowData["IsSPAFound"] = bSPAFound; } rowData["Multiplier"] = fMultiplier; rowData["GoSchedule"] = sGoSch; rowData["ProductFamily"] = sProdFamily; rowData["ModPrice"] = $(olsmodprices).val(); rowData["RegularPriceUS"] = replace($(olsRegularPriceUS).val(), ',', ''); rowData["RegularPriceCan"] = replace($(olsRegularPriceCan).val(), ',', ''); rowData["colscbk"] = $(olscbk).val(); var sWebpage = location.pathname; var sModel = getParameterByName('Model'); if (sWebpage == '/ViewProduct.aspx' && sModel == 'PMTB14') { rowData["NetPrice"] = sNetRealtimePrice; rowData["BasePrice"] = sListRealtimePrice; } var DependentLineItems = ''; if (DependentLineItems != null && DependentLineItems != '') { rowData["DependentLineItems"] = DependentLineItems; } data1.push(rowData); //Related Products if (ProdModel() == 'SASRTU')// && !iEditMode==1) { arrayRelItem = sortArrayRelatedForSASRTU(arrayRelItem); } for (var p = 0; p < arrayRelItem.length; p++) { rowData = {}; //alert(document.getElementById(arrayRelItem[p]).value); aryAccess = document.getElementById(arrayRelItem[p]).value.split(";"); if (aryAccess.length > 11) { rowData["Quantity"] = aryAccess[10]; rowData["Breakdown"] = aryAccess[11]; } else { rowData["Quantity"] = 1; rowData["Breakdown"] = ""; } for (var a = 0; a < aryAccess.length - 1; a++) { aryAccess[a] = ADecode(aryAccess[a]); } if (aryAccess[0].substring(0, 10) == "BRICK-4-HI") { aryAccess[0] = "Brick System"; aryAccess[3] = "Brick+System"; isAccDigital = "Y"; } else { isAccDigital = ""; } rowData["CartItemDesc"] = aryAccess[2]; rowData["Item"] = aryAccess[0]; if (aryAccess[1] == null || aryAccess[1] == "") { aryAccess[1] = aryAccess[0]; } var brelatdSPAFound = false; var rpSPAFactor = 0; let relProdObj = { brelatdSPAFound: false, rpSPAFactor: 0 } //alert(relProdObj.brelatdSPAFound); //alert(relProdObj.rpSPAFactor); relatedProductSPAwithFactor(aryAccess[0], relProdObj); brelatdSPAFound = relProdObj.brelatdSPAFound; rpSPAFactor = relProdObj.rpSPAFactor; //alert(brelatdSPAFound); //alert(rpSPAFactor); rowData["OrderCode"] = aryAccess[1]; rowData["Options"] = ""; rowData["BasePrice"] = replace(aryAccess[6], ',', ''); rowData["ConfigURL"] = aryAccess[3]; rowData["sAddLT"] = ""; rowData["Business"] = sBuzz; //rowData["Plant"] = "M6"; rowData["colscbk"] = ""; rowData["LineNum"] = ilNum; if (aryAccess[3].length == 0) { if (sBuzz == "N") { if (brelatdSPAFound) { if (rpSPAFactor > 1) { rowData["NetPrice"] = rpSPAFactor; } else { rowData["NetPrice"] = (replace(moneyFormat(aryAccess[4]), ',', '') * rpSPAFactor); } } else { rowData["NetPrice"] = replace(moneyFormat(aryAccess[4]), ',', ''); } } else { if (brelatdSPAFound) { if (rpSPAFactor > 1) { rowData["NetPrice"] = rpSPAFactor; } else { rowData["NetPrice"] = replace(aryAccess[4], ',', '') * rpSPAFactor; } } else { rowData["NetPrice"] = replace(aryAccess[4], ',', ''); } } if (sBuzz == "D") { //rowData["ProdCategory"] = "Industrial Comm"; //rowData["ProdSubCat"] = "Accessories"; rowData["ProdCategory"] = ""; rowData["ProdSubCat"] = ""; } if (sBuzz == "M") { rowData["ProdCategory"] = ""; rowData["ProdSubCat"] = ""; } } else { rowData["NetPrice"] = 0; } if (brelatdSPAFound) { rowData["IsSPAFound"] = "true"; } else { rowData["IsSPAFound"] = "false"; } rowData["Plant"] = aryAccess[8]; //alert(rowData["BasePrice"]); if (brelatdSPAFound) { if (rpSPAFactor > 0 && rpSPAFactor < 1) { rowData["Multiplier"] = rpSPAFactor; } else if (rpSPAFactor > 0 && rpSPAFactor >= 1) { rowData["Multiplier"] = (rowData["BasePrice"] / rpSPAFactor); } } else { rowData["Multiplier"] = aryAccess[9]; } rowData["RegularPriceUS"] = replace(aryAccess[5], ',', ''); rowData["RegularPriceCan"] = replace(aryAccess[7], ',', ''); var oitem = $(olsmodel).val(); var ocode = $(olsordercode).val(); if (oitem == "SASRTU") { var ocount = 0; switch (aryAccess[1]) { case "D20A": ocount = ocode.substr(ocode.indexOf("QA") + 2, 1); break; case "D20A DNP IO": ocount = ocode.substr(ocode.indexOf("QA") + 2, 1); break; case "D20E-A": ocount = ocode.substr(ocode.indexOf("QA") + 2, 1); break; case "D20S": ocount = ocode.substr(ocode.indexOf("QS") + 2, 1); break; case "D20S DNP IO": ocount = ocode.substr(ocode.indexOf("QS") + 2, 1); break; case "D20E-S": ocount = ocode.substr(ocode.indexOf("QS") + 2, 1); break; case "D20K": ocount = ocode.substr(ocode.indexOf("QK") + 2, 1); break; case "D20K DNP IO": ocount = ocode.substr(ocode.indexOf("QK") + 2, 1); break; case "D20E-K": ocount = ocode.substr(ocode.indexOf("QK") + 2, 1); break; case "D20 KI": ocount = ocode.substr(ocode.indexOf("QI") + 2, 1); break; case "D20E-I": ocount = ocode.substr(ocode.indexOf("QI") + 2, 1); break; case "D20C": ocount = ocode.substr(ocode.indexOf("QC") + 2, 1); break; case "D20C DNP IO": ocount = ocode.substr(ocode.indexOf("QC") + 2, 1); break; case "D20E-C": ocount = ocode.substr(ocode.indexOf("QC") + 2, 1); break; default: ocount = 0; break; } } //var ocount = ocode.substr(ocode.indexOf("QI") + 2,1); var x = 0; if (ocount > 0) { while (x < ocount) { data1.push(rowData); x++; } } else { data1.push(rowData); } } //Accessories if (document.getElementById("olsAArray").value != "") { var PQArray = []; var rxAcc = new RegExp("\{[^\}]+\}"); var rxMatch = null; var carter = document.getElementById("olsAArray").value; while ((rxMatch = rxAcc.exec(carter)) != null) { carter = carter.replace(rxMatch[0], ''); PQArray.push(rxMatch[0]); } if (sBuzz == "P") { for (var p = 0; p < PQArray.length; p++) { rowData = {}; var len = PQArray[p].length; aryAAccess = PQArray[p].substring(1, len - 1).split(";"); if (aryAAccess.length > 11) { rowData["Quantity"] = aryAAccess[10]; rowData["Breakdown"] = aryAAccess[11]; } else { rowData["Quantity"] = 1; rowData["Breakdown"] = ""; } for (var a = 0; a < aryAAccess.length - 1; a++) { aryAAccess[a] = ADecode(aryAAccess[a]); } if (aryAAccess[0].substring(0, 10) == "BRICK-4-HI") { aryAAccess[0] = "Brick System"; aryAAccess[3] = "Brick+System"; isAccDigital = "Y"; } else { isAccDigital = ""; } rowData["CartItemDesc"] = aryAAccess[2]; rowData["Item"] = aryAAccess[0]; if (aryAAccess[1] == null || aryAAccess[1] == "") { aryAAccess[1] = aryAAccess[0]; } rowData["OrderCode"] = aryAAccess[1]; rowData["Options"] = ""; //if (aryAAccess[6] == 0) { // aryAAccess[6] = 0.01; //} rowData["BasePrice"] = replace(aryAAccess[6], ',', ''); rowData["ConfigURL"] = aryAAccess[3]; rowData["sAddLT"] = ""; rowData["Business"] = sBuzz; //rowData["Plant"] = "M6"; rowData["colscbk"] = ""; rowData["LineNum"] = ilNum; if (aryAAccess[3].length == 0) { //if (aryAAccess[4] == 0) { // aryAAccess[4] = 0.01; //} rowData["NetPrice"] = replace(aryAAccess[4], ',', ''); if (sBuzz == "D") { rowData["ProdCategory"] = "Industrial Comm"; rowData["ProdSubCat"] = "Accessories"; } if (sBuzz == "M") { rowData["ProdCategory"] = "ProductCategory"; rowData["ProdSubCat"] = "ProductCategory"; } } else { rowData["NetPrice"] = 0; } rowData["IsSPAFound"] = "false"; rowData["Plant"] = sPlantCode; rowData["Multiplier"] = fMultiplier; rowData["RegularPriceUS"] = replace(aryAAccess[6], ',', ''); rowData["RegularPriceCan"] = replace(aryAAccess[7], ',', ''); data1.push(rowData); } } } var postData = { oCItem: data1 }; $.ajax({ type: "POST", contentType: "application/json; charset=utf-8", url: "ViewProduct.aspx/AddToCart", data: JSON.stringify(postData), // "{str: '" + JSON.stringify(data1) + "'}", dataType: "json", success: function (data) { document.location.href = "Cart.aspx"; } }); return true; } function ChangeModifierUI(obj) { var ilNum = $("#ctl00_MainContent_hidEditLineNum").val(); ChangeModifier(obj, ilNum); } function copyUROrderCodeToClipboard() { //alert('Good Morning'); var lyrOrdercode4Copy = document.getElementById('lyrOrdercode') var cpyOrderCode = lyrOrdercode4Copy.innerHTML var frmSelctedText = document.getElementById('lyrFirmwareRev'); var frmSelectedValue = frmSelctedText.innerHTML frmSelectedValue = frmSelectedValue.replace('<b>', ''); frmSelectedValue = frmSelectedValue.replace('</b>', ''); var el = document.createElement('textarea'); // Set value (string to be copied) //el.value = 'Subhankar'; el.value = 'Order Code: ' + cpyOrderCode + '\n' + frmSelectedValue; // Set non-editable to avoid focus and move outside of view el.setAttribute('readonly', ''); el.style = { position: 'absolute', left: '-9999px' }; document.body.appendChild(el); // Select text inside element el.select(); // Copy text to clipboard document.execCommand('copy'); // Remove temporary element document.body.removeChild(el); } function relatedProductSPAwithFactor(relModel, relProdObj) { for (i = 0; i < aryRelProd.length; i++) { if (aryRelProd[i].Model == relModel) { // alert(aryRelProd[i].Model); relProdObj.brelatdSPAFound = aryRelProd[i].brelatdSPAFound; relProdObj.rpSPAFactor = aryRelProd[i].rpSPAFactor; break; } } //alert(relProdObj.brelatdSPAFound); // alert(relProdObj.rpSPAFactor); } const ChangeOnUnassignedMode = (obj) => { let ilNum = $("#ctl00_MainContent_hidEditLineNum").val(); let currId = $("#ctl00_MainContent_drpCurrency").val(); let modifierId = $("#ctl00_MainContent_ModifierList").val(); ChangeEventUnassignedMode(obj, currId, modifierId, ilNum); } </script> <style type="text/css"> select { outline: 0; /*overflow: hidden;*/ height: 20px; /*background: #f0f6f1;*/ color: #747a80; border: solid 1px #bebebe; /*padding: 5px 3px 5px 10px;*/ -webkit-border-radius: 6px; border-radius: 10px; width: 100%; } @-moz-document url-prefix() { select { -moz-appearance: none; border-radius: 0; -moz-border-radius: 0; padding-left: 3px; } } .ofootnotes, .ofootnotes A { font: 7pt Arial, Helvetica, sans-serif; } .title1 { FONT-FAMILY: Arial,Helvetica,sans-serif; FONT-SIZE: 18px; COLOR: #666; line-height: 18px; font-weight: normal; } </style> <script type="text/javascript"> //<![CDATA[ Sys.WebForms.PageRequestManager._initialize('ctl00$MainContent$scGeneral', 'aspnetForm', ['tctl00$MainContent$upGeneral',''], [], [], 90, 'ctl00'); //]]> </script> <div id="ctl00_MainContent_upGeneral"> <div class="panel panel-default panel-body"> <div class="breadcrumbs"> <style type="text/css"> .TDbreadcrumb, .subnav { padding-bottom:10px; font-size:12px; padding-left:3px; color:#005e60; } .TDbreadcrumb A:link, .TDbreadcrumb A:active {TEXT-DECORATION:none;} </style> <span class="TDbreadcrumb"><a href='Home.aspx'>Store</a> <img src='/images/DE/ProdCat-ArrowOn.gif' style='margin-left:4px; margin-right:4px'> <a href='../../Multilin/Front.aspx'>Protection & Control</a> <img src='/images/DE/ProdCat-ArrowOn.gif' style='margin-left:4px; margin-right:4px'> <a href='../ProductCategory.aspx?CatId=3&ProdCatId=24'>Feeder Protection</a> <img src='/images/DE/ProdCat-ArrowOn.gif' style='margin-left:4px; margin-right:4px'> <a href='../SubProductCategory.aspx?CatId=3&ProdCatId=24&ProdID=1144'>Distribution & Industrial Feeder Relays</a><img src='/images/DE/ProdCat-ArrowOn.gif' style='margin-left:4px; margin-right:4px'> <a href='../ViewProduct.aspx?Model=P14DH11A2C0620A'>P14DH - Directional Feeder Relay with NF C 13100 & UTE C15400</a></span> </div> <br /> <script type="text/javascript"> function ShowSelectCustMsg(obj) { var sURL = window.location.href; if (sURL.indexOf("Cart") > 0 || sURL.indexOf("cart") > 0) { var errMsg = "Please note that changing the customer may cause some items to be removed from the shopping cart or required to be reconfigured. Click 'OK' to proceed."; return confirm(errMsg); } return true; } </script> <div style="padding-left: 10px; padding-bottom: 10px;"> <span id="ctl00_MainContent_lblTitle" class="title1">Configure your P14DH - Directional Feeder Relay with NF C 13100 & UTE C15400</span><input type="hidden" name="ctl00$MainContent$hidEditLineNum" id="ctl00_MainContent_hidEditLineNum" value="0" /> </div> <div class="Product"> <table border="0" style="width: 100%;"> <tr> <td style="padding-left: 10px; padding-bottom: 10px; border: none;"> <table width="100%" border="0px"> <tr> <td style="width: 55%;"> <div class="ordercodebox"> <table cellpadding="0" cellspacing="0" style="height: 150px; border-radius: 15px; border: none; width: 480px;"> <tr> <td style="padding-left: 12px; padding-top: 2px; padding-bottom: 10px; vertical-align: top; text-align: left; width: 127px"> <table width="129" height="118" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td style="padding-left: 5px; vertical-align: top; width: 109px"> <input type="hidden" name="ctl00$MainContent$hidCasualLoginAllow" id="ctl00_MainContent_hidCasualLoginAllow" /> <span id="ctl00_MainContent_lblProdPrice" style="visibility: hidden;">$6226.419921875</span><br /> <span id="lyrAmount" class="Amount" style="float: left;"></span> <span id="lyrNoAmount" class="Amount" style="float: left; display: none;">Contact US</span> <br /> <span id="lblPriceComment" class="normal" style="float: left;">List Price ($US)</span> </td> </tr> <tr> <td align="left"> <br /> <a class="itemBox" data-toggle="modal" data-target="#myModal" id="btnlogin" name="btnlogin">Login</a> <div id="lyrNoAddCart" class="normal"></div> </tr> <tr> <td> <a id="ctl00_MainContent_btnAddToCart" class="buyNowButton" name="btnAddToCart" onclick="AddItemToCart()">Add To Cart</a> <a href="http://www.gegridsolutions.com/contact.htm?loc=2 " style="display: none; padding-left: 7px; padding-top: 5px;" id="A1" target="_blank" class="normalLink"><b>Contact MDS</b></a> </td> </tr> </tbody> </table> </td> <td width="12" align="left" valign="middle"> <img src="../images/DE/Config-BG-Divide.gif" width="1" height="109"></td> <td width="250" align="left" valign="top" style="padding-top: 12px;"> <div class="normal"><b>Order Code</b></div> <div class="normal" id="lyrOrdercode"></div> <div class="normal" id="StdLTCaption" style="margin-top: 12px;"><b style="color: red">Estimated Manufacturing Lead Time</b></div> <div class="normal" id="StdLT1" style="margin-top: 4px;"></div> </div> <div class="normal" style="margin-top: 15px;"> <img src="/images/DE/Config-ProdInfo.gif" id="ctl00_MainContent_imgprodinfolnk" width="17" height="18" align="absmiddle" /> <a href="http://www.gegridsolutions.com/multilin/catalog/P14N-P14D-P94V.htm" id="ctl00_MainContent_Prodinfolnk" target="_blank" class="normalLink">Product Info</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <img src="/images/DE/Config-SalesOff.gif" id="ctl00_MainContent_imgofficeurllnk" width="16" height="17" align="absmiddle" /> <a href="https://www.gegridsolutions.com/multilin/salesoff.htm" id="ctl00_MainContent_officeurllnk" target="_blank" class="normalLink">Local Sales Office</a> </div> </td> </tr> </table> </div> </td> <td style="text-align: center; vertical-align: top; padding-top: 5px; border: 0px" class="image-product"> <img src="/prodimages/P14DH11A2C0620A.jpg" id="ProductImage" border="0" class="image-product" /> </br> </td> </tr> </table> </td> </tr> </table> </div> <div id="product-information" style="display: none;"> </div> <div id="dialog" class="modal" style="display: none"> <div id="dvNote"> <p style="color: red; font-weight: bold;">*NOTE: Please enter number of Units</p> </div> <div id="dvTable"></div> <div id="ctl00_MainContent_InfoDiv"> <label id="lblpertier" style="padding-top: 2%; font-weight: bold; font-size: 120%;">Perception License Tier</label> <img src="../images/question.gif" id="imgDivInfo" title="Tier Range" alt="Test fold :" style="padding-bottom: 1%;" /> <label id="lblpertierResult" style="color: green; font-size: x-large;">: </label> </div> </div> <div id="dvinfotable"></div> <div id="dvRelatedProductLink" style="display: none"></div> <section class="panel panel-default Product " style="font-size: small;"> <header class="panel-heading"> <h3 class="panel-title" id="prodoption">Product Options</h3> <div id="ctl00_MainContent_fldservInfo"> <span class="showonhover"> <img src="../images/question.gif" onmouseout="$('#fldservDefInfo').hide();" onmouseover="$('#fldservDefInfo').show();" class="imgicon" id="imgfldservInfo" /> <div id="fldservDefInfo" style="position: absolute; z-index: 10; left: 220px; width: 50%; border: 3px solid #8AC007; background-color: #E2E2E2; display: none;"> </div> </span> </div> </header> <div id="product-options" style="padding-left: 20px;" class="panel-body"> </div> <div id="product-display" style="padding-left: 20px;" class="panel-body"> </div> </section> <section class="panel panel-default Product" style="font-size: small;" id="section_spoption"> <header class="panel-heading"> <h3 class="panel-title" id="spoption">Special Options</h3> <div id="ctl00_MainContent_spmCommissionInfo"> <span class="showonhover"> <img src="../images/question.gif" onmouseout="$('#commissioningInfo').hide();" onmouseover="$('#commissioningInfo').show();" class="imgicon" id="imgComInfo" /> <div id="commissioningInfo" style="position: absolute; z-index: 10; left: 220px; width: 50%; border: 3px solid #8AC007; background-color: #E2E2E2; display: none;"> <div style='margin-bottom: 3px'><b><span class="superscript">*</span>WHAT IS PROVIDED WHEN YOU PURCHASE A KELMAN INSTALLATION:</b></div> Unless otherwise agreed in writing by GE, the installation of a Kelman on-line monitor includes the following:<br> · One GE installation engineer to complete installation (Not to Exceed 8 hours per day or a maximum of two consecutive weekdays.)<br> · Travel Expense to the installation Site<br> · Lodging, and meals for the engineer to complete the installation (Not to exceed two consecutive weekdays)<br> · If more than two days required then an additional 1,600 $USD per day will be charged (Includes T&L) <br> · Connection and leak testing of the ¼” stainless steel tubing connecting the unit to the transformer.<br> · All ties and clamps required to securely affix the tubing to the transformer and structure.<br> · Any electrical connections within the on-line monitor.<br> · Clean up of all debris related to the installation<br> · The commissioning and initial test of the on-line monitor.<br> <br /> <div style='margin-bottom: 3px'><b><span class="superscript">*</span>WHAT IS PROVIDED WHEN YOU PURCHASE A KELMAN COMMISSIONING:</b></div> Unless otherwise agreed in writing by GE, the commissioning of a Kelman on-line monitor includes the following: <br> · One GE installation engineer to complete installation (Not to Exceed 8 hours per day or a maximum of two consecutive weekdays.) <br> · Travel Expense to the installation Site <br> · Lodging, and meals for the engineer to complete the installation (Not to exceed two consecutive weekdays) <br> · If more than two days required then an additional 1,600 $USD per day will be charged (Includes T&L) <br> · Connection and leak testing of the ¼” stainless steel tubing connecting the unit <br> · Any electrical connections within the on-line monitor. <br> · The commissioning and initial test of the on-line monitor.<br> </div> </span> </div> </header> <div id="special-options" style="padding-left: 20px;"> </div> </section> <section class="panel panel-default Product" style="font-size: Small; padding: 5px 5px 5px 5px;" id="section_relateditems"> <header class="panel-heading"> <h3 class="panel-title" id="rproduct">Related Products</h3> </header> <div id="related-options" style="padding-left: 20px;"> </div> </section> <br /> <input type="hidden" name="ctl00$MainContent$olsmodel" id="olsmodel" /> <input type="hidden" name="ctl00$MainContent$olsLookup" id="olsLookup" /> <input type="hidden" name="ctl00$MainContent$olsProdCode" id="olsProdCode" /> <input type="hidden" name="ctl00$MainContent$olsdescription" id="olsdescription" /> <input type="hidden" name="ctl00$MainContent$olsisdigital" id="olsisdigital" /> <input type="hidden" name="ctl00$MainContent$olsordercode" id="olsordercode" /> <input type="hidden" name="ctl00$MainContent$olstotalprice" id="olstotalprice" /> <input type="hidden" name="ctl00$MainContent$olslistprice" id="olslistprice" /> <input type="hidden" name="ctl00$MainContent$olslistpriceother" id="olslistpriceother" /> <input type="hidden" name="ctl00$MainContent$olsbreakdown" id="olsbreakdown" /> <input type="hidden" name="ctl00$MainContent$olsoptions" id="olsoptions" /> <input type="hidden" name="ctl00$MainContent$olsconfigurl" id="olsconfigurl" /> <input type="hidden" name="ctl00$MainContent$olseditmode" id="olseditmode" /> <input type="hidden" name="ctl00$MainContent$olsmodprices" id="olsmodprices" /> <input type="hidden" name="ctl00$MainContent$olsbominfo" id="olsbominfo" /> <input type="hidden" name="ctl00$MainContent$olsbominfo2" id="olsbominfo2" /> <input type="hidden" name="ctl00$MainContent$olsproductline" id="olsproductline" /> <input type="hidden" name="ctl00$MainContent$olsQuantity" id="olsQuantity" /> <input type="hidden" name="ctl00$MainContent$olspid" id="olspid" /> <input type="hidden" name="ctl00$MainContent$olsTRLocation" id="olsTRLocation" /> <input type="hidden" name="ctl00$MainContent$olsAArray" id="olsAArray" /> <input type="hidden" name="ctl00$MainContent$olsAddLT" id="olsAddLT" /> <input type="hidden" name="ctl00$MainContent$olscbk" id="olscbk" /> <input type="hidden" name="ctl00$MainContent$olsRegularPriceUS" id="olsRegularPriceUS" /> <input type="hidden" name="ctl00$MainContent$olsRegularPriceCan" id="olsRegularPriceCan" /> <input type="hidden" name="ctl00$MainContent$hdnmodel" id="hdnmodel" value="0" /> <input type="hidden" name="ctl00$MainContent$hdncode" id="hdncode" value="0" /> <input type="hidden" name="ctl00$MainContent$swOptions" id="swOptions" /> <input type="hidden" name="ctl00$MainContent$hdnInterNationalMKMUSRForMnD" id="hdnInterNationalMKMUSRForMnD" /> <input type="hidden" name="ctl00$MainContent$hdDSTT" id="hdDSTT" /> <input type="hidden" name="ctl00$MainContent$hdnMX350Restricted" id="hdnMX350Restricted" value="0" /> <input type="hidden" name="ctl00$MainContent$hdnMnDCalParamValues" id="hdnMnDCalParamValues" /> <input type="hidden" name="ctl00$MainContent$hdnMnDCalAcceptndCloses" id="hdnMnDCalAcceptndCloses" /> <input type="hidden" name="ctl00$MainContent$hdnMnDCalTireValue" id="hdnMnDCalTireValue" /> </div> <div id="ctl00_MainContent_upProgress" style="display:none;"> <div class="centered"> <img src="../images/load.gif" /> </div> </div> <center> <span style="font-size: x-small; font-family: Arial,Helvetica;"> <a href="../termEM104-Grid.pdf" target="_blank">Grid Solutions Terms & Conditions of Sale</a> </span> </center> </td> </tr> <tr> <td> <br /> </td> </tr> </table> </div> <div class="clear" /> </div> <div id="foot" style="text-align: center;"> <div id="ctl00_divTerms" style="display: inline-block;"><a href='#' onclick=javascript:privacy_click('/termEM104-Grid.pdf');><font color='#666666'>Grid Solutions Terms & Conditions of Sale</font></a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;</div> <div id="ctl00_divFootLinks" style="display: inline-block;"> <a href="#" onclick="javascript:privacy_click('https://www.ge.com/privacy');"> <font color="#666666">Privacy Policy</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#" onclick="javascript:privacy_click('http://www.GEGridSolutions.com/multilin/terms_of_use.htm');"> <font color="#666666">Website Terms of Use</font></a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#" onclick="javascript:reg_click('/regulatory.htm');"><font color="#666666">International Regulatory Notice</font></a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; Copyright &copy; General Electric Company 2017 </div> </div> <div id="dMsgs"> <label id="errormsg" style="color: Green;"> </label> </div> <div id="dMsgsV2" title="Welcome" > <label id="lblMsg" style="color: Green;"> </label> </div> <div id="dMsgsV3" title="Quote Confirmation"> <label id="lblMsg3" style="color: Green;"> </label> </div> <input type="submit" name="ctl00$btnHidden_login" value="" id="ctl00_btnHidden_login" style="display: none;" /> <input type="submit" name="ctl00$btnHidden_logout" value="" id="ctl00_btnHidden_logout" style="display: none;" /> <input type="submit" name="ctl00$btnDisableEnter" value="" onclick="return false;" id="ctl00_btnDisableEnter" style="display: none;" /> <script type="text/javascript"> var _gaq = _gaq || []; var _DEOLS = [] _DEOLS.push(['_setAccount', 'UA-3461894-3'], ['_setCustomVar', 1,'UserType','public',2], ['_setCustomVar', 2,'CustType','',2], ['_trackPageview'] ); _gaq.push(_DEOLS[0], _DEOLS[1], _DEOLS[2], _DEOLS[3] ) var geDeHost = document.location.hostname.toString().toLowerCase(); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <script async src=https://www.googletagmanager.com/gtag/js?id=G-4H83GCC12E></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-4H83GCC12E'); </script> <script type="text/javascript">var AllRules = new Array(); var iTableID = new Array(7, 9); xxx = new sct(0, 0, 0, 0, 0, 0, 0); var OPT = new Array(); var Product = new Array(); var ProductOptPricing = []; var Options = []; var SCT = new Array(); var SCTfootnote = new Array(); var aryRelProd = []; var aryItemQty = []; var LTadd = []; var arrayRelItem = []; var True=true; var False=false; var ModPrice = new Array(); var PrevModPrice = 0.0; var bMODPriceUpdate = False; var bMOD872PriceUpdate = False; var bOptSep = False; var ProductsID = '4482'; var iMultiID = '13'; var sBuzz = 'M'; var sPlantCode = 'ALS'; var sGoSch = 'SMS-042'; var sProdFamily = 'P14DX'; var bByPassDSTT = False; var isCartContainSASRTU = False; var newModel = 'P14DH11A2C0620A'; var sModel = 'P14DH11A2C0620A'; var ProdDescription = 'P14DH - Directional Feeder Relay with NF C 13100 & UTE C15400'; var sCustcode = ''; var sCurrency = 'USD'; var nUSConvert = '1.00000'; var sOptionsTitle = 'Special Options'; var sProdOptTitle = 'Product Options'; var CurrName = '$US'; var SPRProductLine = 'SMS-042'; var sSubline = 'P14DX'; var iProdID = '4482'; var isDigital = 'False'; var TRLocation = ''; var Mfootnote = ''; var Ofootnote = ''; var fProdsubmit = True; var sMessage = ''; var InternetDirectory = 'http://www.gegridsolutions.com/multilin/catalog/P14N-P14D-P94V.htm'; var ModelBusiness = 'M'; var isSRupgrade = False; var isFRupgrade = False; var isSRupgrade735 = False; var isFRupgrade489 = False; var isConfigureNeeded = False; var isSrUpgrade745 = False; var Rules = [], RulesIf = [], RulesThen = [], RulesDef = []; Rules[0] = new rules(0, 0, '', true, true, true, false); RulesIf[0] = new rif(0, 0, 0, 0, false, false, 0, true, true); RulesThen[0] = new rulesthen(0, 0, 0, 0, 0, 0, 0, true, true); var NS4 = (document.layers) ? 1 : 0; var IE4 = (document.all) ? 1 : 0; var NS7 = navigator.userAgent.indexOf('Gecko') != -1; var IE5 = (parseInt(navigator.appVersion.substring(navigator.appVersion.indexOf('MSIE') + 5)) >= 5) ? 1 : 0; var NS3 = (parseFloat(navigator.appVersion) >= 3.04); var PageDrawn=false; var bSwitch = False; var bCourse = False; var iEditMode = -1; var bPrices = True; var arySecAvail = []; var aryProdAvail = []; var EditMode = -1; var sDST = 'M'; var PP = 6226.42; var PLP = 6226.42; var PLPC = 7783.02; var PLPU = 6226.42; Stencil=new sct(); var aryOrderCode=new Array(); var RuleDefaultsArray = []; var CurrSymbol='$'; var frmMain, orderCode, orderPrice, aryQRules=[]; var isCanadian = False; var bIsCanadian = False; var CurrIsAfter = False; var sMultiplierName ='List'; var fMultiplier=1; var bSPAFound = False; var bCatSPAFound = False; var iLT = 35; var iLTbase = 35; var isUR = False; var bAccTitleShown = False; var bShowEstPrice = False; var bShowNoPrice = False; var bLoginForPrice = False; var isSmartMeter = False; var isD20 = False; var bHidePricePublic = False; var bHidePriceLogin = False; var CustLogin = False; var bShowTags = False; var configurationsel = ''; var sOfficesURL = 'https://www.gegridsolutions.com/multilin/salesoff.htm'; var sSalesEmail = 'sales.multilin@ge.com'; var bIsMandD = False; var bCrossSellAvail = True; var queryModel = 'P14DH11A2C0620A'; var bisMnDSplAgent = False; var bIsByPassMnDComissionMandate = False; var sUserRegion = ''; var isAllowAdditional = False; var URCRules = new Array(); var total_URinput = 0; var total_URoutput = 0; var depOrderCode=''; SCT[1]=new sct(22561,'P14DH11A2C0620A','','HIDE',false,1,0,'0',15,'0','10','ANY',1,'','',0,0);var iMaxCode = 1; iMaxTag = 0;var LTadd=[];SCTfootnote[1]=new sctfootnote('');ModPrice[0]=new mdpr('6A',481.64);ModPrice[1]=new mdpr('6B',240.82);ModPrice[2]=new mdpr('6D',963.28);ModPrice[3]=new mdpr('6E',481.64);ModPrice[4]=new mdpr('6G',481.64);ModPrice[5]=new mdpr('6H',240.82);ModPrice[6]=new mdpr('6L',481.64);ModPrice[7]=new mdpr('6M',240.82);ModPrice[8]=new mdpr('6N',481.64);ModPrice[9]=new mdpr('6P',240.82);ModPrice[10]=new mdpr('6R',481.64);ModPrice[11]=new mdpr('6S',240.82);ModPrice[12]=new mdpr('6T',481.64);ModPrice[13]=new mdpr('6U',240.82);ModPrice[14]=new mdpr('6V',481.64);URCRules[0]=new URIOCustomRules('4A',0 ,4);URCRules[1]=new URIOCustomRules('4B',0 ,4);URCRules[2]=new URIOCustomRules('4C',0 ,4);URCRules[3]=new URIOCustomRules('4D',16 ,0);URCRules[4]=new URIOCustomRules('4L',0 ,14);URCRules[5]=new URIOCustomRules('67',0 ,8);URCRules[6]=new URIOCustomRules('6A',8 ,4);URCRules[7]=new URIOCustomRules('6B',4 ,6);URCRules[8]=new URIOCustomRules('6C',0 ,8);URCRules[9]=new URIOCustomRules('6D',16 ,0);URCRules[10]=new URIOCustomRules('6E',8 ,4);URCRules[11]=new URIOCustomRules('6F',0 ,8);URCRules[12]=new URIOCustomRules('6G',8 ,4);URCRules[13]=new URIOCustomRules('6H',4 ,6);URCRules[14]=new URIOCustomRules('6K',0 ,8);URCRules[15]=new URIOCustomRules('6L',8 ,4);URCRules[16]=new URIOCustomRules('6M',4 ,6);URCRules[17]=new URIOCustomRules('6N',8 ,4);URCRules[18]=new URIOCustomRules('6P',4 ,6);URCRules[19]=new URIOCustomRules('6R',8 ,4);URCRules[20]=new URIOCustomRules('6S',4 ,6);URCRules[21]=new URIOCustomRules('6T',8 ,4);URCRules[22]=new URIOCustomRules('6U',4 ,6);URCRules[23]=new URIOCustomRules('6V',8 ,4);URCRules[24]=new URIOCustomRules('6W',30 ,0);URCRules[25]=new URIOCustomRules('6X',0 ,18);</script> <script type="text/javascript"> //<![CDATA[ WebForm_AutoFocus('btnDisableEnter');Sys.Application.add_init(function() { $create(Sys.UI._UpdateProgress, {"associatedUpdatePanelId":null,"displayAfter":500,"dynamicLayout":true}, null, null, $get("ctl00_MainContent_upProgress")); }); //]]> </script> </form> <script src="../Angular/build/ngOLS-ftEd-ext-libs.js" type="text/javascript"></script> <script src="../angular/libs/angular-animate.js" type="text/javascript"></script> <script src="../angular/libs/ui-bootstrap-tpls-0.13.4.js" type="text/javascript"></script> <script src="../angular/libs/ui-grid-unstable.js" type="text/javascript"></script> <script src="../angular/libs/angular-modal-service.js" type="text/javascript"></script> <script src="../Angular/build/ngOLS-ftEd.js" type="text/javascript"></script> <script type="text/javascript" src="/_Incapsula_Resource?SWJIYLWA=719d34d31c8e3a6e6fffd425f7e032f3&ns=2&cb=1908922803" async></script></body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10