function logedUser(username){
	var str = '<table border="0" cellpadding="0" cellspacing="0"><tr>';
	str += '<td class="topmenu2" nowrap>Welcome, <b>'+username+'</b></td>';
	str += '<td class="topmenu2" width="2"><img src="/themes/discountpiercingjewelry/imgs/topmenudel.gif" width="2" height="12" align="absmiddle"></td>';
	str += '<td class="topmenu2" nowrap><a href="' + getUrl(logininfo_logout, 1) + '" class="logout">&gt;&gt; Logout</a></td>';
	str += '</tr></table>';
	return str;
}

function anonymousUser(){
	var str = '<table border="0" cellpadding="0" cellspacing="0"><tr>';
	str += '<td class="topmenu2" nowrap><a href="' + getUrl(logininfo_register, 1) + '">&gt;&gt; Register</a></td>';
	str += '<td class="topmenu2" width="2"><img src="/themes/discountpiercingjewelry/imgs/topmenudel.gif" width="2" height="12" align="absmiddle"></td>';
	str += '<td class="topmenu2" nowrap><a href="' + getUrl(logininfo_account, 1) + '">&gt;&gt; Login</a></td>';
	str += '</tr></table>';
	return str;
}



