﻿        var szSite = "yamatoinc.com";
        var szSitePage = new Array(
            "banzai.aspx",      //0
            "broadway.html",    //1
            "contact.aspx",     //2
            "gift.aspx",        //3
            "index.aspx",       //4
            "locate.html",      //5
            "menu.html",        //6
            "mtp.html",         //7
            "reserve_order.aspx"//8
        );
        function onNavigate(iPage, bSSL){
            
            if (iPage == 0)
                return;
        
            var bIsSSL = false;
            var szURL = "";
            
            if (location.protocol.toLowerCase() == "https:")
                bIsSSL = true;
           
            szURL = "./" + szSitePage[iPage];
           
            if (!bDebug){
                if (bSSL && !bIsSSL)
                    szURL = "https://" + szSite + "/" + szSitePage[iPage];
                else if (bIsSSL && !bSSL)
                    szURL = "http://" + szSite + "/" + szSitePage[iPage];
            }
            
            window.location = szURL;
                
                
        }
    
