﻿function getCookie(name){ 
var cname = name + "="; 
var dc = document.cookie; 
if(dc.length > 0) { 
	begin = dc.indexOf(cname); 
	if (begin != -1) { 
		begin += cname.length; 
		end = dc.indexOf(";", begin); 
		if (end == -1) 
			end = dc.length; 
		return unescape(dc.substring(begin,end));
	 }
} 
return null; 
} 
function isLoggedOn(){ 
var username=getCookie("username"); 
return (null!=username); 
} 
function dspLogonStatus(){ 
var username=getCookie("username"); 
if (null!=username){ 
	document.write('<font color=#ff1122><b>Welcome '+username+'!</b></font> <a href="http://cn.'+WEB_HOST+'/member/logout.php'+GOTO+'" class=path> 退出登录 </a>' 
		+' - <a href="http://cn.'+WEB_HOST+'/member/" class=path> 会员专区 </a>'); 
}
else{ 
	document.write('<a href="http://cn.'+WEB_HOST+'/member/login.php'+GOTO+'" class=path> 登录 </a>' 
		+' - <a href="http://cn.'+WEB_HOST+'/member/signup.php" class=path> 免费注册三易通 </a>');
} 
var items=getCookie("items"); 
if(null!=items){ 
	document.write(' - <a href="http://cn.'+WEB_HOST+'/cart/cart.php" target=_blank class=path> 购物车 </a>('+items+')'); 
} 
} 
