//回首頁
function menu_home() {	
	location.href =_Web_Url;
}

//公司簡介
function menu_about() {	
	location.href =_Web_Url + '/index.php/web/about/';
}

//產品系列
function menu_products() {	
	location.href =_Web_Url + '/index.php/web/service/';
}

// 活動訂位
function menu_contact() {
    pass=prompt("請輸入訂位密碼","訂位密碼");
    if(pass!=null){
        $.ajax({
            type: "POST",
            url: _Web_Url+"/index.php/web/check_pass",
            data:{
                'pass':pass
            },
            success: function(data){
                data = data.replace(/^\s*|\s*$/,'');
                if(data=='true'){
                    location.href =_Web_Url + '/index.php/web/contact/';
                }else{
                    alert('密碼錯誤') ;
                }
            }
            //,error :function(e){alert(e.responseText);}
        });
    }
}

//最新消息
function menu_news() {	
	location.href =_Web_Url + '/index.php/web/news/';
}

//服務項目
function menu_service() {	
	location.href =_Web_Url + '/index.php/web/products/';
}

// 會員專區
function menu_guestbook() {	
	location.href =_Web_Url + '/index.php/web/member_login/';
}
// 連絡我們
function contact2() {	
	location.href =_Web_Url + '/index.php/web/contact2/';
}

//加入最愛
function my_favorites() {
    if (document.all){
        window.external.AddFavorite(_Web_Url, "");
    } else {
        window.sidebar.addPanel("", _Web_Url, "");
	}
}
//繁體
function tw() {	
	location.href = _Web_Url;
}

//英文
function en() {	
	location.href = _Web_Url + '/en';
}
