var selected = 'null';
function isLogin(){
return false;
}
function userSession(){
document.write(""
+"你好!欢迎来到福苑!登录 | 注册"
+"");
}
function showIndex(){
if (selected == 'null'){
document.write("
首页");
}
else{
document.write("首页");
}
}
function selectCatalog(clName,catalogId){
if (selected == catalogId){
document.write(""+clName+"");
}
else{
document.write(""+clName+"");
}
}
function cart(){
var goods;
goods = 0
document.write(goods);
}