var mmenus    = new Array();
var misShow   = new Boolean();
misShow=false;
var misdown   = new Boolean();
misdown=false;
var msrcel;
var mfromel;
var mtoel;
var musestatus=false;
var mthestatus="";
var mpopTimer = 0;
mmenucolor='#F5F5F5';mfontcolor='#01043C';mmenuoutcolor='#ffffff';
mmenuincolor='#F0F0F0';mmenuoutbordercolor='#ffffff';
mmenuinbordercolor='#95BBD7';mmidoutcolor='#ffffff';mmidincolor='#ffffff';
mmenuovercolor='#5874DC';mitemedge='0';msubedge='0';mmenuunitwidth=90;mmenuitemwidth=88;mmenuheight=29;mmenuwidth='650';
mmenuadjust=-5;mmenuadjustV=0;mfonts='font-family: 宋体; font-size: 9pt; color: #115B86; ';mcursor='default';

function stoperror(){
return true;
}
window.onerror=stoperror;
function mpopOut() {
mpopTimer = setTimeout('mallhide()',500);
}
function getReal(el, type, value) {
temp = el;
while ((temp != null) && (temp.tagName != "BODY")) {
if (eval("temp." + type) == value) {
el = temp;
return el;
}
temp = temp.parentElement;
}
return el;
}


function mMenuRegister(menu)
{
mmenus[mmenus.length] = menu
return (mmenus.length - 1)
}
function mMenuItem(caption,command,target,isline,statustxt,img,sizex,sizey,pos){
this.caption=caption;
this.command=command;
this.target=target;
this.isline=isline;
this.statustxt=statustxt;
this.img=img;
this.sizex=sizex;
this.sizey=sizey;
this.pos=pos;
}
function mMenu(caption,command,target,img,sizex,sizey,pos){
this.items = new Array();
this.caption=caption;
this.command=command;
this.target=target;
this.img=img;
this.sizex=sizex;
this.sizey=sizey;
this.pos=pos;
this.id=mMenuRegister(this);
}
function mMenuAddItem(item)
{
this.items[this.items.length] = item
item.parent = this.id;
this.children=true;
}

mMenu.prototype.addItem = mMenuAddItem;
function mtoout(src){

src.style.borderLeftColor=mmenuoutbordercolor;
src.style.borderRightColor=mmenuinbordercolor;
src.style.borderTopColor=mmenuoutbordercolor;
src.style.borderBottomColor=mmenuinbordercolor;

src.style.color=mmenuovercolor;
}
function mtoin(src){

src.style.borderLeftColor=mmenuinbordercolor;
src.style.borderRightColor=mmenuoutbordercolor;
src.style.borderTopColor=mmenuinbordercolor;
src.style.borderBottomColor=mmenuoutbordercolor;

src.style.color=mmenuovercolor;
}
function mnochange(src){
src.style.borderLeftColor=mmenucolor;
src.style.borderRightColor=mmenucolor;
src.style.borderTopColor=mmenucolor;
src.style.borderBottomColor=mmenucolor;
src.style.backgroundColor='';
src.style.color=mfontcolor;

}
function mallhide(){
for(var nummenu=0;nummenu<mmenus.length;nummenu++){
var themenu=document.all['mMenu'+nummenu]
var themenudiv=document.all['mmenudiv'+nummenu]
mnochange(themenu);
mmenuhide(themenudiv);
}
}
function mmenuhide(menuid){
menuid.style.filter='Alpha(Opacity=100)';
menuid.style.visibility='hidden';
misShow=false;
}
function mmenushow(menuid,pid){
menuid.style.filter='Alpha(Opacity=90)';
menuid.style.left=mposflag.offsetLeft+pid.offsetLeft+mmenuadjust;menuid.style.top=mposflag.offsetTop+mmenutable.offsetHeight+mmenuadjustV+1;
if(mmenuitemwidth+parseInt(menuid.style.left)>document.body.clientWidth)
menuid.style.left=document.body.clientWidth-mmenuitemwidth;
menuid.style.visibility='visible';
misShow=true;
}
function mmenu_over(menuid,x){
mtoel = getReal(window.event.toElement, "className", "coolButton");
mfromel = getReal(window.event.fromElement, "className", "coolButton");
if (mtoel == mfromel) return;
msrcel = window.event.srcElement;
if(x<0){
misShow = false;
mallhide();
mtoout(msrcel);
}else{

mallhide();
mtoin(msrcel);
mmenushow(menuid,eval("mMenu"+x));

}
clearTimeout(mpopTimer);
}
function mmenu_out(menuid){
mtoel = getReal(window.event.toElement, "className", "coolButton");
mfromel = getReal(window.event.fromElement, "className", "coolButton");
if (mtoel == mfromel) return;
msrcel = window.event.srcElement;
if (misShow){
mtoin(msrcel);
}else{
mnochange(msrcel);
}
mpopOut()
}
function mmenu_down(menuid,x){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
if(misShow){
mmenuhide(menuid);
mtoout(msrcel);
}
else{
mtoin(msrcel);
mmenushow(menuid,eval("mMenu"+x));
misdown=true;
}
}
function mmenu_up(){
misdown=false;
}
function mmenuitem_over(menuid){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
if(misdown){
mtoin(msrcel);
}
else{
mtoout(msrcel);
}
if(mthestatus!=""){
musestatus=true;
window.status=mthestatus;
}
clearTimeout(mpopTimer);
}
function mmenuitem_out(menuid){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
mnochange(msrcel);
if(musestatus)window.status="";
mpopOut()
}
function mmenuitem_down(menuid){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
mtoin(msrcel)
misdown=true;
}
function mmenuitem_up(menuid){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
mtoout(msrcel)
misdown=false;
}
function mexec2(x){
var cmd;
if(mmenus[x].target=="blank"){
cmd = "window.open('"+mmenus[x].command+"')";
}else{
cmd = mmenus[x].target+".location='"+mmenus[x].command+"'";
}
eval(cmd);
}
function mexec(x,i){
var cmd;
if(mmenus[x].items[i].target=="blank"){
cmd = "window.open('"+mmenus[x].items[i].command+"')";
}else{
cmd = mmenus[x].items[i].target+".location='"+mmenus[x].items[i].command+"'";
}
eval(cmd);
}
function mbody_click(){

if (misShow){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
for(var x=0;x<=mmenus.length;x++){
if(msrcel.id=="mMenu"+x)
return;
}
mallhide();
}
}
document.onclick=mbody_click;
var mMenuBodyRef;
function mwritetodocument(){
var mwb=1;
for(var i in document.all){
if (document.all[i].tagName == 'BODY'){
mMenuBodyRef = document.all[i]
var stringx='<div id="mposflag" style="position:absolute;"></div><table  id=mmenutable border=0 cellpadding=0 cellspacing=0 width='+mmenuwidth+' height='+mmenuheight+'  onselectstart="event.returnValue=false"'+
' style="filter:Alpha(Opacity=100);cursor:hand;'+mfonts+
'; padding:1px"><tr>'
for(var x=0;x<mmenus.length;x++){
var thismenu=mmenus[x];
var imgsize;
if(thismenu.sizex=="0"&&thismenu.sizey=="0"){
imgsize="";
}else{
imgsize=" width="+thismenu.sizex+" height="+thismenu.sizey;
}
var ifspace;
if(thismenu.caption==""){
ifspace="";
}else{
ifspace=" ";
}
stringx += "<td class=coolButton id=mMenu"+x+" style='border: "+mitemedge+"px solid "+mmenucolor+
"' width="+mmenuunitwidth+"px  onmouseover=mmenu_over(mmenudiv"+x+
","+x+") onmouseout=mmenu_out(mmenudiv"+x+
") onmousedown=mmenu_down(mmenudiv"+x+","+x+")";
if(thismenu.command!=""){
stringx += " onmouseup=mexec2("+x+");mmenu_up();";
}else{
stringx += " onmouseup=mmenu_up()";
}
if(thismenu.pos=="0"){
stringx += " align=center><img align=absmiddle src="+thismenu.img+imgsize+">"+ifspace+thismenu.caption+"</td>";
}else if(thismenu.pos=="1"){
stringx += " align=center>"+thismenu.caption+ifspace+"<img align=absmiddle src="+thismenu.img+imgsize+"></td>";
}else if(thismenu.pos=="2"){
stringx += " align=center background="+thismenu.img+">"+thismenu.caption+"</td>";
}else{
stringx += " align=center>"+thismenu.caption+"</td>";
}
stringx += "";
}
stringx+="<td width=*> </td></tr></table>";


for(var x=0;x<mmenus.length;x++){
thismenu=mmenus[x];
if(x<0){
stringx+='<div id=mmenudiv'+x+' style="visiable:none"></div>';
}else{
stringx+='<div id=mmenudiv'+x+' style="filter:Alpha(Opacity=100);cursor:hand;position:absolute;'
+'width:'+mmenuitemwidth+'px; z-index:'+(x+100);

if(mmenuinbordercolor!=mmenuoutbordercolor&&msubedge=="0"){
stringx+=';border-left: 1px solid '+mmidoutcolor+
';border-top: 1px solid '+mmidoutcolor;}
stringx+=';border-right: 1px solid '+mmenuinbordercolor+
';border-bottom: 1px solid '+mmenuinbordercolor+';visibility:hidden" onselectstart="event.returnValue=false">\n'+
'<table  width="100%" border="0" height="100%" align="center" cellpadding="0" cellspacing="2" '+
'style="'+mfonts+' border-left: 0px solid '+mmenuoutbordercolor;
if(mmenuinbordercolor!=mmenuoutbordercolor&&msubedge=="0"){
stringx+=';border-right: 1px solid '+mmidincolor+
';border-bottom: 1px solid '+mmidincolor;}
stringx+=';border-top: 1px solid '+mmenuoutbordercolor+
';padding: 0px" bgcolor='+mmenucolor+'>\n'
for(var i=0;i<thismenu.items.length;i++){
var thismenuitem=thismenu.items[i];
var imgsize;
if(thismenuitem.sizex=="0"&&thismenuitem.sizey=="0"){
imgsize=""
}else{
imgsize=" width="+thismenuitem.sizex+" height="+thismenuitem.sizey
}
var ifspace;
if(thismenu.caption==""){
ifspace="";
}else{
ifspace=" ";
}
if(!thismenuitem.isline){
stringx += "<tr><td class=coolButton style='border: "+mitemedge+"px solid "+mmenucolor+
"' width=100% height=20px onmouseover=\"mthestatus='"+thismenuitem.statustxt+"';mmenuitem_over(mmenudiv"+x+
");\" onmouseout=mmenuitem_out(mmenudiv"+x+
") onmousedown=mmenuitem_down(mmenudiv"+x+") onmouseup=";
stringx += "mexec("+x+","+i+");mmenuitem_up(mmenudiv"+x+") ";
if(thismenuitem.pos=="0"){
stringx += "><img align=absmiddle src="+thismenuitem.img+imgsize+">"+ifspace+thismenuitem.caption+"</td></tr>";
}else if(thismenuitem.pos=="1"){
stringx += ">"+thismenuitem.caption+ifspace+"<img align=absmiddle src="+thismenuitem.img+imgsize+"></td></tr>";
}else if(thismenuitem.pos=="2"){
stringx += "background="+thismenuitem.img+">"+thismenuitem.caption+"</td></tr>";
}else{
stringx += ">"+thismenuitem.caption+"</td></tr>";
}
}else{
stringx+='\n';
}
}stringx+='</table>\n</div>'
}

}

document.write("<div align='center'>"+stringx+"</div>");
break
}
}
}


function document_load(){
mwritetodocument();


}mpmenu1=new mMenu( '走近鼎点','zjdd/gsgk.htm','self','','','','');
mpmenu1.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;公司概况','zjdd/gsgk.htm','self',false,'','','','',''));
mpmenu1.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;公司定位','zjdd/gsdw.htm','self',false,'','','','',''));
mpmenu1.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;发展历史','zjdd/fzls.htm','self',false,'','','','',''));
mpmenu1.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;技术实力','zjdd/jssl.htm','self',false,'','','','',''));

mpmenu2=new mMenu('鼎点产品','ddcp/kddmtpt.htm','self','','','','');
mpmenu2.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;宽带平台','ddcp/kddmtpt.htm','self',false,'','','','',''));
mpmenu2.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;IPTV方案','ddcp/iptv.htm','self',false,'','','','',''));
mpmenu2.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;视频会议','ddcp/sxxt.htm','self',false,'','','','',''));
mpmenu2.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;视频点播','ddcp/spdb.htm','self',false,'','','','',''));
mpmenu2.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;远程教育','ddcp/ycjy.htm','self',false,'','','','',''));
mpmenu2.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;其它产品','ddcp/qt.htm','self',false,'','','','',''));

mpmenu3=new mMenu('解决方案','jjfa/hyjjfa.htm','self','','','','');
mpmenu3.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;解决方案','jjfa/hyjjfa.htm','self',false,'','','','',''));
mpmenu3.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;成功案例','jjfa/cgal.htm','self',false,'','','','',''));

mpmenu4=new mMenu('典型客户','dxkh/dxkh.htm','self','','','','');
mpmenu4.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;电信','dxkh/dxkh.htm','self',false,'','','','',''));
mpmenu4.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;政府','dxkh/zf.htm','self',false,'','','','',''));
mpmenu4.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;军队','dxkh/jd.htm','self',false,'','','','',''));
mpmenu4.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;教育','dxkh/jy.htm','self',false,'','','','',''));
mpmenu4.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;奥运','dxkh/ayty.htm','self',false,'','','','',''));
mpmenu4.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;其他','dxkh/qt.htm','self',false,'','','','',''));

mpmenu5=new mMenu('客户服务','khfw/cjgzpc.htm','self','','','','');
mpmenu5.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;故障排除','khfw/cjgzpc.htm','self',false,'','','','',''));
mpmenu5.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;客服建议','khfw/kfjy.htm','self',false,'','','','',''));

mpmenu6=new mMenu('渠道与合作','qdyhz/jj.htm','self','','','','');
mpmenu6.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;合作策略','qdyhz/jj.htm','self',false,'','','','',''));
mpmenu6.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;合作伙伴','qdyhz/hzhb.htm','self',false,'','','','',''));

mpmenu7=new mMenu('新闻中心','jjdd/xwzx.htm','self','','','','');
mpmenu7.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;聚焦鼎点','jjdd/xwzx.htm','self',false,'','','','',''));
mpmenu7.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;行业资讯','jjdd/hyzx.htm','self',false,'','','','',''));
mpmenu7.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;媒体报道','jjdd/mtbd.htm','self',false,'','','','',''));

mpmenu8=new mMenu('知识中心','zszx/spdb.htm','self','','','','');
mpmenu8.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;视频点播','zszx/spdb.htm','self',false,'','','','',''));
mpmenu8.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;视频会议','zszx/sphy.htm','self',false,'','','','',''));

mpmenu9=new mMenu('联系我们','lxwm/gslxff.htm','self','','','','');
mpmenu9.addItem(new mMenuItem('&nbsp;公司联系方法','lxwm/gslxff.htm','self',false,'','','','',''));
mpmenu9.addItem(new mMenuItem('&nbsp;营销联系方法','lxwm/yxzxlxff.htm','self',false,'','','','',''));
mpmenu9.addItem(new mMenuItem('&nbsp;客服联系方法','lxwm/kfzxlxff.htm','self',false,'','','','',''));
mpmenu9.addItem(new mMenuItem('&nbsp;&nbsp;网站地图','lxwm/wzdt.htm','self',false,'','','','',''));

mpmenu10=new mMenu('加盟鼎点','jmdd/zpgw.htm','self','','','','');
mpmenu10.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;招聘岗位','jmdd/zpgw.htm','self',false,'','','','',''));
mpmenu1.addItem(new mMenuItem('&nbsp;&nbsp;&nbsp;招聘要求','jmdd/zpyq.htm','self',false,'','','','',''));


