﻿function go_out(url){
    open(url)
}
function go_temple(){
    var viewport = [
           YAHOO.util.Dom.getViewportWidth(),
           YAHOO.util.Dom.getViewportHeight()
    ];
    var url = "/resource/choutemple.html"
    var w ;
    if (screen.width <= 800 || screen.height <= 600){
        if (confirm("本遊戲最低需求銀幕尺寸為800x600，您要使用全銀幕嗎？")){
           w = window.open(url+'?fullscreen=1', '', 'fullscreen=yes, scrollbars=auto');
        }
        else{
           w = window.open(url, '', 'width=802,height=602, scrollbars=auto');
        }
    }
    else{
        w = window.open(url, '', 'width=802,height=602, scrollbars=auto');
    }
    w.moveTo(Math.floor((viewport[0]-802)/2),Math.floor((viewport[1]-602)/2))
}
var aItemData = [
    {text:"桌頭開示",onclick:{fn:function(){
            loadPanel('/resource/anno/index.html')
        }}
        },
    ,{text:"入宮參拜",onclick:{fn:function(){
        go_temple()

        }}
        }
  
    ,{ text: "周宮影展", submenu: {  id: "filemenu1", itemdata: [
            { text: "淡北道路特輯", helptext: "",onclick:{fn:function(){loadPanel('/resource/video/danshui.html')}} }
            ,{ text: "湳仔溪特輯", helptext: "",onclick:{fn:function(){loadPanel('/resource/video/banchou.html')}} }
        ] }
    }
    
    ,{ text: "信徒須知", submenu: {  id: "filemenu2", itemdata: [

            { text: "媒體報導", helptext: "",onclick:{fn:function(){loadPanel('/resource/pr/index.html')}} }
            ,{ text: "官方說法", helptext: "",onclick:{fn:function(){loadPanel('/resource/gov/index.html')}} }
            ,{ text: "答客問", helptext: "",onclick:{fn:function(){loadPanel('/resource/faq/index.html')}} }
        ] }    
    }
    ,{ text: "周憤館", submenu: {  id: "filemenu3", itemdata: [

            { text: "反淡北道路聯盟", helptext: "",onclick:{fn:function(){go_out('http://www.tw-1st-river.org/f2/')}} }
            ,{ text: "搶救淡水第一街", helptext: "",onclick:{fn:function(){go_out('http://www.tamsui.org/node/502')}} }
            ,{ text: "守護湳仔溪", helptext: "",onclick:{fn:function(){go_out('http://www.wretch.cc/blog/nanzaigou')}} }
            ,{ text: "看守土城 愛綠聯盟", helptext: "",onclick:{fn:function(){go_out('http://green999.blogspot.com/')}} }
            ,{ text: "反對看守所 不當遷移聯盟", helptext: "",onclick:{fn:function(){go_out('http://www.peopo.org/green999')}} }
        ] }    
    }    
    ,{ text: "點光明燈",onclick:{fn:function(){ loadPanel('/resource/light.html') }} }
    ,{ text: "留言簿",onclick:{fn:function(){ loadPanel('/resource/nospeak.html') }} }
    //,{ text: "廣結孽緣",onclick:{fn:function(){ loadPanel('/resource/speakout.html') }} }
];
