// Create a Window with the FFFW Logo and Name at the Top and a variable page at the bottom.
        var newWindow
        var menuRef
        var contentRef
        function makeNewWindow(data){
            newWindow =window.open("","","height=600,width=600,resizable=yes,scrollbars=yes")
        //bring subwindow to front
            newWindow.focus()
            //assemble content for new window
            var newContent ="<html lang='en-us'><head><title>The Friendship Force of Fort Worth Texas - Data Frame</title></head>"
                newContent+="<FRAMESET NAME='home' ROWS = '80, *' BORDER = '0'>"
                newContent+="<NOFRAMES>This site requires frames for best viewing.<\/NOFRAMES>"
                newContent+="<FRAME NAME='title2' NORESIZE SCROLLING = 'NO' MARGINHEIGHT = '0' MARGINWIDTH = '0' SRC='title2.html'>"
                newContent+="<FRAME NAME='content2' NORESIZE SCROLLING = 'AUTO' MARGINHEIGHT = '10' MARGINWIDTH = '10' SRC='" + data + ".html'>"
                newContent+="</FRAMESET>"
                newContent+="</html>"
        //write HTML to new window document
            newWindow.document.write(newContent)
        //close layout stream
            newWindow.document.close()
        }
        function makeNewWindow2(data){
            newWindow =window.open("","","height=600,width=600,resizable=yes,scrollbars=yes")
        //bring subwindow to front
            newWindow.focus()
            //assemble content for new window
            var newContent ="<html lang='en-us'><head><title>The Friendship Force of Fort Worth Texas - Data Frame</title></head>"
                newContent+="<FRAMESET NAME='home' ROWS = '80, *' BORDER = '0'>"
                newContent+="<NOFRAMES>This site requires frames for best viewing.<\/NOFRAMES>"
                newContent+="<FRAME NAME='title2' NORESIZE SCROLLING = 'NO' MARGINHEIGHT = '0' MARGINWIDTH = '0' SRC='title2.html'>"
                newContent+="<FRAME NAME='content2' NORESIZE SCROLLING = 'AUTO' MARGINHEIGHT = '10' MARGINWIDTH = '10' SRC='" + data + "'>"
                newContent+="</FRAMESET>"
                newContent+="</html>"
        //write HTML to new window document
            newWindow.document.write(newContent)
        //close layout stream
            newWindow.document.close()
        }

