function ShowTop(strHome){
	var strTop = "";
	if (GetCookie("CookieUserID")==null || GetCookie("CookieUserID")<1) {
		strTop+="当前用户为Guest，<a href=\"javascript:Funny_WindowOpen(\'"+strHome
			+"H6.aspx?F=/Index.P6&S=Common/System/Login&S2=Login.P6.html\',xCenter(550),yCenter(400),550,400)\" style='color:red;font-size=14px'>登陆点这</a>"
			+"会员有更多的权限";
	}else{
		strTop+="你的ID:" + GetCookie("CookieUserID") + "&nbsp;\
		<a href=\"javascript:Funny_WindowOpen(\'"+strHome+"Common/HTML/FunnyWeber6/Pim/Index.html\',xCenter(620),yCenter(350),620,350,\'\')\" \
		 style='color:black;font-size:12px'>[个人后台]</a>\
		&nbsp;<a href=javascript:Logout(''); style='color:black;font-size:12px'>[退出]</font>";
		if (GetCookie("CookieUserID")==1){
			strTop+='&nbsp;<a href="/Common/Skin/Default/Admin/Index.html"  target="_blank" \
			 style="color:black;font-size:12px">[管理后台]</a>'
		}
	}
	strTop+="&nbsp;<a style='color:black;font-size:12px' href=\"javascript:Funny_WindowOpen(\'"+strHome+"H6.aspx?F=/Common/System/Reg/Reg.P6\',xCenter(700),yCenter(500),700,300,'')\" style=\'color:blue;font-size=14px\'; title=如果你没有注册成为会员,请点击这里注册!>[注册]</a>";
	document.write(strTop);
}