//导航菜单
<!--
var h;
var w;
var l;
var t;
var topMar = 1;
var leftMar = -2;
var space = 1;
var isvisible;
var MENU_SHADOW_COLOR='';//定义下拉菜单阴影色
var global = window.document
global.fo_currentMenu = null
global.fo_shadows = new Array

document.writeln("<div id=menuDiv style='Z-INDEX: 1000; VISIBILITY: hidden; WIDTH: 1px; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: #FFFFFF'></div>");
//document.writeln("<OBJECT id=menuDivO style='Z-INDEX: 1000; VISIBILITY: hidden;' type=\"text/x-scriptlet\" data='about:<div id=menuDiv style='Z-INDEX: 1000; VISIBILITY: hidden; WIDTH: 1px; POSITION: absolute; HEIGHT: 1px; BACKGROUND-COLOR: #FFFFFF'></div>></OBJECT>");

function HideMenu() 
{
var mX;
var mY;
var vDiv;
var mDiv;
  if (isvisible == true)
{
    vDiv = document.all("menuDiv");
    mX = window.event.clientX + document.body.scrollLeft;
    mY = window.event.clientY + document.body.scrollTop;
    if ((mX < parseInt(vDiv.style.left)) || (mX > parseInt(vDiv.style.left)+vDiv.offsetWidth) || (mY < parseInt(vDiv.style.top)-h) || (mY > parseInt(vDiv.style.top)+vDiv.offsetHeight)){
      vDiv.style.visibility = "hidden";
      isvisible = false;
    }
}
}

function ShowMenu(vMnuCode,tWidth,bgcolor,left) {
  vSrc = window.event.srcElement;
  vMnuCode = "<table id='submenu' cellspacing=0 cellpadding=0 style='border:1 solid #999999;width:"+tWidth+"' onmouseout='HideMenu()' bgcolor='"+bgcolor+"' class='font_666666_12_none' height='20'>" + vMnuCode + "</table>";
  h = vSrc.offsetHeight-0;
  w = vSrc.offsetWidth;
  l = vSrc.offsetLeft + leftMar-left;
  t = vSrc.offsetTop + topMar + h + space-2;
  vParent = vSrc.offsetParent;
  while (vParent.tagName.toUpperCase() != "BODY")
  {
    l += vParent.offsetLeft;
    t += vParent.offsetTop;
    vParent = vParent.offsetParent;
  }

  menuDiv.innerHTML = vMnuCode;
  menuDiv.style.top = t;
  menuDiv.style.left = l;
  menuDiv.style.visibility = "visible";
  isvisible = true;
makeRectangulardropShadow(submenu, MENU_SHADOW_COLOR, 4)

}

function makeRectangulardropShadow(el, color, size)
{
  var i;
  for (i=size; i>0; i--)
  {
    var rect = document.createElement('div');
    var rs = rect.style
    rs.position = 'absolute';
    rs.left = (el.style.posLeft + i) + 'px';
    rs.top = (el.style.posTop + i) + 'px';
    rs.width = el.offsetWidth + 'px';
    rs.height = el.offsetHeight + 'px';
    rs.zIndex = el.style.zIndex - i;
    rs.backgroundColor = color;
    var opacity = 1 - i / (i + 1);
    rs.filter = 'alpha(opacity=' + (100 * opacity) + ')';
    el.insertAdjacentElement('afterEnd', rect);
    global.fo_shadows[global.fo_shadows.length] = rect;
  }
}

var m1= '<td nowrap height=25 align=center>&nbsp;┊ <a href=about.php class=font_666666_12_color_ff6600>公司概况</a> ┊ <a href=qualification.php class=font_666666_12_color_ff6600>企业资质</a> ┊ <a href=evolution.php class=font_666666_12_color_ff6600>弘力沿革</a> ┊ <a href=glory.php class=font_666666_12_color_ff6600>弘力荣誉</a> ┊ <a href=prospect.php class=font_666666_12_color_ff6600>公司展望</a> ┊&nbsp;</td>'
var m2= '<td nowrap height=25 align=center>&nbsp;┊ <a href=newslist.php?Class=13 class=font_666666_12_color_ff6600>企业新闻</a> ┊ <a href=newslist.php?Class=14 class=font_666666_12_color_ff6600>行业新闻</a> ┊<a href=newslist.php?Class=15 class=font_666666_12_color_ff6600>产品新闻</a> ┊&nbsp;</td>'
var m3= '<td nowrap height=25 align=center>&nbsp;┊ <a href=productlist.php?Class=29 class=font_666666_12_color_ff6600>弘力理疗贴</a> ┊ <a href=productlist.php?Class=30 class=font_666666_12_color_ff6600>弘力伤痛贴</a> ┊ <a href=productlist.php?Class=42 class=font_666666_12_color_ff6600>皮肤消毒液</a> ┊ <a href=productlist.php?Class=43 class=font_666666_12_color_ff6600>高频X线机</a> ┊ <a href=productlist.php?Class=44 class=font_666666_12_color_ff6600>特定电磁波治疗器</a> ┊&nbsp;</td>'
var m4= '<td nowrap height=25 align=center>&nbsp;┊ <a href=bemalist.php?Class=39 class=font_666666_12_color_ff6600>学术论文</a> ┊ <a href=bemalist.php?Class=40 class=font_666666_12_color_ff6600>病例索引</a> ┊ <a href=bemalist.php?Class=41 class=font_666666_12_color_ff6600>康复园地</a> ┊&nbsp;</td>'
var m5= '<td nowrap height=25 align=center>&nbsp;┊ <a href=policy.php class=font_666666_12_color_ff6600>管理政策</a> ┊ <a href=condition.php class=font_666666_12_color_ff6600>代理条件</a> ┊ <a href=apply.php class=font_666666_12_color_ff6600>在线申请</a> ┊&nbsp;</td>'
var m6= '<td nowrap height=25 align=center>&nbsp;┊ <a href=contact.php class=font_666666_12_color_ff6600>联系方式</a> ┊ <a href=guest.php class=font_666666_12_color_ff6600>在线留言</a> ┊&nbsp;</td>'