///////////////////////////////////////////////////////////
//
// 产品名称：好企业直通车(企业)网站管理系统
// 版权所有: yifenqian.cn
// 程序制作：雕刻时光
// Copyright 2002-2008 yifenqian.cn - All Rights Reserved. 
//
///////////////////////////////////////////////////////////

//菜单
var menuOffX=0	//菜单距连接文字最左端距离
var menuOffY=20	//菜单距连接文字顶端距离

var ie4=document.all&&navigator.userAgent.indexOf("Opera")==-1
var ns6=document.getElementById&&!document.all
function ShowMenu(e,vmenu,mod){
	which=vmenu
	menuobj=document.getElementById("popmenu")
	menuobj.thestyle=menuobj.style
	menuobj.innerHTML=which
	menuobj.contentwidth=menuobj.offsetWidth
	eventX=e.clientX
	eventY=e.clientY
	var rightedge=document.body.clientWidth-eventX
	var bottomedge=document.body.clientHeight-eventY

		if (rightedge<menuobj.contentwidth)
			menuobj.thestyle.left=document.body.scrollLeft+eventX-menuobj.contentwidth+menuOffX
		else
			menuobj.thestyle.left=ie4? ie_x(event.srcElement)+menuOffX : ns6? window.pageXOffset+eventX : eventX
		
		if (bottomedge<menuobj.contentheight&&mod!=0)
			menuobj.thestyle.top=document.body.scrollTop+eventY-menuobj.contentheight-event.offsetY+menuOffY-23
		else
			menuobj.thestyle.top=ie4? ie_y(event.srcElement)+menuOffY : ns6? window.pageYOffset+eventY+10 : eventY

	menuobj.thestyle.visibility="visible"
}


function ie_y(e){  
	var t=e.offsetTop;  
	while(e=e.offsetParent){  
		t+=e.offsetTop;
	}  
	return t;  
}  
function ie_x(e){  
	var l=e.offsetLeft;  
	while(e=e.offsetParent){  
		l+=e.offsetLeft;  
	}  
	return l;  
}

function highlightmenu(e,state){
	if (document.all)
		source_el=event.srcElement
		while(source_el.id!="popmenu"){
			source_el=document.getElementById? source_el.parentNode : source_el.parentElement
			if (source_el.className=="menuitems"){
				source_el.id=(state=="on")? "mouseoverstyle" : ""
		}
	}
}
function hidemenu(){if (window.menuobj)menuobj.thestyle.visibility="hidden"}
function dynamichide(e){if ((ie4||ns6)&&!menuobj.contains(e.toElement))hidemenu()}
document.onclick=hidemenu
document.write("<div class=menuskin id=popmenu onmouseover=highlightmenu(event,'on') onmouseout=highlightmenu(event,'off');dynamichide(event)></div>");
//菜单END



var IMG1="<IMG height=20 src=../Skin/"
var IMG2="/bgmenu_m.gif width=1 align=absMiddle>"
//顶边的中文菜单
function CnTopMenu(JsSkins){

}
//顶边的英文菜单
function EnTopMenu(JsSkins){
document.write ('<DIV align="center">');
document.write ('<TABLE cellPadding=0 cellSpacing=0 class="TopMenu">');
document.write ('<TR><TD class="TopMenu_Td1"><IMG src="../img/1x1_pix.gif" width=3 height=1></TD></TR>');
document.write ('<TR><TD class="TopMenu_Td2"><IMG src="../img/1x1_pix.gif" width=3 height=1></TD></TR>');
document.write ('<TR>');
document.write ('<TD class="TopMenu_Td3">');
document.write ('<TABLE width="100%" cellSpacing=0 cellPadding=0 border=0>');
document.write ('<TR>'); 
document.write ('<TD width="98%" valign="bottom" align="center">　');
document.write ('<a class="Top" href=\"index.asp\" onMouseOver=\'ShowMenu(event,En_index)\'>Home</a>　'+IMG1+JsSkins+IMG2+'　');
document.write ('<a class="Top" href=\"En_CoProfile.asp?Action=Profile\" onMouseOver=\'ShowMenu(event,En_CoProfile)\'>Co,Profile</a>　'+IMG1+JsSkins+IMG2+'　');
document.write ('<a class="Top" href=\"En_Product.asp\" onMouseOver=\'ShowMenu(event,En_Product)\'>Products</a>　'+IMG1+JsSkins+IMG2+'　');
document.write ('<a class="Top" href=\"En_Honor.asp?Action=Honor\" onMouseOver=\'ShowMenu(event,En_Honor)\'>Co,Honor</a>　'+IMG1+JsSkins+IMG2+'　');
document.write ('<a class="Top" href=\"En_Sale.asp?Action=Sale\" onMouseOver=\'ShowMenu(event,En_Sale)\'>Market</a>　'+IMG1+JsSkins+IMG2+'　');
document.write ('<a class="Top" href=\"En_Went.asp\">Feedback</a>　'+IMG1+JsSkins+IMG2+'　');
document.write ('<a class="Top" href=\"En_Server.asp\" onMouseOver=\'ShowMenu(event,En_Server)\'>Services</a>　'+IMG1+JsSkins+IMG2+'　');
document.write ('<a class="Top" href=\"cookies.asp?menu=BsSkins&no=1\" onMouseOver=\'ShowMenu(event,En_Skins)\'>Style</a>');
document.write ('&nbsp;&nbsp;</TD>');
document.write ('</TR>');
document.write ('</TABLE>');
document.write ('</TD>');
document.write ('</TR>');
document.write ('</TABLE>');
document.write ('</DIV>');
}
