595 lines
198 KiB
HTML
Executable File
595 lines
198 KiB
HTML
Executable File
<!-- META HTTP-EQUIV="Refresh" content="2" -->
|
|
<META HTTP-EQUIV="Expires" CONTENT="Mon, 06 Jan 1990 00:00:01 GMT">
|
|
<META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
|
|
<style type="text/css">
|
|
<!--
|
|
a:link { color:blue;
|
|
text-decoration:none;
|
|
Cursor:hand;
|
|
};
|
|
a:visited { color:blue;
|
|
text-decoration:none;
|
|
Cursor:hand;
|
|
};
|
|
a:hover { color:red;
|
|
text-decoration:underline;
|
|
Cursor:hand;
|
|
};
|
|
..chinese {font-family: "Courier New"; font-size: 9pt}
|
|
td { font-family: Arial, Helvetica, sans-serif; font-size: 9pt}
|
|
body { font-family: Arial, Helvetica, sans-serif; font-size: 9pt}
|
|
select { font-family: Arial, Helvetica, sans-serif; font-size: 9pt}
|
|
input { font-size: 9pt}
|
|
input.chinese {font-family: "Courier New"; font-size: 9pt}
|
|
|
|
-->
|
|
</style><HTML>
|
|
<HEAD>
|
|
<SCRIPT Language="javascript1.2" type="text/javascript">
|
|
<!--
|
|
var x=0, y=0;
|
|
var isExpanded;
|
|
|
|
image1 = new Image();
|
|
image2 = new Image();
|
|
image3 = new Image();
|
|
image4 = new Image();
|
|
image5 = new Image();
|
|
image6 = new Image();
|
|
image1.src = "images/line.gif";
|
|
image2.src = "images/midplus.gif";
|
|
image3.src = "images/none.gif";
|
|
image4.src = "images/lastblk.gif";
|
|
image5.src = "images/midblk.gif";
|
|
image6.src = "images/midminus.gif";
|
|
|
|
//
|
|
// send scroll bar (x,y) to objects.php so that it can refresh
|
|
// bsstree.php without moving the scroll bar
|
|
function object_onclick(data)
|
|
{
|
|
x = document.body.scrollLeft;
|
|
y = document.body.scrollTop;
|
|
parent.main1.location.href = data + "&x=" + x + "&y=" + y;
|
|
}
|
|
|
|
//
|
|
// Show or hide a <DIV> tags
|
|
// isExpanded[] is a global variable which keep trace of the state
|
|
// of a branch in the folder tree
|
|
//
|
|
// start_id is here for recusion in later implementation
|
|
//
|
|
function show_or_hide(id,layers,start_id)
|
|
{
|
|
var imgsrc;
|
|
var disptype="", origimg="", newimg="";
|
|
var expand_flag=false;
|
|
var re;
|
|
var temp = document.all.tags("DIV");
|
|
var str_id = "obj" + id;
|
|
var div_id = eval(str_id);
|
|
|
|
//alert(str_id.substr(0,layers+str_id.length-5));
|
|
for (i=start_id;i<temp.length;i++)
|
|
{
|
|
if (temp(i).id == str_id)
|
|
{
|
|
expand_flag = !isExpanded[i];
|
|
//isExpanded[i] = !isExpanded[i];
|
|
//if ((imgsrc=document.images["img" + str_id.substr(3,6)]) != "undefined")
|
|
//{
|
|
// if (imgsrc.src.indexOf("mid" + origimg) != -1)
|
|
// imgsrc.src = "images/mid" + newimg;
|
|
// else if (imgsrc.src.indexOf("last" + origimg) != -1)
|
|
// imgsrc.src = "images/last" + newimg;
|
|
//}
|
|
break;
|
|
}
|
|
}
|
|
|
|
id_prefix = str_id.substr(0,layers+str_id.length-5);
|
|
re = new RegExp(id_prefix+"[0-9a-f]"+str_id.substr(4+layers,str_id.length-layers-5));
|
|
for (i=start_id;i<temp.length;i++)
|
|
{
|
|
if (temp(i).id.indexOf(id_prefix) != -1) // if it is affected row, then
|
|
{
|
|
if (temp(i).id.search(re) != -1) // if it is the affected 1st/2nd layer
|
|
{
|
|
if (temp(i).id == str_id) // if it is the clicked <DIV>
|
|
{
|
|
if (expand_flag) // if expand leaves
|
|
{
|
|
disptype="block";
|
|
isExpanded[i] = true;
|
|
origimg="plus";
|
|
newimg="minus.gif";
|
|
}
|
|
else // if hide leaves
|
|
{
|
|
disptype="block";
|
|
isExpanded[i] = false;
|
|
origimg="minus";
|
|
newimg="plus.gif";
|
|
}
|
|
}
|
|
else // else if it is the 2nd layer
|
|
{
|
|
if (expand_flag) // if expand it
|
|
{
|
|
disptype="block";
|
|
isExpanded[i] = false;
|
|
origimg="minus"; // don't care
|
|
newimg="plus.gif"; // don't care
|
|
}
|
|
else // if hide it
|
|
{
|
|
disptype="none";
|
|
isExpanded[i] = false; // don't care
|
|
origimg="minus"; // don't care
|
|
newimg="plus.gif"; // don't care
|
|
}
|
|
}
|
|
}
|
|
else // else if if it is not the affected 1st/2nd layer
|
|
{
|
|
if (expand_flag) // if expand it
|
|
{
|
|
disptype="none";
|
|
isExpanded[i] = false; // don't care
|
|
origimg="minus";
|
|
newimg="plus.gif";
|
|
}
|
|
}
|
|
|
|
//if (temp(i).id != str_id)
|
|
//{
|
|
temp(i).style.display = disptype;
|
|
//}
|
|
|
|
//imgsrc=document.images["img" + temp(i).id.substr(3,6)];
|
|
//if (typeof(imgsrc) != "undefined")
|
|
if (typeof(imgsrc=document.images["img" + temp(i).id.substr(3,6)]) != "undefined")
|
|
{
|
|
if (imgsrc.src.indexOf("mid" + origimg) != -1)
|
|
imgsrc.src = "images/mid" + newimg;
|
|
else if (imgsrc.src.indexOf("last" + origimg) != -1)
|
|
imgsrc.src = "images/last" + newimg;
|
|
}
|
|
//} /* End of if (temp(i).id */
|
|
}
|
|
} /* End of for (i=0;i<temp.length;i++) */
|
|
}
|
|
|
|
function initIt()
|
|
{
|
|
var i;
|
|
var div_obj = document.all.tags("DIV");
|
|
|
|
isExpanded = new Array(div_obj.length);
|
|
for (i=0;i<div_obj.length;i++)
|
|
{
|
|
isExpanded[i] = false;
|
|
if (div_obj(i).id.substr(5,4) != "0000")
|
|
{
|
|
div_obj(i).style.display = "none";
|
|
}
|
|
}
|
|
}
|
|
|
|
//
|
|
// scroll when the page is loaded.
|
|
function compensate_scroll(scroll_x, scroll_y)
|
|
{
|
|
initIt();
|
|
if ((typeof(scroll_x) != "undefined") && (typeof(scroll_y) != "undefined")
|
|
&& (scroll_y != "") && (scroll_y != ""))
|
|
{
|
|
self.scrollBy(scroll_x, scroll_y);
|
|
}
|
|
return;
|
|
}
|
|
//-->
|
|
</SCRIPT>
|
|
</HEAD>
|
|
<BODY onLoad='compensate_scroll("","");'>
|
|
<CENTER>
|
|
BSS ID 0 <BR>
|
|
<INPUT type=button value='SHOW ALARM' name=showalarm
|
|
class=chinese style='width: 100'
|
|
onClick='javascript:window.parent.location.href=
|
|
"alarmframe.php?language=eng&bssid=0"'
|
|
//<INPUT type=button value='STATISTICS' name=statistics
|
|
// class=chinese style='width: 100'
|
|
// onClick='javascript:window.parent.location.href=
|
|
// "btsmeasframe.php?language=eng&bssid=0"'>
|
|
<BR>
|
|
</CENTER><CENTER>
|
|
<font color=blue>CONNECTED</font></CENTER>
|
|
<HR SIZE=1>
|
|
<DIV ID=obj100000><NOBR><A HREF='javascript:void(0)' onClick="javascript:object_onclick('bssfunc.php?language=eng&bssid=0&objectid=BssFunc&parent_objectid=');">BSS</A></NOBR></DIV>
|
|
<DIV ID=obj110000><NOBR><A href='javascript:show_or_hide("110000",1,0);'><IMG name="img110000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=AIf.0&parent_objectid=BssFunc&tablename=OMCR_AIf');">A-interface</A></NOBR></DIV>
|
|
<DIV ID=obj111000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("111000",2,0);'><IMG name="img111000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=ALinkSet.0.0&parent_objectid=AIf.0&tablename=OMCR_ALinkSet');">A-Linkset</A></NOBR></DIV>
|
|
<DIV ID=obj111100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=ALink.0.0.0&parent_objectid=ALinkSet.0.0&tablename=OMCR_ALink');">ALink 0</A></NOBR></DIV>
|
|
<DIV ID=obj120000><NOBR><A href='javascript:show_or_hide("120000",1,0);'><IMG name="img120000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Bsc.0&parent_objectid=BssFunc&tablename=OMCR_Bsc');">BSC</A></NOBR></DIV>
|
|
<DIV ID=obj121000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121000",2,0);'><IMG name="img121000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Shelf.0&parent_objectid=Bsc.0&tablename=OMCR_Wavex');">SHELF</A></NOBR></DIV>
|
|
<DIV ID=obj121100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0>Card 1</NOBR></DIV>
|
|
<DIV ID=obj121200><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121200",3,0);'><IMG name="img121200", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 2</NOBR></DIV>
|
|
<DIV ID=obj121210><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.2.0&parent_objectid=Card.0.2&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121220><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.2.1&parent_objectid=Card.0.2&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj121230><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121230",4,0);'><IMG name="img121230", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 0</NOBR></DIV>
|
|
<DIV ID=obj121231><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.0.0&parent_objectid=DCard.0.2.0&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121232><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.0.1&parent_objectid=DCard.0.2.0&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121233><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.0.2&parent_objectid=DCard.0.2.0&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121234><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.0.3&parent_objectid=DCard.0.2.0&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121240><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121240",4,0);'><IMG name="img121240", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 1</NOBR></DIV>
|
|
<DIV ID=obj121241><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.1.0&parent_objectid=DCard.0.2.1&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121242><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.1.1&parent_objectid=DCard.0.2.1&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121243><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.1.2&parent_objectid=DCard.0.2.1&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121244><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.1.3&parent_objectid=DCard.0.2.1&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121250><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121250",4,0);'><IMG name="img121250", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 2</NOBR></DIV>
|
|
<DIV ID=obj121251><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.2.0&parent_objectid=DCard.0.2.2&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121252><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.2.1&parent_objectid=DCard.0.2.2&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121253><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.2.2&parent_objectid=DCard.0.2.2&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121254><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.2.3&parent_objectid=DCard.0.2.2&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121260><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121260",4,0);'><IMG name="img121260", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 3</NOBR></DIV>
|
|
<DIV ID=obj121261><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.3.0&parent_objectid=DCard.0.2.3&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121262><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.3.1&parent_objectid=DCard.0.2.3&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121263><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.3.2&parent_objectid=DCard.0.2.3&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121264><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.2.3.3&parent_objectid=DCard.0.2.3&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121300><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121300",3,0);'><IMG name="img121300", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 3</NOBR></DIV>
|
|
<DIV ID=obj121310><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.3.0&parent_objectid=Card.0.3&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121320><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.3.1&parent_objectid=Card.0.3&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj121330><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121330",4,0);'><IMG name="img121330", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 0</NOBR></DIV>
|
|
<DIV ID=obj121331><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.0.0&parent_objectid=DCard.0.3.0&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121332><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.0.1&parent_objectid=DCard.0.3.0&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121333><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.0.2&parent_objectid=DCard.0.3.0&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121334><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.0.3&parent_objectid=DCard.0.3.0&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121340><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121340",4,0);'><IMG name="img121340", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 1</NOBR></DIV>
|
|
<DIV ID=obj121341><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.1.0&parent_objectid=DCard.0.3.1&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121342><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.1.1&parent_objectid=DCard.0.3.1&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121343><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.1.2&parent_objectid=DCard.0.3.1&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121344><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.1.3&parent_objectid=DCard.0.3.1&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121350><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121350",4,0);'><IMG name="img121350", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 2</NOBR></DIV>
|
|
<DIV ID=obj121351><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.2.0&parent_objectid=DCard.0.3.2&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121352><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.2.1&parent_objectid=DCard.0.3.2&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121353><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.2.2&parent_objectid=DCard.0.3.2&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121354><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.2.3&parent_objectid=DCard.0.3.2&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121360><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121360",4,0);'><IMG name="img121360", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 3</NOBR></DIV>
|
|
<DIV ID=obj121361><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.3.0&parent_objectid=DCard.0.3.3&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121362><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.3.1&parent_objectid=DCard.0.3.3&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121363><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.3.2&parent_objectid=DCard.0.3.3&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121364><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.3.3.3&parent_objectid=DCard.0.3.3&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121400><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121400",3,0);'><IMG name="img121400", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 4</NOBR></DIV>
|
|
<DIV ID=obj121410><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.4.0&parent_objectid=Card.0.4&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121420><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.4.1&parent_objectid=Card.0.4&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj121430><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121430",4,0);'><IMG name="img121430", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 0</NOBR></DIV>
|
|
<DIV ID=obj121431><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.0.0&parent_objectid=DCard.0.4.0&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121432><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.0.1&parent_objectid=DCard.0.4.0&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121433><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.0.2&parent_objectid=DCard.0.4.0&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121434><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.0.3&parent_objectid=DCard.0.4.0&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121440><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121440",4,0);'><IMG name="img121440", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 1</NOBR></DIV>
|
|
<DIV ID=obj121441><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.1.0&parent_objectid=DCard.0.4.1&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121442><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.1.1&parent_objectid=DCard.0.4.1&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121443><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.1.2&parent_objectid=DCard.0.4.1&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121444><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.1.3&parent_objectid=DCard.0.4.1&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121450><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121450",4,0);'><IMG name="img121450", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 2</NOBR></DIV>
|
|
<DIV ID=obj121451><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.2.0&parent_objectid=DCard.0.4.2&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121452><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.2.1&parent_objectid=DCard.0.4.2&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121453><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.2.2&parent_objectid=DCard.0.4.2&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121454><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.2.3&parent_objectid=DCard.0.4.2&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121460><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121460",4,0);'><IMG name="img121460", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 3</NOBR></DIV>
|
|
<DIV ID=obj121461><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.3.0&parent_objectid=DCard.0.4.3&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121462><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.3.1&parent_objectid=DCard.0.4.3&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121463><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.3.2&parent_objectid=DCard.0.4.3&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121464><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.4.3.3&parent_objectid=DCard.0.4.3&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121500><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121500",3,0);'><IMG name="img121500", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 5</NOBR></DIV>
|
|
<DIV ID=obj121510><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.5.0&parent_objectid=Card.0.5&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121520><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.5.1&parent_objectid=Card.0.5&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj121530><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121530",4,0);'><IMG name="img121530", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 0</NOBR></DIV>
|
|
<DIV ID=obj121531><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.0.0&parent_objectid=DCard.0.5.0&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121532><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.0.1&parent_objectid=DCard.0.5.0&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121533><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.0.2&parent_objectid=DCard.0.5.0&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121534><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.0.3&parent_objectid=DCard.0.5.0&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121540><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121540",4,0);'><IMG name="img121540", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 1</NOBR></DIV>
|
|
<DIV ID=obj121541><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.1.0&parent_objectid=DCard.0.5.1&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121542><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.1.1&parent_objectid=DCard.0.5.1&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121543><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.1.2&parent_objectid=DCard.0.5.1&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121544><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.1.3&parent_objectid=DCard.0.5.1&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121550><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121550",4,0);'><IMG name="img121550", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 2</NOBR></DIV>
|
|
<DIV ID=obj121551><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.2.0&parent_objectid=DCard.0.5.2&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121552><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.2.1&parent_objectid=DCard.0.5.2&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121553><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.2.2&parent_objectid=DCard.0.5.2&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121554><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.2.3&parent_objectid=DCard.0.5.2&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121560><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121560",4,0);'><IMG name="img121560", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 3</NOBR></DIV>
|
|
<DIV ID=obj121561><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.3.0&parent_objectid=DCard.0.5.3&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121562><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.3.1&parent_objectid=DCard.0.5.3&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121563><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.3.2&parent_objectid=DCard.0.5.3&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121564><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.5.3.3&parent_objectid=DCard.0.5.3&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121600><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121600",3,0);'><IMG name="img121600", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 6</NOBR></DIV>
|
|
<DIV ID=obj121610><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.6.0&parent_objectid=Card.0.6&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121620><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.6.1&parent_objectid=Card.0.6&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj121630><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121630",4,0);'><IMG name="img121630", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 0</NOBR></DIV>
|
|
<DIV ID=obj121631><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.0.0&parent_objectid=DCard.0.6.0&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121632><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.0.1&parent_objectid=DCard.0.6.0&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121633><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.0.2&parent_objectid=DCard.0.6.0&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121634><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.0.3&parent_objectid=DCard.0.6.0&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121640><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121640",4,0);'><IMG name="img121640", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 1</NOBR></DIV>
|
|
<DIV ID=obj121641><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.1.0&parent_objectid=DCard.0.6.1&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121642><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.1.1&parent_objectid=DCard.0.6.1&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121643><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.1.2&parent_objectid=DCard.0.6.1&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121644><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.1.3&parent_objectid=DCard.0.6.1&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121650><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121650",4,0);'><IMG name="img121650", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 2</NOBR></DIV>
|
|
<DIV ID=obj121651><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.2.0&parent_objectid=DCard.0.6.2&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121652><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.2.1&parent_objectid=DCard.0.6.2&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121653><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.2.2&parent_objectid=DCard.0.6.2&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121654><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.2.3&parent_objectid=DCard.0.6.2&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121660><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121660",4,0);'><IMG name="img121660", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 3</NOBR></DIV>
|
|
<DIV ID=obj121661><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.3.0&parent_objectid=DCard.0.6.3&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121662><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.3.1&parent_objectid=DCard.0.6.3&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121663><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.3.2&parent_objectid=DCard.0.6.3&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121664><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.6.3.3&parent_objectid=DCard.0.6.3&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121700><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121700",3,0);'><IMG name="img121700", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 7</NOBR></DIV>
|
|
<DIV ID=obj121710><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.7.0&parent_objectid=Card.0.7&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121720><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.7.1&parent_objectid=Card.0.7&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj121730><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121730",4,0);'><IMG name="img121730", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 0</NOBR></DIV>
|
|
<DIV ID=obj121731><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.0.0&parent_objectid=DCard.0.7.0&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121732><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.0.1&parent_objectid=DCard.0.7.0&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121733><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.0.2&parent_objectid=DCard.0.7.0&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121734><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.0.3&parent_objectid=DCard.0.7.0&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121740><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121740",4,0);'><IMG name="img121740", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 1</NOBR></DIV>
|
|
<DIV ID=obj121741><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.1.0&parent_objectid=DCard.0.7.1&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121742><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.1.1&parent_objectid=DCard.0.7.1&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121743><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.1.2&parent_objectid=DCard.0.7.1&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121744><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.1.3&parent_objectid=DCard.0.7.1&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121750><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121750",4,0);'><IMG name="img121750", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 2</NOBR></DIV>
|
|
<DIV ID=obj121751><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.2.0&parent_objectid=DCard.0.7.2&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121752><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.2.1&parent_objectid=DCard.0.7.2&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121753><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.2.2&parent_objectid=DCard.0.7.2&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121754><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.2.3&parent_objectid=DCard.0.7.2&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121760><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121760",4,0);'><IMG name="img121760", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 3</NOBR></DIV>
|
|
<DIV ID=obj121761><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.3.0&parent_objectid=DCard.0.7.3&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121762><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.3.1&parent_objectid=DCard.0.7.3&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121763><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.3.2&parent_objectid=DCard.0.7.3&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121764><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.7.3.3&parent_objectid=DCard.0.7.3&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121800><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121800",3,0);'><IMG name="img121800", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 8</NOBR></DIV>
|
|
<DIV ID=obj121810><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.8.0&parent_objectid=Card.0.8&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121820><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.8.1&parent_objectid=Card.0.8&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj121830><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121830",4,0);'><IMG name="img121830", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 0</NOBR></DIV>
|
|
<DIV ID=obj121831><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.0.0&parent_objectid=DCard.0.8.0&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121832><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.0.1&parent_objectid=DCard.0.8.0&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121833><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.0.2&parent_objectid=DCard.0.8.0&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121834><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.0.3&parent_objectid=DCard.0.8.0&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121840><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121840",4,0);'><IMG name="img121840", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 1</NOBR></DIV>
|
|
<DIV ID=obj121841><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.1.0&parent_objectid=DCard.0.8.1&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121842><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.1.1&parent_objectid=DCard.0.8.1&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121843><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.1.2&parent_objectid=DCard.0.8.1&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121844><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.1.3&parent_objectid=DCard.0.8.1&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121850><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121850",4,0);'><IMG name="img121850", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 2</NOBR></DIV>
|
|
<DIV ID=obj121851><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.2.0&parent_objectid=DCard.0.8.2&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121852><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.2.1&parent_objectid=DCard.0.8.2&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121853><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.2.2&parent_objectid=DCard.0.8.2&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121854><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.2.3&parent_objectid=DCard.0.8.2&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121860><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121860",4,0);'><IMG name="img121860", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>DSP Card 3</NOBR></DIV>
|
|
<DIV ID=obj121861><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.3.0&parent_objectid=DCard.0.8.3&tablename=OMCR_TrauDsp');">DSP 0</A></NOBR></DIV>
|
|
<DIV ID=obj121862><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.3.1&parent_objectid=DCard.0.8.3&tablename=OMCR_TrauDsp');">DSP 1</A></NOBR></DIV>
|
|
<DIV ID=obj121863><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.3.2&parent_objectid=DCard.0.8.3&tablename=OMCR_TrauDsp');">DSP 2</A></NOBR></DIV>
|
|
<DIV ID=obj121864><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Dsp.0.8.3.3&parent_objectid=DCard.0.8.3&tablename=OMCR_TrauDsp');">DSP 3</A></NOBR></DIV>
|
|
<DIV ID=obj121900><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121900",3,0);'><IMG name="img121900", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 9</NOBR></DIV>
|
|
<DIV ID=obj121910><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.9.0&parent_objectid=Card.0.9&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121920><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.9.1&parent_objectid=Card.0.9&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj121a00><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121a00",3,0);'><IMG name="img121a00", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 10</NOBR></DIV>
|
|
<DIV ID=obj121a10><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.10.0&parent_objectid=Card.0.10&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121a20><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.10.1&parent_objectid=Card.0.10&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj121b00><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121b00",3,0);'><IMG name="img121b00", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 11</NOBR></DIV>
|
|
<DIV ID=obj121b10><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.11.0&parent_objectid=Card.0.11&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121b20><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.11.1&parent_objectid=Card.0.11&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj121c00><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121c00",3,0);'><IMG name="img121c00", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 12</NOBR></DIV>
|
|
<DIV ID=obj121c10><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.12.0&parent_objectid=Card.0.12&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121c20><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.12.1&parent_objectid=Card.0.12&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj121d00><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121d00",3,0);'><IMG name="img121d00", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 13</NOBR></DIV>
|
|
<DIV ID=obj121d10><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.13.0&parent_objectid=Card.0.13&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121d20><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.13.1&parent_objectid=Card.0.13&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj121e00><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121e00",3,0);'><IMG name="img121e00", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 14</NOBR></DIV>
|
|
<DIV ID=obj121e10><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.14.0&parent_objectid=Card.0.14&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121e20><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.14.1&parent_objectid=Card.0.14&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj121f00><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("121f00",3,0);'><IMG name="img121f00", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 15</NOBR></DIV>
|
|
<DIV ID=obj121f10><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.15.0&parent_objectid=Card.0.15&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj121f20><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Port.0.15.1&parent_objectid=Card.0.15&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj122000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Card.0.17&parent_objectid=Shelf.0&tablename=OMCR_ClockMod');">Clock Module</A></NOBR></DIV>
|
|
<DIV ID=obj130000><NOBR><A href='javascript:show_or_hide("130000",1,0);'><IMG name="img130000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr.0&parent_objectid=BssFunc&tablename=OMCR_BtsMgr');">BtsMgr.0</A></NOBR></DIV>
|
|
<DIV ID=obj131000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=AbisMgr.0.0&parent_objectid=BtsMgr.0&tablename=OMCR_AbisMgr');">ABIS Manager</A></NOBR></DIV>
|
|
<DIV ID=obj132000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("132000",2,0);'><IMG name="img132000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Bts.0.0&parent_objectid=BtsMgr.0&tablename=OMCR_Bts');">BTS</A></NOBR></DIV>
|
|
<DIV ID=obj132100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=PwrCont.0.0.0&parent_objectid=Bts.0.0&tablename=OMCR_PwrCont');">Power Control</A></NOBR></DIV>
|
|
<DIV ID=obj132200><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=HandCont.0.0.0&parent_objectid=Bts.0.0&tablename=OMCR_HandCont');">HO Control</A></NOBR></DIV>
|
|
<DIV ID=obj140000><NOBR><A href='javascript:show_or_hide("140000",1,0);'><IMG name="img140000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr.1&parent_objectid=BssFunc&tablename=OMCR_BtsMgr');">BTS Manager 1</A></NOBR></DIV>
|
|
<DIV ID=obj141000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Software.1.0&parent_objectid=BtsMgr.1&tablename=OMCR_Software');">Software</A></NOBR></DIV>
|
|
<DIV ID=obj142000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("142000",2,0);'><IMG name="img142000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf.1.0&parent_objectid=BtsMgr.1&tablename=OMCR_Wavex');">SHELF</A></NOBR></DIV>
|
|
<DIV ID=obj142100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("142100",3,0);'><IMG name="img142100", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 1</NOBR></DIV>
|
|
<DIV ID=obj142110><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf_Card_Port.1.0.1.0&parent_objectid=BtsMgr_Shelf_Card.1.0.1&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj142120><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf_Card_Port.1.0.1.1&parent_objectid=BtsMgr_Shelf_Card.1.0.1&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj142200><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf_Card.1.0.17&parent_objectid=BtsMgr_Shelf.1.0&tablename=OMCR_ClockMod');">Clock Module</A></NOBR></DIV>
|
|
<DIV ID=obj143000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=AbisMgr.1.0&parent_objectid=BtsMgr.1&tablename=OMCR_AbisMgr');">ABIS Manager</A></NOBR></DIV>
|
|
<DIV ID=obj144000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("144000",2,0);'><IMG name="img144000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Bts.1.0&parent_objectid=BtsMgr.1&tablename=OMCR_Bts');">BTS 0</A></NOBR></DIV>
|
|
<DIV ID=obj144100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=RCarrier.1.0.2&parent_objectid=Bts.1.0&tablename=OMCR_RCarrier');">Freq Carrier 2</A></NOBR></DIV>
|
|
<DIV ID=obj144200><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=RCarrier.1.0.3&parent_objectid=Bts.1.0&tablename=OMCR_RCarrier');">Freq Carrier 3</A></NOBR></DIV>
|
|
<DIV ID=obj144300><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=RCarrier.1.0.6&parent_objectid=Bts.1.0&tablename=OMCR_RCarrier');">Freq Carrier 6</A></NOBR></DIV>
|
|
<DIV ID=obj144400><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=RCarrier.1.0.7&parent_objectid=Bts.1.0&tablename=OMCR_RCarrier');">Freq Carrier 7</A></NOBR></DIV>
|
|
<DIV ID=obj144500><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("144500",3,0);'><IMG name="img144500", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Trx.1.0.2&parent_objectid=Bts.1.0&tablename=OMCR_Trx');">TRX 2</A></NOBR></DIV>
|
|
<DIV ID=obj144510><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.2.0&parent_objectid=Trx.1.0.2&tablename=OMCR_TrxCh');">TS0</A></NOBR></DIV>
|
|
<DIV ID=obj144520><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.2.1&parent_objectid=Trx.1.0.2&tablename=OMCR_TrxCh');">TS1</A></NOBR></DIV>
|
|
<DIV ID=obj144530><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.2.2&parent_objectid=Trx.1.0.2&tablename=OMCR_TrxCh');">TS2</A></NOBR></DIV>
|
|
<DIV ID=obj144540><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.2.3&parent_objectid=Trx.1.0.2&tablename=OMCR_TrxCh');">TS3</A></NOBR></DIV>
|
|
<DIV ID=obj144550><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.2.4&parent_objectid=Trx.1.0.2&tablename=OMCR_TrxCh');">TS4</A></NOBR></DIV>
|
|
<DIV ID=obj144560><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.2.5&parent_objectid=Trx.1.0.2&tablename=OMCR_TrxCh');">TS5</A></NOBR></DIV>
|
|
<DIV ID=obj144570><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.2.6&parent_objectid=Trx.1.0.2&tablename=OMCR_TrxCh');">TS6</A></NOBR></DIV>
|
|
<DIV ID=obj144580><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.2.7&parent_objectid=Trx.1.0.2&tablename=OMCR_TrxCh');">TS7</A></NOBR></DIV>
|
|
<DIV ID=obj144600><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("144600",3,0);'><IMG name="img144600", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Trx.1.0.3&parent_objectid=Bts.1.0&tablename=OMCR_Trx');">TRX 3</A></NOBR></DIV>
|
|
<DIV ID=obj144610><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.3.0&parent_objectid=Trx.1.0.3&tablename=OMCR_TrxCh');">TS0</A></NOBR></DIV>
|
|
<DIV ID=obj144620><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.3.1&parent_objectid=Trx.1.0.3&tablename=OMCR_TrxCh');">TS1</A></NOBR></DIV>
|
|
<DIV ID=obj144630><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.3.2&parent_objectid=Trx.1.0.3&tablename=OMCR_TrxCh');">TS2</A></NOBR></DIV>
|
|
<DIV ID=obj144640><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.3.3&parent_objectid=Trx.1.0.3&tablename=OMCR_TrxCh');">TS3</A></NOBR></DIV>
|
|
<DIV ID=obj144650><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.3.4&parent_objectid=Trx.1.0.3&tablename=OMCR_TrxCh');">TS4</A></NOBR></DIV>
|
|
<DIV ID=obj144660><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.3.5&parent_objectid=Trx.1.0.3&tablename=OMCR_TrxCh');">TS5</A></NOBR></DIV>
|
|
<DIV ID=obj144670><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.3.6&parent_objectid=Trx.1.0.3&tablename=OMCR_TrxCh');">TS6</A></NOBR></DIV>
|
|
<DIV ID=obj144680><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.3.7&parent_objectid=Trx.1.0.3&tablename=OMCR_TrxCh');">TS7</A></NOBR></DIV>
|
|
<DIV ID=obj144700><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("144700",3,0);'><IMG name="img144700", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Trx.1.0.6&parent_objectid=Bts.1.0&tablename=OMCR_Trx');">TRX 6</A></NOBR></DIV>
|
|
<DIV ID=obj144710><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.6.0&parent_objectid=Trx.1.0.6&tablename=OMCR_TrxCh');">TS0</A></NOBR></DIV>
|
|
<DIV ID=obj144720><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.6.1&parent_objectid=Trx.1.0.6&tablename=OMCR_TrxCh');">TS1</A></NOBR></DIV>
|
|
<DIV ID=obj144730><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.6.2&parent_objectid=Trx.1.0.6&tablename=OMCR_TrxCh');">TS2</A></NOBR></DIV>
|
|
<DIV ID=obj144740><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.6.3&parent_objectid=Trx.1.0.6&tablename=OMCR_TrxCh');">TS3</A></NOBR></DIV>
|
|
<DIV ID=obj144750><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.6.4&parent_objectid=Trx.1.0.6&tablename=OMCR_TrxCh');">TS4</A></NOBR></DIV>
|
|
<DIV ID=obj144760><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.6.5&parent_objectid=Trx.1.0.6&tablename=OMCR_TrxCh');">TS5</A></NOBR></DIV>
|
|
<DIV ID=obj144770><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.6.6&parent_objectid=Trx.1.0.6&tablename=OMCR_TrxCh');">TS6</A></NOBR></DIV>
|
|
<DIV ID=obj144780><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.6.7&parent_objectid=Trx.1.0.6&tablename=OMCR_TrxCh');">TS7</A></NOBR></DIV>
|
|
<DIV ID=obj144800><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("144800",3,0);'><IMG name="img144800", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Trx.1.0.7&parent_objectid=Bts.1.0&tablename=OMCR_Trx');">TRX 7</A></NOBR></DIV>
|
|
<DIV ID=obj144810><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.7.0&parent_objectid=Trx.1.0.7&tablename=OMCR_TrxCh');">TS0</A></NOBR></DIV>
|
|
<DIV ID=obj144820><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.7.1&parent_objectid=Trx.1.0.7&tablename=OMCR_TrxCh');">TS1</A></NOBR></DIV>
|
|
<DIV ID=obj144830><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.7.2&parent_objectid=Trx.1.0.7&tablename=OMCR_TrxCh');">TS2</A></NOBR></DIV>
|
|
<DIV ID=obj144840><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.7.3&parent_objectid=Trx.1.0.7&tablename=OMCR_TrxCh');">TS3</A></NOBR></DIV>
|
|
<DIV ID=obj144850><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.7.4&parent_objectid=Trx.1.0.7&tablename=OMCR_TrxCh');">TS4</A></NOBR></DIV>
|
|
<DIV ID=obj144860><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.7.5&parent_objectid=Trx.1.0.7&tablename=OMCR_TrxCh');">TS5</A></NOBR></DIV>
|
|
<DIV ID=obj144870><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.7.6&parent_objectid=Trx.1.0.7&tablename=OMCR_TrxCh');">TS6</A></NOBR></DIV>
|
|
<DIV ID=obj144880><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.1.0.7.7&parent_objectid=Trx.1.0.7&tablename=OMCR_TrxCh');">TS7</A></NOBR></DIV>
|
|
<DIV ID=obj144900><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=PwrCont.1.0.0&parent_objectid=Bts.1.0&tablename=OMCR_PwrCont');">Power Control</A></NOBR></DIV>
|
|
<DIV ID=obj144a00><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=HandCont.1.0.0&parent_objectid=Bts.1.0&tablename=OMCR_HandCont');">HO Control</A></NOBR></DIV>
|
|
<DIV ID=obj144b00><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=AdjHand.1.0.1&parent_objectid=Bts.1.0&tablename=OMCR_AdjHand');">AdjHand 1</A></NOBR></DIV>
|
|
<DIV ID=obj150000><NOBR><A href='javascript:show_or_hide("150000",1,0);'><IMG name="img150000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr.2&parent_objectid=BssFunc&tablename=OMCR_BtsMgr');">BTS Manager 2</A></NOBR></DIV>
|
|
<DIV ID=obj151000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Software.2.0&parent_objectid=BtsMgr.2&tablename=OMCR_Software');">Software</A></NOBR></DIV>
|
|
<DIV ID=obj152000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("152000",2,0);'><IMG name="img152000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf.2.0&parent_objectid=BtsMgr.2&tablename=OMCR_Wavex');">SHELF</A></NOBR></DIV>
|
|
<DIV ID=obj152100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf_Card.2.0.17&parent_objectid=BtsMgr_Shelf.2.0&tablename=OMCR_ClockMod');">Clock Module</A></NOBR></DIV>
|
|
<DIV ID=obj153000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=AbisMgr.2.0&parent_objectid=BtsMgr.2&tablename=OMCR_AbisMgr');">ABIS Manager</A></NOBR></DIV>
|
|
<DIV ID=obj154000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("154000",2,0);'><IMG name="img154000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Bts.2.0&parent_objectid=BtsMgr.2&tablename=OMCR_Bts');">BTS 0</A></NOBR></DIV>
|
|
<DIV ID=obj154100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=PwrCont.2.0.0&parent_objectid=Bts.2.0&tablename=OMCR_PwrCont');">Power Control</A></NOBR></DIV>
|
|
<DIV ID=obj154200><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=HandCont.2.0.0&parent_objectid=Bts.2.0&tablename=OMCR_HandCont');">HO Control</A></NOBR></DIV>
|
|
<DIV ID=obj160000><NOBR><A href='javascript:show_or_hide("160000",1,0);'><IMG name="img160000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr.3&parent_objectid=BssFunc&tablename=OMCR_BtsMgr');">BTS Manager 3</A></NOBR></DIV>
|
|
<DIV ID=obj161000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Software.3.0&parent_objectid=BtsMgr.3&tablename=OMCR_Software');">Software</A></NOBR></DIV>
|
|
<DIV ID=obj162000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("162000",2,0);'><IMG name="img162000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf.3.0&parent_objectid=BtsMgr.3&tablename=OMCR_Wavex');">SHELF</A></NOBR></DIV>
|
|
<DIV ID=obj162100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("162100",3,0);'><IMG name="img162100", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>Card 1</NOBR></DIV>
|
|
<DIV ID=obj162110><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf_Card_Port.3.0.1.0&parent_objectid=BtsMgr_Shelf_Card.3.0.1&tablename=OMCR_E1port');">Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj162120><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf_Card_Port.3.0.1.1&parent_objectid=BtsMgr_Shelf_Card.3.0.1&tablename=OMCR_E1port');">Port 1</A></NOBR></DIV>
|
|
<DIV ID=obj162200><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf_Card.3.0.17&parent_objectid=BtsMgr_Shelf.3.0&tablename=OMCR_ClockMod');">Clock Module</A></NOBR></DIV>
|
|
<DIV ID=obj163000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=AbisMgr.3.0&parent_objectid=BtsMgr.3&tablename=OMCR_AbisMgr');">ABIS Manager</A></NOBR></DIV>
|
|
<DIV ID=obj164000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("164000",2,0);'><IMG name="img164000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Bts.3.0&parent_objectid=BtsMgr.3&tablename=OMCR_Bts');">BTS</A></NOBR></DIV>
|
|
<DIV ID=obj164100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=RCarrier.3.0.2&parent_objectid=Bts.3.0&tablename=OMCR_RCarrier');">Freq Carrier 2</A></NOBR></DIV>
|
|
<DIV ID=obj164200><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=RCarrier.3.0.4&parent_objectid=Bts.3.0&tablename=OMCR_RCarrier');">Freq Carrier 4</A></NOBR></DIV>
|
|
<DIV ID=obj164300><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=RCarrier.3.0.6&parent_objectid=Bts.3.0&tablename=OMCR_RCarrier');">Freq Carrier 6</A></NOBR></DIV>
|
|
<DIV ID=obj164400><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("164400",3,0);'><IMG name="img164400", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Trx.3.0.2&parent_objectid=Bts.3.0&tablename=OMCR_Trx');">TRX 2</A></NOBR></DIV>
|
|
<DIV ID=obj164410><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.2.0&parent_objectid=Trx.3.0.2&tablename=OMCR_TrxCh');">TS0</A></NOBR></DIV>
|
|
<DIV ID=obj164420><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.2.1&parent_objectid=Trx.3.0.2&tablename=OMCR_TrxCh');">TS1</A></NOBR></DIV>
|
|
<DIV ID=obj164430><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.2.2&parent_objectid=Trx.3.0.2&tablename=OMCR_TrxCh');">TS2</A></NOBR></DIV>
|
|
<DIV ID=obj164440><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.2.3&parent_objectid=Trx.3.0.2&tablename=OMCR_TrxCh');">TS3</A></NOBR></DIV>
|
|
<DIV ID=obj164450><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.2.4&parent_objectid=Trx.3.0.2&tablename=OMCR_TrxCh');">TS4</A></NOBR></DIV>
|
|
<DIV ID=obj164460><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.2.5&parent_objectid=Trx.3.0.2&tablename=OMCR_TrxCh');">TS5</A></NOBR></DIV>
|
|
<DIV ID=obj164470><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.2.6&parent_objectid=Trx.3.0.2&tablename=OMCR_TrxCh');">TS6</A></NOBR></DIV>
|
|
<DIV ID=obj164480><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.2.7&parent_objectid=Trx.3.0.2&tablename=OMCR_TrxCh');">TS7</A></NOBR></DIV>
|
|
<DIV ID=obj164500><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("164500",3,0);'><IMG name="img164500", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Trx.3.0.4&parent_objectid=Bts.3.0&tablename=OMCR_Trx');">TRX 4</A></NOBR></DIV>
|
|
<DIV ID=obj164510><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.4.0&parent_objectid=Trx.3.0.4&tablename=OMCR_TrxCh');">TS0</A></NOBR></DIV>
|
|
<DIV ID=obj164520><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.4.1&parent_objectid=Trx.3.0.4&tablename=OMCR_TrxCh');">TS1</A></NOBR></DIV>
|
|
<DIV ID=obj164530><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.4.2&parent_objectid=Trx.3.0.4&tablename=OMCR_TrxCh');">TS2</A></NOBR></DIV>
|
|
<DIV ID=obj164540><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.4.3&parent_objectid=Trx.3.0.4&tablename=OMCR_TrxCh');">TS3</A></NOBR></DIV>
|
|
<DIV ID=obj164550><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.4.4&parent_objectid=Trx.3.0.4&tablename=OMCR_TrxCh');">TS4</A></NOBR></DIV>
|
|
<DIV ID=obj164560><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.4.5&parent_objectid=Trx.3.0.4&tablename=OMCR_TrxCh');">TS5</A></NOBR></DIV>
|
|
<DIV ID=obj164570><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.4.6&parent_objectid=Trx.3.0.4&tablename=OMCR_TrxCh');">TS6</A></NOBR></DIV>
|
|
<DIV ID=obj164580><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.4.7&parent_objectid=Trx.3.0.4&tablename=OMCR_TrxCh');">TS7</A></NOBR></DIV>
|
|
<DIV ID=obj164600><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("164600",3,0);'><IMG name="img164600", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Trx.3.0.6&parent_objectid=Bts.3.0&tablename=OMCR_Trx');">TRX 6</A></NOBR></DIV>
|
|
<DIV ID=obj164610><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.6.0&parent_objectid=Trx.3.0.6&tablename=OMCR_TrxCh');">TS0</A></NOBR></DIV>
|
|
<DIV ID=obj164620><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.6.1&parent_objectid=Trx.3.0.6&tablename=OMCR_TrxCh');">TS1</A></NOBR></DIV>
|
|
<DIV ID=obj164630><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.6.2&parent_objectid=Trx.3.0.6&tablename=OMCR_TrxCh');">TS2</A></NOBR></DIV>
|
|
<DIV ID=obj164640><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.6.3&parent_objectid=Trx.3.0.6&tablename=OMCR_TrxCh');">TS3</A></NOBR></DIV>
|
|
<DIV ID=obj164650><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.6.4&parent_objectid=Trx.3.0.6&tablename=OMCR_TrxCh');">TS4</A></NOBR></DIV>
|
|
<DIV ID=obj164660><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.6.5&parent_objectid=Trx.3.0.6&tablename=OMCR_TrxCh');">TS5</A></NOBR></DIV>
|
|
<DIV ID=obj164670><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.6.6&parent_objectid=Trx.3.0.6&tablename=OMCR_TrxCh');">TS6</A></NOBR></DIV>
|
|
<DIV ID=obj164680><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.3.0.6.7&parent_objectid=Trx.3.0.6&tablename=OMCR_TrxCh');">TS7</A></NOBR></DIV>
|
|
<DIV ID=obj164700><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=PwrCont.3.0.0&parent_objectid=Bts.3.0&tablename=OMCR_PwrCont');">Power Control</A></NOBR></DIV>
|
|
<DIV ID=obj164800><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=HandCont.3.0.0&parent_objectid=Bts.3.0&tablename=OMCR_HandCont');">HO Control</A></NOBR></DIV>
|
|
<DIV ID=obj170000><NOBR><A href='javascript:show_or_hide("170000",1,0);'><IMG name="img170000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr.4&parent_objectid=BssFunc&tablename=OMCR_BtsMgr');">BTS Manager 4</A></NOBR></DIV>
|
|
<DIV ID=obj171000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Software.4.0&parent_objectid=BtsMgr.4&tablename=OMCR_Software');">Software</A></NOBR></DIV>
|
|
<DIV ID=obj172000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("172000",2,0);'><IMG name="img172000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf.4.0&parent_objectid=BtsMgr.4&tablename=OMCR_Wavex');">SHELF</A></NOBR></DIV>
|
|
<DIV ID=obj172100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf_Card.4.0.17&parent_objectid=BtsMgr_Shelf.4.0&tablename=OMCR_ClockMod');">Clock Module</A></NOBR></DIV>
|
|
<DIV ID=obj173000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=AbisMgr.4.0&parent_objectid=BtsMgr.4&tablename=OMCR_AbisMgr');">ABIS Manager</A></NOBR></DIV>
|
|
<DIV ID=obj174000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("174000",2,0);'><IMG name="img174000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Bts.4.0&parent_objectid=BtsMgr.4&tablename=OMCR_Bts');">BTS</A></NOBR></DIV>
|
|
<DIV ID=obj174100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=RCarrier.4.0.2&parent_objectid=Bts.4.0&tablename=OMCR_RCarrier');">Freq Carrier 2</A></NOBR></DIV>
|
|
<DIV ID=obj174200><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=RCarrier.4.0.4&parent_objectid=Bts.4.0&tablename=OMCR_RCarrier');">Freq Carrier 4</A></NOBR></DIV>
|
|
<DIV ID=obj174300><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=RCarrier.4.0.6&parent_objectid=Bts.4.0&tablename=OMCR_RCarrier');">Freq Carrier 6</A></NOBR></DIV>
|
|
<DIV ID=obj174400><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("174400",3,0);'><IMG name="img174400", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Trx.4.0.2&parent_objectid=Bts.4.0&tablename=OMCR_Trx');">TRX 2</A></NOBR></DIV>
|
|
<DIV ID=obj174410><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.2.0&parent_objectid=Trx.4.0.2&tablename=OMCR_TrxCh');">TS0</A></NOBR></DIV>
|
|
<DIV ID=obj174420><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.2.1&parent_objectid=Trx.4.0.2&tablename=OMCR_TrxCh');">TS1</A></NOBR></DIV>
|
|
<DIV ID=obj174430><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.2.2&parent_objectid=Trx.4.0.2&tablename=OMCR_TrxCh');">TS2</A></NOBR></DIV>
|
|
<DIV ID=obj174440><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.2.3&parent_objectid=Trx.4.0.2&tablename=OMCR_TrxCh');">TS3</A></NOBR></DIV>
|
|
<DIV ID=obj174450><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.2.4&parent_objectid=Trx.4.0.2&tablename=OMCR_TrxCh');">TS4</A></NOBR></DIV>
|
|
<DIV ID=obj174460><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.2.5&parent_objectid=Trx.4.0.2&tablename=OMCR_TrxCh');">TS5</A></NOBR></DIV>
|
|
<DIV ID=obj174470><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.2.6&parent_objectid=Trx.4.0.2&tablename=OMCR_TrxCh');">TS6</A></NOBR></DIV>
|
|
<DIV ID=obj174480><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.2.7&parent_objectid=Trx.4.0.2&tablename=OMCR_TrxCh');">TS7</A></NOBR></DIV>
|
|
<DIV ID=obj174500><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("174500",3,0);'><IMG name="img174500", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Trx.4.0.4&parent_objectid=Bts.4.0&tablename=OMCR_Trx');">TRX 4</A></NOBR></DIV>
|
|
<DIV ID=obj174510><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.4.0&parent_objectid=Trx.4.0.4&tablename=OMCR_TrxCh');">TS0</A></NOBR></DIV>
|
|
<DIV ID=obj174520><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.4.1&parent_objectid=Trx.4.0.4&tablename=OMCR_TrxCh');">TS1</A></NOBR></DIV>
|
|
<DIV ID=obj174530><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.4.2&parent_objectid=Trx.4.0.4&tablename=OMCR_TrxCh');">TS2</A></NOBR></DIV>
|
|
<DIV ID=obj174540><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.4.3&parent_objectid=Trx.4.0.4&tablename=OMCR_TrxCh');">TS3</A></NOBR></DIV>
|
|
<DIV ID=obj174550><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.4.4&parent_objectid=Trx.4.0.4&tablename=OMCR_TrxCh');">TS4</A></NOBR></DIV>
|
|
<DIV ID=obj174560><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.4.5&parent_objectid=Trx.4.0.4&tablename=OMCR_TrxCh');">TS5</A></NOBR></DIV>
|
|
<DIV ID=obj174570><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.4.6&parent_objectid=Trx.4.0.4&tablename=OMCR_TrxCh');">TS6</A></NOBR></DIV>
|
|
<DIV ID=obj174580><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.4.7&parent_objectid=Trx.4.0.4&tablename=OMCR_TrxCh');">TS7</A></NOBR></DIV>
|
|
<DIV ID=obj174600><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("174600",3,0);'><IMG name="img174600", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Trx.4.0.6&parent_objectid=Bts.4.0&tablename=OMCR_Trx');">TRX 6</A></NOBR></DIV>
|
|
<DIV ID=obj174610><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.6.0&parent_objectid=Trx.4.0.6&tablename=OMCR_TrxCh');">TS0</A></NOBR></DIV>
|
|
<DIV ID=obj174620><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.6.1&parent_objectid=Trx.4.0.6&tablename=OMCR_TrxCh');">TS1</A></NOBR></DIV>
|
|
<DIV ID=obj174630><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.6.2&parent_objectid=Trx.4.0.6&tablename=OMCR_TrxCh');">TS2</A></NOBR></DIV>
|
|
<DIV ID=obj174640><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.6.3&parent_objectid=Trx.4.0.6&tablename=OMCR_TrxCh');">TS3</A></NOBR></DIV>
|
|
<DIV ID=obj174650><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.6.4&parent_objectid=Trx.4.0.6&tablename=OMCR_TrxCh');">TS4</A></NOBR></DIV>
|
|
<DIV ID=obj174660><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.6.5&parent_objectid=Trx.4.0.6&tablename=OMCR_TrxCh');">TS5</A></NOBR></DIV>
|
|
<DIV ID=obj174670><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.6.6&parent_objectid=Trx.4.0.6&tablename=OMCR_TrxCh');">TS6</A></NOBR></DIV>
|
|
<DIV ID=obj174680><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.4.0.6.7&parent_objectid=Trx.4.0.6&tablename=OMCR_TrxCh');">TS7</A></NOBR></DIV>
|
|
<DIV ID=obj174700><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=PwrCont.4.0.0&parent_objectid=Bts.4.0&tablename=OMCR_PwrCont');">Power Control</A></NOBR></DIV>
|
|
<DIV ID=obj174800><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=HandCont.4.0.0&parent_objectid=Bts.4.0&tablename=OMCR_HandCont');">HO Control</A></NOBR></DIV>
|
|
<DIV ID=obj180000><NOBR><A href='javascript:show_or_hide("180000",1,0);'><IMG name="img180000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr.5&parent_objectid=BssFunc&tablename=OMCR_BtsMgr');">BTS Manager 5</A></NOBR></DIV>
|
|
<DIV ID=obj181000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Software.5.0&parent_objectid=BtsMgr.5&tablename=OMCR_Software');">Software</A></NOBR></DIV>
|
|
<DIV ID=obj182000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("182000",2,0);'><IMG name="img182000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf.5.0&parent_objectid=BtsMgr.5&tablename=OMCR_Wavex');">SHELF</A></NOBR></DIV>
|
|
<DIV ID=obj182100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=BtsMgr_Shelf_Card.5.0.17&parent_objectid=BtsMgr_Shelf.5.0&tablename=OMCR_ClockMod');">Clock Module</A></NOBR></DIV>
|
|
<DIV ID=obj183000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=AbisMgr.5.0&parent_objectid=BtsMgr.5&tablename=OMCR_AbisMgr');">ABIS Manager</A></NOBR></DIV>
|
|
<DIV ID=obj184000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("184000",2,0);'><IMG name="img184000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Bts.5.0&parent_objectid=BtsMgr.5&tablename=OMCR_Bts');">BTS</A></NOBR></DIV>
|
|
<DIV ID=obj184100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=RCarrier.5.0.2&parent_objectid=Bts.5.0&tablename=OMCR_RCarrier');">Freq Carrier 2</A></NOBR></DIV>
|
|
<DIV ID=obj184200><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=RCarrier.5.0.4&parent_objectid=Bts.5.0&tablename=OMCR_RCarrier');">Freq Carrier 4</A></NOBR></DIV>
|
|
<DIV ID=obj184300><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=RCarrier.5.0.6&parent_objectid=Bts.5.0&tablename=OMCR_RCarrier');">Freq Carrier 6</A></NOBR></DIV>
|
|
<DIV ID=obj184400><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("184400",3,0);'><IMG name="img184400", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Trx.5.0.2&parent_objectid=Bts.5.0&tablename=OMCR_Trx');">TRX 2</A></NOBR></DIV>
|
|
<DIV ID=obj184410><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.2.0&parent_objectid=Trx.5.0.2&tablename=OMCR_TrxCh');">TS0</A></NOBR></DIV>
|
|
<DIV ID=obj184420><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.2.1&parent_objectid=Trx.5.0.2&tablename=OMCR_TrxCh');">TS1</A></NOBR></DIV>
|
|
<DIV ID=obj184430><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.2.2&parent_objectid=Trx.5.0.2&tablename=OMCR_TrxCh');">TS2</A></NOBR></DIV>
|
|
<DIV ID=obj184440><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.2.3&parent_objectid=Trx.5.0.2&tablename=OMCR_TrxCh');">TS3</A></NOBR></DIV>
|
|
<DIV ID=obj184450><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.2.4&parent_objectid=Trx.5.0.2&tablename=OMCR_TrxCh');">TS4</A></NOBR></DIV>
|
|
<DIV ID=obj184460><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.2.5&parent_objectid=Trx.5.0.2&tablename=OMCR_TrxCh');">TS5</A></NOBR></DIV>
|
|
<DIV ID=obj184470><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.2.6&parent_objectid=Trx.5.0.2&tablename=OMCR_TrxCh');">TS6</A></NOBR></DIV>
|
|
<DIV ID=obj184480><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.2.7&parent_objectid=Trx.5.0.2&tablename=OMCR_TrxCh');">TS7</A></NOBR></DIV>
|
|
<DIV ID=obj184500><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("184500",3,0);'><IMG name="img184500", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Trx.5.0.4&parent_objectid=Bts.5.0&tablename=OMCR_Trx');">TRX 4</A></NOBR></DIV>
|
|
<DIV ID=obj184510><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.4.0&parent_objectid=Trx.5.0.4&tablename=OMCR_TrxCh');">TS0</A></NOBR></DIV>
|
|
<DIV ID=obj184520><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.4.1&parent_objectid=Trx.5.0.4&tablename=OMCR_TrxCh');">TS1</A></NOBR></DIV>
|
|
<DIV ID=obj184530><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.4.2&parent_objectid=Trx.5.0.4&tablename=OMCR_TrxCh');">TS2</A></NOBR></DIV>
|
|
<DIV ID=obj184540><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.4.3&parent_objectid=Trx.5.0.4&tablename=OMCR_TrxCh');">TS3</A></NOBR></DIV>
|
|
<DIV ID=obj184550><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.4.4&parent_objectid=Trx.5.0.4&tablename=OMCR_TrxCh');">TS4</A></NOBR></DIV>
|
|
<DIV ID=obj184560><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.4.5&parent_objectid=Trx.5.0.4&tablename=OMCR_TrxCh');">TS5</A></NOBR></DIV>
|
|
<DIV ID=obj184570><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.4.6&parent_objectid=Trx.5.0.4&tablename=OMCR_TrxCh');">TS6</A></NOBR></DIV>
|
|
<DIV ID=obj184580><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.4.7&parent_objectid=Trx.5.0.4&tablename=OMCR_TrxCh');">TS7</A></NOBR></DIV>
|
|
<DIV ID=obj184600><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("184600",3,0);'><IMG name="img184600", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Trx.5.0.6&parent_objectid=Bts.5.0&tablename=OMCR_Trx');">TRX 6</A></NOBR></DIV>
|
|
<DIV ID=obj184610><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.6.0&parent_objectid=Trx.5.0.6&tablename=OMCR_TrxCh');">TS0</A></NOBR></DIV>
|
|
<DIV ID=obj184620><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.6.1&parent_objectid=Trx.5.0.6&tablename=OMCR_TrxCh');">TS1</A></NOBR></DIV>
|
|
<DIV ID=obj184630><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.6.2&parent_objectid=Trx.5.0.6&tablename=OMCR_TrxCh');">TS2</A></NOBR></DIV>
|
|
<DIV ID=obj184640><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.6.3&parent_objectid=Trx.5.0.6&tablename=OMCR_TrxCh');">TS3</A></NOBR></DIV>
|
|
<DIV ID=obj184650><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.6.4&parent_objectid=Trx.5.0.6&tablename=OMCR_TrxCh');">TS4</A></NOBR></DIV>
|
|
<DIV ID=obj184660><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.6.5&parent_objectid=Trx.5.0.6&tablename=OMCR_TrxCh');">TS5</A></NOBR></DIV>
|
|
<DIV ID=obj184670><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.6.6&parent_objectid=Trx.5.0.6&tablename=OMCR_TrxCh');">TS6</A></NOBR></DIV>
|
|
<DIV ID=obj184680><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=TrxCh.5.0.6.7&parent_objectid=Trx.5.0.6&tablename=OMCR_TrxCh');">TS7</A></NOBR></DIV>
|
|
<DIV ID=obj184700><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=PwrCont.5.0.0&parent_objectid=Bts.5.0&tablename=OMCR_PwrCont');">Power Control</A></NOBR></DIV>
|
|
<DIV ID=obj184800><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=HandCont.5.0.0&parent_objectid=Bts.5.0&tablename=OMCR_HandCont');">HO Control</A></NOBR></DIV>
|
|
<DIV ID=obj190000><NOBR><A href='javascript:show_or_hide("190000",1,0);'><IMG name="img190000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>BSS Gb</NOBR></DIV>
|
|
<DIV ID=obj191000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Bssgp.0.0&parent_objectid=BssGb.0&tablename=OMCR_Bssgp');">BSS Gp</A></NOBR></DIV>
|
|
<DIV ID=obj192000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Ns.0.0&parent_objectid=BssGb.0&tablename=OMCR_Ns');">Ns</A></NOBR></DIV>
|
|
<DIV ID=obj193000><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("193000",2,0);'><IMG name="img193000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Nse.0.0&parent_objectid=BssGb.0&tablename=OMCR_Nse');">Nse</A></NOBR></DIV>
|
|
<DIV ID=obj193100><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Bvc.0.0.0&parent_objectid=Nse.0.0&tablename=OMCR_Bvc');">Bvc 0</A></NOBR></DIV>
|
|
<DIV ID=obj193200><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/midblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Bvc.0.0.1&parent_objectid=Nse.0.0&tablename=OMCR_Bvc');">Bvc 1</A></NOBR></DIV>
|
|
<DIV ID=obj193300><NOBR><IMG alt='' height=16 src=images/line.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=Nsvc.0.0.0&parent_objectid=Nse.0.0&tablename=OMCR_Nsvc');">Nsvc 0</A></NOBR></DIV>
|
|
<DIV ID=obj1a0000><NOBR><A href='javascript:show_or_hide("1a0000",1,0);'><IMG name="img1a0000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A>FR Manager</NOBR></DIV>
|
|
<DIV ID=obj1a1000><NOBR><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><A href='javascript:show_or_hide("1a1000",2,0);'><IMG name="img1a1000", alt='' height=16 src=images/midplus.gif width=16 align=absBottom border=0></A><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=FRPort.0.0&parent_objectid=FRMgr.0&tablename=OMCR_FRPort');">FR Port 0</A></NOBR></DIV>
|
|
<DIV ID=obj1a1100><NOBR><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/none.gif width=16 align=absBottom border=0><IMG alt='' height=16 src=images/lastblk.gif width=16 align=absBottom border=0><A HREF='javascript:void(0)' onClick="javascript:object_onclick('objects.php?language=eng&bssid=0&objectid=pvc.0.0.0&parent_objectid=FRPort.0.0&tablename=OMCR_pvc');">pvc 0</A></NOBR></DIV>
|
|
|
|
</BODY>
|
|
</HTML>
|