From 15adb41256e927804c1cf680a2fa3f48a919dfd1 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 3 Sep 2016 07:42:45 +0100 Subject: [PATCH 1/8] add song reporting --- openlp/core/common/settings.py | 1 + openlp/plugins/songs/lib/songcompare.py | 6 +- openlp/plugins/songs/reporting.py | 97 ++ openlp/plugins/songs/songsplugin.py | 31 +- song_index.csv | 1756 +++++++++++++++++++++++ 5 files changed, 1882 insertions(+), 9 deletions(-) create mode 100644 openlp/plugins/songs/reporting.py create mode 100644 song_index.csv diff --git a/openlp/core/common/settings.py b/openlp/core/common/settings.py index 2caf04dab..f92bf1e57 100644 --- a/openlp/core/common/settings.py +++ b/openlp/core/common/settings.py @@ -379,6 +379,7 @@ class Settings(QtCore.QSettings): 'shortcuts/themeScreen': [QtGui.QKeySequence(QtCore.Qt.Key_T)], 'shortcuts/toolsReindexItem': [], 'shortcuts/toolsFindDuplicates': [], + 'shortcuts/ReportSongList': [], 'shortcuts/toolsAlertItem': [QtGui.QKeySequence(QtCore.Qt.Key_F7)], 'shortcuts/toolsFirstTimeWizard': [], 'shortcuts/toolsOpenDataFolder': [], diff --git a/openlp/plugins/songs/lib/songcompare.py b/openlp/plugins/songs/lib/songcompare.py index 44e17a3ac..1d19deaaa 100644 --- a/openlp/plugins/songs/lib/songcompare.py +++ b/openlp/plugins/songs/lib/songcompare.py @@ -46,13 +46,13 @@ MIN_BLOCK_SIZE = 70 MAX_TYPO_SIZE = 3 -def songs_probably_equal(song_tupel): +def songs_probably_equal(song_tuple): """ Calculate and return whether two songs are probably equal. - :param song_tupel: A tuple of two songs to compare. + :param song_tuple: A tuple of two songs to compare. """ - song1, song2 = song_tupel + song1, song2 = song_tuple pos1, lyrics1 = song1 pos2, lyrics2 = song2 if len(lyrics1) < len(lyrics2): diff --git a/openlp/plugins/songs/reporting.py b/openlp/plugins/songs/reporting.py new file mode 100644 index 000000000..4373abe09 --- /dev/null +++ b/openlp/plugins/songs/reporting.py @@ -0,0 +1,97 @@ +# -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 + +############################################################################### +# OpenLP - Open Source Lyrics Projection # +# --------------------------------------------------------------------------- # +# Copyright (c) 2008-2016 OpenLP Developers # +# --------------------------------------------------------------------------- # +# This program is free software; you can redistribute it and/or modify it # +# under the terms of the GNU General Public License as published by the Free # +# Software Foundation; version 2 of the License. # +# # +# This program is distributed in the hope that it will be useful, but WITHOUT # +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # +# more details. # +# # +# You should have received a copy of the GNU General Public License along # +# with this program; if not, write to the Free Software Foundation, Inc., 59 # +# Temple Place, Suite 330, Boston, MA 02111-1307 USA # +############################################################################### +""" +The :mod:`db` module provides the ability to provide a csv file of all songs +""" +import logging +import os + +from PyQt5 import QtWidgets + +from openlp.core.common import Registry, check_directory_exists, translate +from openlp.core.lib.ui import critical_error_message_box +from openlp.plugins.songs.lib.db import Song + + +log = logging.getLogger(__name__) + + +def report_song_list(): + """ + Export the song list as a CSV file. + :return: Nothing + """ + main_window = Registry().get('main_window') + plugin = Registry().get('songs').plugin + path = QtWidgets.QFileDialog.getExistingDirectory( + main_window, translate('SongPlugin.ReportSongList', 'Output File Location')) + if not path: + main_window.error_message( + translate('SongPlugin.ReportSongList', 'Output Path Not Selected'), + translate('SongPlugin.ReportSongList', 'You have not set a valid output location for your' + 'report. \nPlease select an existing path ' + 'on your computer.') + ) + return + check_directory_exists(path) + report_file_name = os.path.join(path, 'song_index.csv') + file_handle = None + try: + file_handle = open(report_file_name, 'wb') + song_list = plugin.manager.get_all_objects(Song) + for song in song_list: + record = '\"{title}\",'.format(title=song.title) + record += '\"{title}\",'.format(title=song.alternate_title) + record += '\"{title}\",'.format(title=song.copyright) + author_list = [] + for author_song in song.authors_songs: + author_list.append(author_song.author.display_name) + author_string = '\"{name}\"'.format(name=' | '.join(author_list)) + book_list = [] + for book_song in song.songbook_entries: + if hasattr(book_song, 'entry') and book_song.entry: + book_list.append('{name} #{entry}'.format(name=book_song.songbook.name, entry=book_song.entry)) + book_string = '\"{name}\"'.format(name=' | '.join(book_list)) + topic_list = [] + for topic_song in song.topics: + if hasattr(topic_song, 'name'): + topic_list.append(topic_song.name) + topic_string = '\"{name}\"'.format(name=' | '.join(topic_list)) + record += '{title},'.format(title=author_string) + record += '{title},'.format(title=book_string) + record += '{title},'.format(title=topic_string) + record += '\n' + file_handle.write(record.encode('utf-8')) + main_window.information_message( + translate('SongPlugin.ReportSongList', 'Report Creation'), + translate('SongPlugin.ReportSongList', + 'Report \n{name} \nhas been successfully created. ').format(name=report_file_name) + ) + except OSError as ose: + log.exception('Failed to write out song usage records') + critical_error_message_box(translate('SongPlugin.ReportSongList', 'Song Extraction Failed'), + translate('SongPlugin.ReportSongList', + 'An error occurred while extracting: {error}' + ).format(error=ose.strerror)) + finally: + if file_handle: + file_handle.close() diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index b2218f701..b8c1e0d6f 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -36,6 +36,7 @@ from openlp.core.common.actions import ActionList from openlp.core.lib import Plugin, StringContent, build_icon from openlp.core.lib.db import Manager from openlp.core.lib.ui import create_action +from openlp.plugins.songs import reporting from openlp.plugins.songs.forms.duplicatesongremovalform import DuplicateSongRemovalForm from openlp.plugins.songs.forms.songselectform import SongSelectForm from openlp.plugins.songs.lib import clean_song, upgrade @@ -102,13 +103,13 @@ class SongsPlugin(Plugin): self.songselect_form.initialise() self.song_import_item.setVisible(True) self.song_export_item.setVisible(True) - self.tools_reindex_item.setVisible(True) - self.tools_find_duplicates.setVisible(True) + self.song_tools_menu.menuAction().setVisible(True) action_list = ActionList.get_instance() action_list.add_action(self.song_import_item, UiStrings().Import) action_list.add_action(self.song_export_item, UiStrings().Export) action_list.add_action(self.tools_reindex_item, UiStrings().Tools) action_list.add_action(self.tools_find_duplicates, UiStrings().Tools) + action_list.add_action(self.tools_report_song_list, UiStrings().Tools) def add_import_menu_item(self, import_menu): """ @@ -151,19 +152,37 @@ class SongsPlugin(Plugin): :param tools_menu: The actual **Tools** menu item, so that your actions can use it as their parent. """ log.info('add tools menu') + self.tools_menu = tools_menu + self.song_tools_menu = QtWidgets.QMenu(tools_menu) + self.song_tools_menu.setObjectName('song_tools_menu') + self.song_tools_menu.setTitle(translate('SongsPlugin', 'Song Tools')) self.tools_reindex_item = create_action( tools_menu, 'toolsReindexItem', text=translate('SongsPlugin', '&Re-index Songs'), icon=':/plugins/plugin_songs.png', statustip=translate('SongsPlugin', 'Re-index the songs database to improve searching and ordering.'), - visible=False, triggers=self.on_tools_reindex_item_triggered) - tools_menu.addAction(self.tools_reindex_item) + triggers=self.on_tools_reindex_item_triggered) self.tools_find_duplicates = create_action( tools_menu, 'toolsFindDuplicates', text=translate('SongsPlugin', 'Find &Duplicate Songs'), statustip=translate('SongsPlugin', 'Find and remove duplicate songs in the song database.'), - visible=False, triggers=self.on_tools_find_duplicates_triggered, can_shortcuts=True) - tools_menu.addAction(self.tools_find_duplicates) + triggers=self.on_tools_find_duplicates_triggered, can_shortcuts=True) + self.tools_report_song_list = create_action( + tools_menu, 'ReportSongList', + text=translate('SongsPlugin', 'Export List on Songs'), + statustip=translate('SongsPlugin', 'Produce a CSV file of all the songs in the database.'), + triggers=self.on_tools_report_song_list_triggered) + + self.tools_menu.addAction(self.song_tools_menu.menuAction()) + self.song_tools_menu.addAction(self.tools_reindex_item) + self.song_tools_menu.addAction(self.tools_find_duplicates) + self.song_tools_menu.addAction(self.tools_report_song_list) + + self.song_tools_menu.menuAction().setVisible(False) + + @staticmethod + def on_tools_report_song_list_triggered(): + reporting.report_song_list() def on_tools_reindex_item_triggered(self): """ diff --git a/song_index.csv b/song_index.csv new file mode 100644 index 000000000..7c0c11a3a --- /dev/null +++ b/song_index.csv @@ -0,0 +1,1756 @@ +"5000+ hungry folk,","","Ian Smale. * Copyright © 1985 Kingsway's Thankyou Music.","Ian Smale","","", +"A humble heart","","Brian Houston * Copyright © 2000 Thankyou Music","Brian Houston","","", +"A new commandment","","Author unknown. *","Author unknown","","", +"A refuge for the poor","","Chris Tomlin & Jesse Reeves * Copyright © 2000 worshiptogether.com songs/Six Steps Music/Adm. by Kingsway Music","Chris Tomlin | Jesse Reeves","","", +"A safe stronghold our God is still,","","Martin Luther. * Tr. Thomas Carlyle.","Martin Luther","","", +"Abba Father,","","Dave Bilbrough. * Copyright © 1977 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Abide with me","","W. H. Monk. *","W. H. Monk","","", +"Above all powers;","","Lenny LeBlanc & Paul Baloche * Copyright © 1999 Lensongs Publishing/Integrity's Hosanna! Music/Sovereign Music UK","Lenny LeBlanc | Paul Baloche","SOF #1151","", +"Abraham's Son,","","Bob Baker. * Copyright © 1994 Mercy/Vineyard Publishing/Adm. by CopyCare.","Bob Baker","Special #1","", +"Adoration (SH09 92)","","Copyright 2008 Thankyou Music/ Kingsway Songs","Brenton Brown","","", +"Again and again","","Dave Bilbrough * Copyright © 2002 Thankyou Music","Dave Bilbrough","","", +"Ah Lord God,","","Kay Chance. * Copyright © 1976 Kay Chance.","Kay Chance","","", +"All around the world","","Paul Oakley. * Copyright © 1997 Kingsway's Thankyou Music.","Paul Oakley","","", +"All around Your throne","","Paul Oakley * Copyright © 1999 Thankyou Music","Paul Oakley","","", +"All consuming fire,","","Randy Wright. * Copyright © 1987 Integrity's Hosanna!Music/ Adm. by Kingsway's Thankyou Music.","Randy Wright","","", +"All creation bows","","Mike Blow. * Copyright © 1997 Kingsway's Thankyou Music.","Mike Blow","","", +"All creation cries to You","","Marty Sampson * Copyright © 2001 Marty Sampson/Hillsong Publishing/Kingsway Music","Marty Sampson","","", +"All creatures of our God and King,","","St Francis of Assisi. * Tr. William Henry Draper.","St Francis of Assisi","","", +"All glory, laud and honour","","Theodulph of Orleans (c.750-821) * Tr. John Mason Neale (1818-66)","Theodulph of Orleans (c.750-821)","","", +"All hail King Jesus!","","Dave Moody. * Copyright © 1984 Glory Alleluia Music/ Tempo Music Publications/Adm. by CopyCare.","Dave Moody","","", +"All hail the Lamb;","","Dave Bilbrough. * Copyright © 1987 Kingsway's Thankyou Music.","Dave Bilbrough","SOF #8","", +"All hail the power of Jesus' name!","","Edward Perronet. * Revised John Rippon.","Edward Perronet","","", +"All heaven declares","","Noel and Tricia Richards. * Copyright © 1987 Kingsway's Thankyou Music.","Noel and Tricia Richards","SOF #10","", +"All heaven waits","","Graham Kendrick & Chris Rolinson. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick | Chris Rolinson","","", +"All I once held dear;","","Graham Kendrick * Copyright © 1993 Make Way Music.","Graham Kendrick","SOF #646","", +"All my days","","Stuart Townend * Copyright © 1998 Thankyou Music","Stuart Townend","","", +"All my life","","Liz Holland * Copyright © 1999 Thankyou Music","Liz Holland","","", +"All of me","","Gareth Robinson * Copyright © 2001 Thankyou Music","Gareth Robinson","","", +"All of You","","Chris Tomlin & Louie Giglio * Copyright © 2002 worshiptogether.com songs/Six Steps Music/Adm. by Kingsway Music","Chris Tomlin | Louie Giglio","","", +"All over the world the Spirit is moving,","","Roy Turner. * Copyright © 1984 Kingsway's Thankyou Music.","Roy Turner","","", +"All people that on earth do dwell,","","William Kethe. *","William Kethe","","", +"All that I am","","James Wright. * Copyright © 1994 Kingsway's Thankyou Music.","James Wright","","", +"All the ends of the earth","","David Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham","","", +"All the riches of His grace,","","Jan Harrington. * Copyright © 1975 Celebration/Kingsway's Thankyou Music.","Jan Harrington","","", +"All the way my Saviour leads me,","","Fanny Crosby (1820-1915) *","Fanny Crosby (1820-1915)","","", +"All things bright and beautiful,","","Cecil F. Alexander. *","Cecil F. Alexander","","", +"All to Jesus I surrender","","J.W. van de Venter (1855-1939) * Copyright © HarperCollins Religious/Adm. by CopyCare","J.W. van de Venter (1855-1939)","","", +"All who are thirsty","","Brenton Brown & Glenn Robertson * Copyright © 1998 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Brenton Brown | Glenn Robertson","","", +"All You angels round His throne,","","Marc Nelson. * Copyright © 1989 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Marc Nelson","","", +"All You people,","","John Gibson. * Copyright © 1996 Kingsway's Thankyou Music.","John Gibson","","", +"Alleluia, alleluia,","","Donald Fishel. * Copyright © 1973 The Word of God Music/Adm by CopyCare","Donald Fishel","","", +"Alleluia, alleluia","","Tony Ryce-Kelly & Rónán Johnston * Copyright © 1997 Emmausongs/Adm. by Daybreak Music Ltd","Tony Ryce-Kelly | Rónán Johnston","","", +"Alleluia! alleluia!","","Sherrell Prebble and Howard Clark. * Copyright © 1978 Celebration/ Kingsway's Thankyou Music.","Sherrell Prebble and Howard Clark","","", +"Alleluia,","","Jerry Sinclair. * Copyright © 1972,1978 Manna Music Inc/ Kingsway's Thankyou Music.","Jerry Sinclair","","", +"Almighty God, Holy one,","","Rhys Scott * Copyright © 2001 Thankyou Music","Rhys Scott","","", +"Almighty God, I have heard","","Nathan Fellingham & Adrian Watts. * Copyright © 1997 Kingsway's Thankyou Music.","Nathan Fellingham | Adrian Watts","","", +"Almighty God, my Redeemer,","","Darlene Zschech. * Copyright © 1996 Darlene Zschech/Hillsongs Australia/Kingsway's Thankyou Music.","Darlene Zschech","","", +"Almighty God, our heavenly Father,","","Copyright © 1980 Central Board of Finance * of the Church of England. Used by permission.","Copyright © 1980 Central Board of Finance","","", +"Almighty God to whom all hearts are open,","","The Alternative Service Book (1980) * Copyright © The Central Board of Finance of the Church of England, 1980; The Archbishops' Council, 1999","The Alternative Service Book (1980)","","", +"Almighty God, we bring you priase ,","","Austin Martin. * Copyright © 1983 Kingsway's Thankyou Music.","Austin Martin","","", +"Almighty God, faithful and true","","Mark Vargeson * Copyright © 2001 Thankyou Music","Mark Vargeson","","", +"Almighty sovereign Lord,","","Phil Lawson Johnston. * Copyright © 1987 Kingsway's Thankyou Music.","Phil Lawson Johnston","","", +"Amazing Grace (My chains are gone);","","2006 worshiptogether.com songs/sixsteps Music","J Newton/J P Rees | E O Excell","SOF #1702","", +"Amazing grace, (Nat Fellingham)","","John Newton (1725-1807), adapt. Nathan Fellingham * Copyright © 2000 Thankyou Music","John Newton (1725-1807) | adapt. Nathan Fellingham","","", +"Amazing grace!;","","John Newton. *","John Newton","SOF #19","", +"Among the gods","","Carol Owen. * Copyright © 1993 Kingsway's Thankyou Music.","Carol Owen","","", +"An army of ordinary people,","","Dave Bilbrough. * Copyright © 1983 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"And after all","","Paul Oakley * Copyright © 2001 Thankyou Music","Paul Oakley","","", +"And can it be","","Charles Wesley. *","Charles Wesley","","", +"And from Your fulness","","Mark Altrogge. * Copyright © 1992 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", +"And He shall reign","","Graham Kendrick. * Copyright © 1991 Make Way Music.","Graham Kendrick","","", +"And I'm forgiven","","Billy James Foote * Copyright © 1999 worshiptogether.com songs/Adm. by Kingsway Music","Billy James Foote","","", +"Angel voices ever singing","","Francis Pott. *","Francis Pott","","", +"Angels bow","","Keith Getty * Copyright © 2002 Thankyou Music","Keith Getty","","", +"Angels, from the realms of glory,","","James Montgomery. *","James Montgomery","","", +"Anointing, fall on me,","","Donn Thomas. * Copyright © 1992 John T. Benson Publishing Co/Adm. by CopyCare.","Donn Thomas","","", +"Are the prayers of the saints","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", +"Are we the people","","Noel & Tricia Richards. * Copyright © 1996 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"Around You such beauty","","Steve & Vikki Cook * Copyright © 1999 PDI Worship/Adm. by CopyCare","Steve Cook | Vikki Cook","","", +"As for me and my house,","","Jim Bailey * Copyright © 1997 Thankyou Music","Jim Bailey","","", +"As high as the heavens ;","You are the voice of hope;","2002 Thankyou Music","Lara Martin (Abundant Life Ministries)","SOF #1711","", +"As one in Christ the Lord (SH08-09)","","2008 Thankyou Music","Stuart Barbour","","", +"As sure as gold is precious","","Robin Mark * Copyright © 1998 Daybreak Music Ltd","Robin Mark","","", +"As the deer pants (Richard Lewis)","","Richard Lewis. * Copyright © 1997 Kingsway's Thankyou Music.","Richard Lewis","","", +"As the deer for the water","","Martin J. Nystrom. * Copyright © 1983 Restoration Music Ltd./ Adm. by Sovereign Music UK.","Martin J. Nystrom","","", +"As water to the thirsty,","","Timothy Dudley-Smith. * Copyright © Timothy Dudley-Smith.","Timothy Dudley-Smith","","", +"As we are gathered","","John Daniels. * Copyright © 1979 Word's Spirit of Praise Music/ Adm. by CopyCare.","John Daniels","","", +"As we behold You,","","David Baroni. * Copyright © 1992 Pleasant Hill Music/John T. Benson Publishing Co/Adm. by CopyCare.","David Baroni","","", +"As we bring our songs","","Graham Kendrick * Copyright © 2002 Make Way Music","Graham Kendrick","","", +"As we come today,","","Matt Redman * Copyright © 2000 Thankyou Music","Matt Redman","","", +"As we come with praise","","Dale Garratt. * Copyright © 1982 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Dale Garratt","","", +"As we lift up Your name,","","Paul Baloche * Copyright © 1996 Integrity's Hosanna! Music/Sovereign Music UK","Paul Baloche","","", +"As we see the world","","Lex Loizides. * Copyright © 1996 Kingsway's Thankyou Music.","Lex Loizides","","", +"As we seek Your face,","","Dave Bilbrough. * Copyright © 1990 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"As with gladness","","W. C. Dix. *","W. C. Dix","","", +"Ascribe greatness","","Mary Lou King and Mary Kirkbride Barthow. * Copyright © 1979 Peter West/ Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Mary Lou King and Mary Kirkbride Barthow","","", +"At the foot of the cross,","","Copyright © 1992 Sovereign Music UK. *","Derek Bond","","", +"At the foot of the cross","","Tré Sheppard * Copyright © 2002 Thankyou Music","Tré Sheppard","","", +"At the name of Jesus","","Caroline Maria Noel. *","Caroline Maria Noel","","", +"At this table we remember","","Martin E. Leckebusch * Copyright © 2000 Kevin Mayhew Ltd","Martin E. Leckebusch","","", +"At this time of giving,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"At Your feet we fall;","","David Fellingham. * Copyright © 1982 Kingsway's Thankyou Music.","David Fellingham","SOF #34","", +"Awake, awake, O Zion, (Fellingham)","","Nathan Fellingham * Copyright © 1999 Thankyou Music","Nathan Fellingham","","", +"Awake, awake, O Zion,","","David J. Hadden. * Copyright © 1982 Word's Spirit of Praise Music/Adm. by CopyCare.","David J. Hadden","","", +"Awake, my soul","","Owen Hurter * Copyright © 2001 Thankyou Music","Owen Hurter","","", +"Away in a manger,","","Verses 1 & 2 unknown. * Verse 3 J. T. McFarland.","Author Unknown","","", +"Baby Jesus in the manger,","","Gill Broomhall. * Copyright © 1992 Kingsway's Thankyou Music & Sovereign Music UK.","Gill Broomhall","","", +"Be bold, be strong;","","Morris Chapman. * Copyright © 1983 Word Music/Adm. by CopyCare.","Morris Chapman","SOF #37","", +"Be free","","Dave Bilbrough. * Copyright © 1991 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Be glorified,","","Billy Funk. * Copyright © 1991 Integrity's Praise! Music/Adm. by Kingsway's Thankyou Music.","Billy Funk","","", +"Be known to us in breaking bread,","","James Montgomery. *","James Montgomery","","", +"Be lifted up","","Paul Oakley * Copyright © 2001 Thankyou Music","Paul Oakley","","", +"Be still and know","","Author unknown. *","Author unknown","","", +"Be still and know","","Lex Loizides. * Copyright © 1995 Kingsway's Thankyou Music.","Lex Loizides","","", +"Be still for the presence of the Lord,","","David J. Evans. * Copyright © 1986 Kingsway's Thankyou Music.","David J. Evans","SOF #40","", +"Be thou my vision;","","Tr. Mary E. Byrne & Eleanor H. Hull. *","Tr. Mary E. Byrne | Eleanor H. Hull","SOF #42","", +"Beautiful Lord,","","Darlene Zschech * Copyright © 1997 Darlene Zschech/Hillsong Publishing/ Kingsway Music","Darlene Zschech","","", +"Beauty for brokenness,","","Graham Kendrick. * Copyright © 1993 Make Way Music.","Graham Kendrick","","", +"Because of You,","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", +"Before one ever came to be","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", +"Before the throne of God above;","","Charitie L. Bancroft (1841-92) *","Charitie L. Bancroft (1841-92)","SOF #1187","", +"Befriended","","Matt Redman * Copyright © 2002 Thankyou Music","Matt Redman","","", +"Behold the darkness.","","Eric Glass. * Copyright © Gordon V. Thompson Music, a division of Warner/Chappell Music/IMP.","Eric Glass","","", +"Behold the Lamb of glory comes,","","Robert Critchley * Copyright © 1996 Thankyou Music","Robert Critchley","","", +"Behold the Lord","","Gerald Coates & Noel Richards. * Copyright © 1991 Kingsway's Thankyou Music.","Gerald Coates | Noel Richards","","", +"Behold the servant of the Lord:","","Charles Wesley. *","Charles Wesley","","", +"Bells they are ringing,","","Jim Bailey. * Copyright © 1996 Kingsway's Thankyou Music.","Jim Bailey","","", +"Belovèd and blessèd,","","Stuart Townend * Copyright © 2000 Thankyou Music","Stuart Townend","","", +"Beneath the cross of Jesus (SH08-14)","","","Author Unknown","","", +"Beneath the cross of Jesus","","Elizabeth C. Clephane. *","Elizabeth C. Clephane","","", +"Bind us together;","","Bob Gillman. * Copyright © 1977 Kingsway's Thankyou Music.","Bob Gillman","SOF #43","", +"Bless the Lord, my soul,","","Jacques Berthier/Taizé. * Copyright © Ateliers et Presses de Taizé.","Jacques Berthier/Taizé","","", +"Bless the Lord, O my soul,","","Copyright © 1989 Kingsway’s Thankyou Music.","Phil Rogers","","", +"Bless the Lord, O my soul,","","Author unknown. *","Author unknown","","", +"Blessèd are the poor","","David Lyle Morris & Pat Youd * Copyright © 2000 Thankyou Music","David Lyle Morris | Pat Youd","","", +"Blessèd assurance;","","Fanny J. Crosby. *","Fanny J. Crosby","SOF #44","", +"Blessèd be the God and Father","","David Fellingham. * Copyright © 1983 Kingsway's Thankyou Music.","David Fellingham","","", +"Blessed be the name of the Lord He is our rock","","Kevin Prosch & Danny Daniels. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Kevin Prosch | Danny Daniels","","", +"Blessèd be the name of the Lord Strong tower,","","(From “Love from Below” Wild Goose Publications 1989) * No permission is required to reproduce this song for non-commercial purposes Clinton Utterbach. Copyright © 1988 Polygram Music Publishing Ltd.","(From “Love from Below” Wild Goose Publications 1989)","","", +"Blessèd Jesus,","","Joey Holder. * Copyright © 1987 Far Lane Publishing/ Kingsway's Thankyou Music.","Joey Holder","","", +"Blessing and honour,","","Gary Sadler & Jamie Harvill. * Copyright © 1992 Integrity's Praise! Music/ Adm. by Kingsway's Thankyou Music.","Gary Sadler | Jamie Harvill","","", +"Blest be the tie","","John Fawcett. *","John Fawcett","","", +"Born in the night","","Geoffrey Ainger * Copyright © 1964 Stainer & Bell Ltd","Geoffrey Ainger","","", +"Break thou the bread of life,","","Verses 1 & 4 Mary A. Lathbury. * Verses 2 & 3 Alexander Groves.","Verses 1 | 4 Mary A. Lathbury","","", +"Breathe on me, breath of God (Fellingham),","","Edwin Hatch, adpt. David Fellingham. * Copyright © 1995 Kingsway's Thankyou Music.","Edwin Hatch | adpt. David Fellingham","","", +"Breathe on me, breath of God,","","Edwin Hatch. *","Edwin Hatch","","", +"Breathe on me, O wind of change","","Andrea Lawrence & Noel Robinson * Copyright © 2000 Thankyou Music","Andrea Lawrence | Noel Robinson","","", +"Breathe on me, Spirit of Jesus","","For permission to reproduce this song for non-commercial purposes, * please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB Tina Pownall. Copyright © 1987 Sovereign Music UK.","For permission to reproduce this song for non-commercial purposes","","", +"Bring a psalm","","Brent Chambers. * Copyright © 1979 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Brent Chambers","","", +"Bring heaven to earth, Lord;;","","2007 Andrew Flannagan","Andy Flannagan","SOF #2234","", +"Bring Your best to their worst","","John L. Bell * Copyright © 1998 WGRG, Iona Community","John L. Bell","","", +"Broken for me,","","Janet Lunt. * Copyright © 1978 Sovereign Music UK.","Janet Lunt","","", +"Brother, let me be Your servant,","","Richard Gillard. * Copyright © 1977 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Richard Gillard","","", +"Burn it deep","","Kent & Carla Henry. * Copyright © 1989 Kent Henry Ministries/ Kingsway's Thankyou Music.","Kent Henry | Carla Henry","","", +"By Your blood","","David Fellingham. * Copyright © 1997 Kingsway's Thankyou Music.","David Fellingham","","", +"By Your side","","Noel & Tricia Richards. * Copyright © 1989 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"Called to a battle,","","Noel & Tricia Richards. * Copyright © 1992 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"Calling all nations,","","Noel Richards & Wayne Drain * Copyright © 1998 Thankyou Music","Noel Richards | Wayne Drain","","", +"Can a nation be changed?","","Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Matt Redman","","", +"Can I ascend","","Matt Redman. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman","","", +"Catch the fire,","","Chris Bowater. * Copyright © 1996 Sovereign Lifestyle Music.","Chris Bowater","","", +"Cause me to come","","Edward R. Miller. * Copyright © 1974 Maranatha! Music/ Adm. by CopyCare.","Edward R. Miller","","", +"Celebrate in the Lord,","","Evan Rogers * Copyright © 2000 Thankyou Music","Evan Rogers","","", +"Celebrate Jesus,","","Gary Oliver. * Copyright © 1988 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Gary Oliver","","", +"Change my heart, O God,","","Eddie Espinosa. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare.","Eddie Espinosa","","", +"Christ be in my waking","","2011 Thankyou Music","Stuart Townend","","", +"Christ is made the sure foundation","","From the Latin, J.M. Neale (1818-66) * Copyright © in this version Jubilate Hymns","From the Latin | J.M. Neale (1818-66)","","", +"Christ is risen!","","Chris Rolinson. * Copyright © 1989 Kingsway's Thankyou Music.","Chris Rolinson","","", +"Christ the Lord is risen today:","","Charles Wesley. *","Charles Wesley","","", +"Christ triumphant,","","Michael Saward. * Words Copyright © Michael Saward/ Jubilate Hymns.","Michael Saward","","", +"Christ, whose glory fills the skies","","Charles Wesley (1707-88) *","Charles Wesley (1707-88)","","", +"Christians awake!","","J. Byrom, altd. *","J. Byrom | altd","","", +"Christ's is the world","","John L. Bell & Graham Maule. * Copyright © 1989 WGRG, Iona Community.","John L. Bell | Graham Maule","","", +"Clap Your hands, all You nations,","","(From “Love from Below” Wild Goose Publications 1989) * No permission is required to reproduce this song for non-commercial purposes Ian White. Copyright © 1987 Little Misty Music/ Kingsway's Thankyou Music.","(From “Love from Below” Wild Goose Publications 1989)","","", +"Clear the road,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"Closer to You,","","Patricia Morgan. * Copyright © 1991 Kingsway's Thankyou Music.","Patricia Morgan","","", +"Colours of day;","","Sue McClellan, John Pac, Keith Ryecroft. * Copyright © 1974 Kingsway's Thankyou Music.","Sue McClellan | John Pac | Keith Ryecroft","SOF #64","", +"Come all You people","","Alexander Gondo * Copyright © World Council of Churches","Alexander Gondo","","", +"Come and join the celebration,","","Valerie Collison. * Copyright © 1972 High-Fye Music.","Valerie Collison","","", +"Come and praise Him, royal priesthood,","","Andy Carter. * Copyright © 1977 Kingsway's Thankyou Music.","Andy Carter","","", +"Come and praise the living God,","","Mike Kerry. * Copyright © 1982 Kingsway's Thankyou Music.","Mike Kerry","","", +"Come and see,","","Graham Kendrick. * Copyright © 1989 Make Way Music.","Graham Kendrick","","", +"Come bless the Lord,","","Author unknown. *","Author unknown","","", +"Come down, O love divine","","after Bianco da Siena (1367-1434) * Richard F. Littledale (1833-90)","after Bianco da Siena (1367-1434)","","", +"Come, Holy Spirit,","","For permission to reproduce this song for non-commercial purposes, * please contact Hi-Fye Music 8-9 Frith Street, London, W1V 5TZ Loralee Thiessen. Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","For permission to reproduce this song for non-commercial purposes","","", +"Come into the heavenlies","","Billy Funk. * Copyright © 1992 Integrity's Praise! Music/ Adm. by Kingsway's Thankyou Music.","Billy Funk","","", +"Come into the Holy of holies,","","John Sellers. * Copyright © 1984 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","John Sellers","","", +"Come, let us join our cheerful songs","","Isaac Watts. *","Isaac Watts","","", +"Come let us return","","Kevin Prosch. * Copyright © 1993 7th Time Music/Kingsway's Thankyou Music.","Kevin Prosch","","", +"Come, let us sing for joy to the world","","Brent Chambers. * Copyright © 1985 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Brent Chambers","","", +"Come, let us sing of a wonderful love,","","Robert Walmsley. *","Robert Walmsley","","", +"Come, let us worship Jesus,","","Graham Kendrick. * Copyright © 1992 Make Way Music.","Graham Kendrick","","", +"Come, let us worship the King of kings","","Nathan Fellingham * Copyright © 2001 Thankyou Music","Nathan Fellingham","","", +"Come, my soul, and praise the Lord.","","John Pantry. * Copyright © 1992 Kingsway's Thankyou Music.","John Pantry","","", +"Come near to me,","","Alan Rose * Copyright © 1998 Thankyou Music","Alan Rose","","", +"Come, now is the time","","Brian Doerksen * Copyright © 1998 Vineyard Songs (UK/Eire)/ Adm. by CopyCare","Brian Doerksen","","", +"Come on and celebrate;","","Patricia Morgan & Dave Bankhead. * Copyright © 1984 Kingsway's Thankyou Music.","Patricia Morgan | Dave Bankhead","SOF #73","", +"Come out of darkness","","Copyright © 1996 Kingsway's * Thankyou Music.","Copyright © 1996 Kingsway's","","", +"Come, praise the Lord","","Keith Getty & Kristyn Lennox * Copyright © 2002 Thankyou Music","Keith Getty | Kristyn Lennox","","", +"Come see the beauty of the Lord,","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Come, see the Lord","","Martin E. Leckebusch * Copyright © 2000 Kevin Mayhew Ltd","Martin E. Leckebusch","","", +"Come, see this glorious light","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","","", +"Come to the power,","","Richard Lewis. * Copyright © 1996 Kingsway's Thankyou Music.","Richard Lewis","","", +"Come to the table,","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", +"Come, wounded healer","","Martin E. Leckebusch * Copyright © 2000 Kevin Mayhew Ltd","Martin E. Leckebusch","","", +"Come, ye thankful people, come,","","Henry Alford. *","Henry Alford","","", +"Confidence, we have confidence","","Chris Bowater. * Copyright © 1994 Sovereign Lifestyle Music.","Chris Bowater","","", +"Create in me a clean heart","","David Fellingham. * Copyright © 1983 Kingsway's Thankyou Music.","David Fellingham","","", +"Create in me thr purest of hearts","","Matt Redman * Copyright © 1996 Thankyou Music","Matt Redman","","", +"Crown Him with many crowns,","","Matthew Bridges & Godfrey Thring. *","Matthew Bridges | Godfrey Thring","","", +"Darkness like a shroud","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Day after day, I'll search to find you","","Tim Hughes * Copyright © 2001 Thankyou Music","Tim Hughes","","", +"Day by day","","Geoff Bullock. * Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","Geoff Bullock","","", +"Day of favour,","","David Fellingham. * Copyright © 1995 Kingsway's Thankyou Music.","David Fellingham","","", +"Days of heaven","","David Fellingham. * Copyright © 1994 Kingsway's Thankyou Music.","David Fellingham","","", +"Dear Lord and Father of mankind,","","John G. Whittier. *","John G. Whittier","","", +"Did You feel the mountains tremble?","","Martin Smith. * Copyright © 1994 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", +"Do not be afraid","","Gerard Markland * Copyright © 1978 Kevin Mayhew Ltd","Gerard Markland","","", +"Do something new, Lord,","","Chris Bowater. * Copyright © 1986 Sovereign Lifestyle Music.","Chris Bowater","","", +"Do You love to praise the Lord?","","Wayne Drain, Noel Richards, Wayne Freeman, * Neil Costello & Bradley Mason Copyright © 2001 Thankyou Music","Wayne Drain | Noel Richards | Wayne Freeman","","", +"Don't be lazy,","","Ian Smale. * Copyright © 1987 Kingsway's Thankyou Music.","Ian Smale","","", +"Don't build Your house","","Karen Lafferty * Copyright © 1981 Maranatha! Praise Inc./Adm. by CopyCare","Karen Lafferty","","", +"Don't let my love grow cold;","","Brian Doerksen. * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen","","", +"Down the mountain the river flows,","","Andy Park. * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Andy Park","","", +"Draw me close to the cross,","","Geoff & Judith Roberts. * Copyright © 1996 Kingsway's Thankyou Music.","Geoff Roberts | Judith Roberts","","", +"Draw me close to You,","","Kelly Carpenter * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare","Kelly Carpenter","","", +"Draw me closer, Lord","","Stuart DeVane & Glenn Gore. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Stuart DeVane | Glenn Gore","","", +"Draw me closer, precious Saviour","","Ian Hannah * Copyright © 2001 Thankyou Music","Ian Hannah","","", +"Draw me near to You","","Dave Doran * Copyright © 2001 Thankyou Music","Dave Doran","","", +"Draw me to Your side, ,","","Brian Houston & Tom Brock * Copyright © 2002 Thankyou Music","Brian Houston | Tom Brock","","", +"Drawn from every tribe,","","David Lyle Morris & Faith Forster * Copyright © 2000 Thankyou Music","David Lyle Morris | Faith Forster","","", +"Eat this bread","","Taizé, music: Jacques Berthier (1923-94) * Copyright © Ateliers et Presses de Taizé","Taizé | music: Jacques Berthier (1923-94)","","", +"El-shaddai,","","John Thompson & Michael Card. * Copyright © 1981 Whole Armor Publishing/ Full Armor Publishing/Songs for Today Windswept Pacific Music Limited.","John Thompson | Michael Card","","", +"Emmanuel,","","Bob McGee. * Copyright © 1976 C A Music/Music Services/CopyCare.","Bob McGee","","", +"Endless Hallelujah (SH12 88)!","","2011 Thankyou Music/Said and Done Music","Matt Redman","SOF #2642","", +"Enter in","","Carol Mundy. * Copyright © 1988 Kingsway's Thankyou Music.","Carol Mundy","","", +"Eternal covenant","","David Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham","","", +"Eternal Father, strong to save","","William Whiting (1825-78) *","William Whiting (1825-78)","","", +"Eternal God,","","David Fellingham. * Copyright © 1983 Kingsway's Thankyou Music.","David Fellingham","","", +"Even though I walk (SH08-26}","","","Author Unknown","","", +"Everlasting","","Sue Rinaldi & Caroline Bonnett * Copyright © 2001 Thankyou Music","Sue Rinaldi | Caroline Bonnett","","", +"Every breath I breathe","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", +"Every day He is watching","","Robin Mark * Copyright © 2001 Thankyou Music","Robin Mark","","", +"Every day, I see your beauty more","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", +"Every morning","","Noel Richards & Wayne Drain * Copyright © 2001 Thankyou Music","Noel Richards | Wayne Drain","","", +"Everyone needs compassion;","","2006 Ben Fielding & Reuben Morgan/Hillsong Publishing","Reuben Morgan | Ben Fielding","SOF #1757","", +"Exalt the Lord our God,","","Rick Ridings. * Copyright © 1977 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Rick Ridings","","", +"Exalted, You are exalted,","","Dave Bilbrough. * Copyright © 1990 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Facing a task unfinished;","","Frank Houghton. * Copyright © Overseas Missionary Fellowship.","Frank Houghton","","", +"Faithful and true","","Dave Bilbrough. * Copyright © 1995 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Faithful God,","","Chris Bowater. * Copyright © 1990 Sovereign Lifestyle Music.","Chris Bowater","","", +"Faithful one, so unchanging;","","Brian Doerksen. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Brian Doerksen","SOF #89","", +"Falling, moving closer","","Dave Wellington * Copyright © 1999 Thankyou Music","Dave Wellington","","", +"Far above all other loves,","","David Fellingham. * Copyright © 1997 Kingsway's Thankyou Music.","David Fellingham","","", +"Far and near","","Graham Kendrick. * Copyright © 1996 Make Way Music.","Graham Kendrick","","", +"Father God, I give you","","Jack Hayford. * Copyright © 1981 Rocksmith Music/ Leosong Copyright Service.","Jack Hayford","","", +"Father God, I wonder","","Copyright © 1984 Kingsway's * Thankyou Music.","Copyright © 1984 Kingsway's","","", +"Father God, fill this place","","Dave Bilbrough. * Copyright © 1995 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Father God, we worship you","","Graham Kendrick. * Copyright © 1981 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Father, hear the prayer we offer","","Love Maria Willis (1824-1908) *","Love Maria Willis (1824-1908)","","", +"Father here I am","","Danny Daniels. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", +"Father, I come to You,","","John Barnett. * Copyright © 1989 Mercy/Vineyard Publishing/ Adm. by CopyCare.","John Barnett","","", +"Father, I place into Your hands","","Jenny Hewer. * Copyright © 1975 Kingsway's Thankyou Music.","Jenny Hewer","","", +"Father in heaven, how we love You;","","Bob Fitts. * Copyright © 1985 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Bob Fitts","SOF #96","", +"Father in heaven, holy is your name","","Jim Bailey. * Copyright © 1996 Kingsway's Thankyou Music.","Jim Bailey","","", +"Father in heaven, our voices we raise","","Dave Bilbrough. * Copyright © 1985 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Father, into Your courts I will enter","","Andrew Ulugia & Wayne Huirua * Copyright © 2001 Parachute Music New Zealand/ Adm. by Kingsway Music","Andrew Ulugia | Wayne Huirua","","", +"Father, like rain from the skies,","","Paul McWilliams & William Thompson. * Copyright © 1993 Kingsway's Thankyou Music.","Paul McWilliams | William Thompson","","", +"Father, make us one,","","Rick Ridings. * Copyright © 1976 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Rick Ridings","","", +"Father of creation,","","David Ruis. * Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","David Ruis","","", +"Father of life, draw me closer,","","Darlene Zschech * Copyright © 1995 Darlene Zschech/Hillsong Publishing/ Kingsway Music","Darlene Zschech","","", +"Father, we adore You, we are your children","","Philip Lawson Johnston. * Copyright © 1989 Kingsway's Thankyou Music.","Philip Lawson Johnston","","", +"Father, we adore You, lay our lives","","Terry Coelho. * Copyright © 1972 Maranatha! Music/ Adm. by CopyCare.","Terry Coelho","","", +"Father, we adore You,","","Carl Tuttle. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare.","Carl Tuttle","","", +"Father, we have sinned against You","","Geoff Twigg * Copyright © Geoff Twigg/Jubilate Hymns Ltd","Geoff Twigg","","", +"Father, we love You,","","Donna Adkins. * Copyright © 1976 Maranatha! Music/ Adm. by CopyCare.","Donna Adkins","","", +"Father, You are my portion","","Andy Park. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", +"Father, You have given","","Copyright © 1996 Kingsway's * Thankyou Music.","Copyright © 1996 Kingsway's","","", +"Father, Your love is precious","","Everett Perry. * Copyright © 1983 Kingsway's Thankyou Music.","Everett Perry","","", +"Father, I can call you Father","","Danny Daniels. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", +"Fear not, rejoice and be glad,","","Priscilla Wright Porter. * Copyright © 1971, 1975 Celebration/ Kingsway's Thankyou Music.","Priscilla Wright Porter","","", +"Fear not, for I am with you","","Phil Pringle. * Copyright © 1987 Seam of Gold/ Kingsway's Thankyou Music.","Phil Pringle","","", +"Fight the good fight","","John S. B. Monsell. *","John S. B. Monsell","","", +"Fill thou my life,","","Horatius Bonar. *","Horatius Bonar","","", +"Fill Your hearts with joy","","Timothy Dudley-Smith. * Copyright © 1970 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", +"Filled with compassion","","Noel & Tricia Richards. * Copyright © 1994 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"Find rest, all the earth,","","Keith Getty & Kristyn Lennox * Copyright © 2002 Thankyou Music","Keith Getty | Kristyn Lennox","","", +"Fire, there's a fire","","Paul Oakley. * Copyright © 1995 Kingsway's Thankyou Music.","Paul Oakley","","", +"Focus my eyes","","Ian White. * Copyright © 1988 Little Misty Music/ Kingsway's Thankyou Music.","Ian White","","", +"For all the saints,","","W. W. How. *","W. W. How","","", +"For His name is exalted,","","Dale Garratt. * Copyright © 1972 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Dale Garratt","","", +"For l'm building a people of power,","","Dave Richards. * Copyright © 1977 Kingsway's Thankyou Music.","Dave Richards","","", +"For the beauty of the earth,","","Folliot S. Pierpoint. *","Folliot S. Pierpoint","","", +"For the fruits of His creation","","Fred Pratt Green (1903-2000) * Copyright © 1970 Stainer & Bell Ltd","Fred Pratt Green (1903-2000)","","", +"For the healing of the nations","","Fred Kaan * Copyright © 1968 Stainer & Bell Ltd","Fred Kaan","","", +"For the joys and for the sorrows,","","Graham Kendrick. * Copyright © 1994 Make Way Music.","Graham Kendrick","","", +"For the Lord is good,","","Lynn DeShazo & Gary Sadler * Copyright © 1997 Integrity's Hosanna! Music/ Sovereign Music UK","Lynn DeShazo | Gary Sadler","","", +"For the Lord is marching on,","","Bonnie Low. * Copyright © 1977 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Bonnie Low","","", +"For this purpose","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", +"For thou O Lord art high","","Pete Sanchez Jnr. * Copyright © 1977 Pete Sanchez Jnr/ Gabriel Music.","Pete Sanchez Jnr","","", +"For unto us a child is born,","","Author unknown. *","Author unknown","","", +"For we see Jesus","","Susan Hutchinson. * Copyright © 1979 Word's Spirit of Praise Music/Adm. by CopyCare.","Susan Hutchinson","","", +"For Your wonderful deeds","","David J. Hadden. * Copyright © 1990 Restoration Music Ltd./ Adm. by Sovereign Music UK.","David J. Hadden","","", +"Forth in thy name, O Lord, I go","","Charles Wesley (1707-88) *","Charles Wesley (1707-88)","","", +"Friend of sinners,","","Matt Redman. * Copyright © 1994 Kingsway's Thankyou Music.","Matt Redman","","", +"From all that dwell below theskies","","Isaac Watts. *","Isaac Watts","","", +"From every tongue,","","Wayne Drain. * Copyright © 1996 Kingsway's Thankyou Music.","Wayne Drain","","", +"From heaven You came;","","Graham Kendrick. * Copyright © 1983 Kingsway's Thankyou Music.","Graham Kendrick","SOF #120","", +"From the rising of the sun","","Paul S. Deming. * Copyright © 1976 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Paul S. Deming","","", +"From the rising of the sun","","Viola Grafstrom * Copyright © 2002 Thankyou Music","Viola Grafstrom","","", +"From the sleep of ages,","","Stuart Townend. * Copyright © 1995 Kingsway's Thankyou Music. La la la la la la. (x4)","Stuart Townend","","", +"From the squalor of a borrowed stable:","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","SOF #1239","", +"From the sun's rising","","Graham Kendrick. * Copyright © 1987 Make Way Music.","Graham Kendrick","","", +"From Your throne, O Lord,","","Chris Cartwright. * Copyright © 1991 Kingsway's Thankyou Music.","Chris Cartwright","","", +"Give me a heart of compassion,","","Jim Bailey. * Copyright © 1997 Kingsway's Thankyou Music.","Jim Bailey","","", +"Give me life, Holy Spirit,","","Danny Daniels. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", +"Give me, Lord, a dream from heaven,","","Dave Bilbrough. * Copyright © 1994 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Give me oil in my lamp,","","Author unknown. *","Author unknown","","", +"Give thanks to the Lord, call upon his name","","Kevin Gould. * Copyright © 1988 Coronation/ Kingsway's Thankyou Music.","Kevin Gould","","", +"Give thanks to the Lord, our God and King;","Forever God is faithful;","Chris Tomlin * Copyright © 2000 worshiptogether.com songs/Six Steps Music/Adm. by Kingsway Music","Chris Tomlin","SOF #1241","", +"Give thanks with a grateful heart","","Henry Smith. * Copyright © 1978 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Henry Smith","","", +"Give Your thanks to the risen Son.","","Dave Bilbrough. * Copyright © 1994 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Giver of grace,","","Stuart Townend * Copyright © 1998 Thankyou Music","Stuart Townend","","", +"Giving it all to You","","Geraldine Latty * Copyright © 2000 Thankyou Music","Geraldine Latty","","", +"Glorious Father,","","Danny Reed. * Copyright © 1987 Kingsway's Thankyou Music.","Danny Reed","","", +"Glorious things of thee are spoken,","","John Newton. *","John Newton","","", +"Glory, glory in the highest","","Danny Daniels. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", +"Go forth and tell!","","James E. Seddon. * Copyright © Mrs M Seddon/Jubilate Hymns.","James E. Seddon","","", +"Go to all nations,","","Bryn Haworth. * Copyright © 1991 Kingsway's Thankyou Music.","Bryn Haworth","","", +"God forgave my sin","","Carol Owens. * Copyright © 1972 Bud John Songs/ EMI Christian Music Publishing/ Adm. by CopyCare.","Carol Owens","","", +"God gave us His Son","","Kate & Miles Simmonds * Copyright © 2002 Thankyou Music","Kate Simmonds | Miles Simmonds","","", +"God has exalted Him","","Austin Martin. * Copyright © 1984 Kingsway's Thankyou Music.","Austin Martin","","", +"God has spoken to His people,","","Stuart Baugh. * Copyright © 1982 Restoration Music Ltd./ Adm. by Sovereign Music UK.","Stuart Baugh","","", +"God in my living (SH08-39)","","2005 Thankyou Music","Tim Hughes","SH08- #39","", +"God is good all the time!","","Don Moen & Paul Overstreet * Copyright © 1995 Integrity's Hosanna! Music/Sovereign Music UK/ Scarlet Moon Music/Adm. by Copyright Management Services","Don Moen | Paul Overstreet","","", +"God is good, we sing and shout","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", +"God is great,","","Graham Kendrick & Steve Thompson. * Copyright © 1993 Make Way Music.","Graham Kendrick | Steve Thompson","","", +"God is here, God is present,","","lan Smale. * Copyright © 1987 Kingsway's Thankyou Music.","lan Smale","","", +"God is our Father in heaven above","","David Lyle Morris & Nick Wynne-Jones * Copyright © 2001 Thankyou Music","David Lyle Morris | Nick Wynne-Jones","","", +"God is our Father, for He made us His own","","Alex Simons & Freda Kimmey. * Copyright © 1977 Celebration/ Kingsway's Thankyou Music.","Alex Simons | Freda Kimmey","","", +"God is raising up an army","","Jim Bailey. * Copyright © 1997 Kingsway's Thankyou Music.","Jim Bailey","","", +"God is so good, God is good","","Author unknown. * Copyright Control.","Author unknown","","", +"God is so good. he rides upon the wings","","Kevin Prosch. * Copyright © 1990 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Kevin Prosch","","", +"God is working His purpose out,","","Arthur C. Ainger. *","Arthur C. Ainger","","", +"God of all comfort,","","John Wimber. * Copyright © 1988 Mercy/Vineyard Publishing/Adm. by CopyCare.","John Wimber","","", +"God of glory,","","David Fellingham. * Copyright © 1982 Kingsway's Thankyou Music.","David Fellingham","","", +"God of grace and God of glory,","","H. E. Fosdick. *","H. E. Fosdick","","", +"God of grace, I turn my face","","Chris Bowater. * Copyright © 1990 Sovereign Lifestyle Music.","Chris Bowater","","", +"God of heaven,","","Stuart Townend. * Copyright © 1992 Kingsway's Thankyou Music.","Stuart Townend","","", +"God of mercy","","Louise Fellingham * Copyright © 2002 Thankyou Music","Louise Fellingham","","", +"God of restoration","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", +"God of the mountains","","Sue Rinaldi, Caroline Bonnett & Steve Bassett * Copyright © 2001 Thankyou Music","Sue Rinaldi | Caroline Bonnett | Steve Bassett","","", +"God, our God, blesses us,","","Rosie Fellingham. * Copyright © 1984 Kingsway's Thankyou Music.","Rosie Fellingham","","", +"God sent His Son,","","Gloria & William J Gaither. * Copyright © 1971 Gaither Music Company/ WJG Inc./Kingsway's Thankyou Music.","Gloria Gaither | William J Gaither","","", +"God, You are an awesome God,","","Charlotte Exon & Andy Thorpe. * Copyright © 1991 Kingsway's Thankyou Music.","Charlotte Exon | Andy Thorpe","","", +"God, You are good","","Brian Houston * Copyright © 2002 Thankyou Music","Brian Houston","","", +"Good and gracious","","Gareth Robinson * Copyright © 2001 Thankyou Music","Gareth Robinson","","", +"Good Christian men, rejoice","","John Mason Neale, altd. *","John Mason Neale | altd","","", +"Good news, good news to You we bring,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"Grace and mercy","","Dave Bilbrough * Copyright © 2000 Thankyou Music","Dave Bilbrough","","", +"Great and marvellous are thy works,","","Kevin Prosch. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Kevin Prosch","","", +"Great and marvellous are Your deeds","","Ian Hannah * Copyright © 2001 Thankyou Music","Ian Hannah","","", +"Great and marvellous","","Bob Pitcher. * Copyright © 1980 Kingsway's Thankyou Music.","Bob Pitcher","","", +"Great and marvellous","","Geraldine Latty & Carey Luce * Copyright © 2002 Thankyou Music","Geraldine Latty | Carey Luce","","", +"Great, great, brill, brill,","","Doug Horley. * Copyright © 1993 Kingsway's Thankyou Music.","Doug Horley","","", +"Great is He SOF-1254","","","unknown","SOF #1254","", +"Great is the darkness","","Noel Richards & Gerald Coates. * Copyright © 1992 Kingsway's Thankyou Music.","Noel Richards | Gerald Coates","","", +"Great is the Lord and greatly to be praised","","Author unknown. *","Author unknown","","", +"Great is the Lord and mighty in power,","","Dale Garratt. * Copyright © 1980 Scripture in Song, a division of Integrity Music/ Adm. by Kingsway's Thankyou Music.","Dale Garratt","","", +"Great is the Lord and most worthy of praise;","","Steve McEwan. * Copyright © 1985 Body Songs/Adm. by CopyCare.","Steve McEwan","SOF #145","", +"Great is the Lord; Sovereign King","","David & Nathan Fellingham. * Copyright © 1994 Kingsway's Thankyou Music.","David Fellingham | Nathan Fellingham","","", +"Great is thy faithfulness;","","Thomas O. Chisholm (1866–1960) * William M. Runyan (1870–1957) Copyright © 1951 Hope Publishing Co/ Adm. by CopyCare.","Thomas O. Chisholm (1866–1960)","SOF #147","", +"Guide me, O thou great jehovah,","","William Williams. * Tr. Peter Williams.","William Williams","","", +"Hail, thou once despisèd Jesus,","","John Bakewell. *","John Bakewell","","", +"Hail to the Lord's anointed,","","James Montgomery. *","James Montgomery","","", +"Hallelujah;","Be High and lifted up;","2007 Thankyou Music","Ben Cantelon","SH10 #27","", +"Hallelujah! Jesus is alive,","","Ron Kenoly. * Copyright © 1987 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Ron Kenoly","","", +"Hallelujah, for the Lord our God","","Dale Garratt. * Copyright © 1972 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Dale Garratt","","", +"Hallelujah, hosanna","","Malcolm du Plessis & Victor S. Masondo * Copyright © 1993 Maranatha! Music/Adm. by CopyCare/& Isondo Music","Malcolm du Plessis | Victor S. Masondo","","", +"Hallelujah, my Father,","","Tim Cullen. * Copyright © 1975 Celebration/ Kingsway's Thankyou Music.","Tim Cullen","","", +"Hold me closer to You each day;","","Noel & Tricia Richards. * Copyright © 1996 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"Hold me Lord,","","Danny Daniels. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare. (Men and women in canon)","Danny Daniels","","", +"Holiness is Your life in me,","","Brian Doerksen. * Copyright © 1990 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen","","", +"Holiness unto the Lord,","","Danny Daniels. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", +"Holy child,","","Timothy Dudley-Smith. * Copyright © 1966 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", +"Holy ghost,","","Bjorn Aslakson. * Copyright © 1992 His Music/Kingsway's Thankyou Music.","Bjorn Aslakson","","", +"Holy, Holy are You, Lord","","Reuben Morgan * Copyright © 2002 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", +"Holy, Holy, God Almighty","","Brenton Brown * Copyright © 2001 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Brenton Brown","","", +"Holy, Holy, Holy, Holy,","","Jimmy Owens. * Copyright © 1972 Bud John Songs/EMI Christian Music Publishing/Adm. by CopyCare.","Jimmy Owens","","", +"Holy, Holy, Holy is the Lord God Almighty","","Andy Park. * Copyright © 1990 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", +"Holy, Holy, Holy is the Lord","","1995 Kingsway’s Thankyou Music.","Nathan Fellingham","SOF #771","", +"Holy, Holy, Holy is the Lord;(182)","","Author unknown. *","Author unknown","SOF #182","", +"Holy, Holy, Holy is the Lord.","","Bryn Haworth. * Copyright © 1991 Kingsway's Thankyou Music.","Bryn Haworth","","", +"Holy, Holy, Holy, Lord God Almighty!;","","Reginald Heber. *","Reginald Heber","SOF #183","", +"Holy, Holy, Holy Lord,","","Author unknown. *","Author unknown","","", +"Holy, Holy, Holy Lord","","Keith Getty, Emma Vardy & Noel Robinson * Copyright © 2001 Thankyou Music","Keith Getty | Emma Vardy | Noel Robinson","","", +"Holy, Holy, Holy","","Words unknown (Argentina) * Spanish and English Copyright Control","Words unknown (Argentina)","","", +"Holy, Holy is the Lord our God","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", +"Holy, Holy, Lord God Almighty,","","Richard Lewis. * Copyright © 1997 Kingsway's Thankyou Music.","Richard Lewis","","", +"Holy, Holy, Holy, Holy","","Robin Mark * Copyright © 2000 Thankyou Music","Robin Mark","","", +"Holy is the Lord,","","Kelly Green. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare. (Men and women in canon)","Kelly Green","","", +"Holy is Your name,","","John Paculabo. * Copyright © 1993 Kingsway's Thankyou Music.","John Paculabo","","", +"Holy one, Holy one","","Chris Bowater. * Copyright © 1991 Sovereign Music UK.","Chris Bowater","","", +"Holy one, my life is in Your hand","","Mick Gisbey. * Copyright © 1993 Kingsway's Thankyou Music.","Mick Gisbey","","", +"Holy one, righteous King","","Andrew Ulugia * Copyright © 1998 Parachute Music New Zealand/ Adm. by Kingsway Music","Andrew Ulugia","","", +"Holy Spirit, how I love You","","Peter Brooks, Stuart Townend & Kate Simmonds * Copyright © 2002 Thankyou Music","Peter Brooks | Stuart Townend | Kate Simmonds","","", +"Holy Spirit, lead me to my Father,","","Alan Leppitt. * Copyright © 1991 Kingsway's Thankyou Music.","Alan Leppitt","","", +"Holy Spirit, move within me,","","Charlotte Exon. * Copyright © 1991 Kingsway's Thankyou Music.","Charlotte Exon","","", +"Holy Spirit, rain down,","","Russell Fragar * Copyright © 1997 Russell Fragar/Hillsong Publishing/ Kingsway Music","Russell Fragar","","", +"Holy Spirit, we welcome You.","","Chris Bowater. * Copyright © 1986 Sovereign Lifestyle Music.","Chris Bowater","","", +"Hope has found its home within me","","Joel Houston * Copyright © 2000 Joel Houston/Hillsong Publishing/Kingsway Music","Joel Houston","","", +"Hope of the world,","","Robert Newey. * Copyright © 1994 Kingsway's Thankyou Music.","Robert Newey","","", +"Hosanna;","","Carl Tuttle. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Carl Tuttle","SOF #189","", +"Hover o'er me,","","Elwood H. Stokes (1815-95) *","Elwood H. Stokes (1815-95)","","", +"How can I be free from sin?","","Graham Kendrick & Steve Thompson. * Copyright © 1991 Make Way Music.","Graham Kendrick | Steve Thompson","","", +"How can I not praise You","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", +"How can I repay You,","","Geraldine Latty * Copyright © 2000 Thankyou Music","Geraldine Latty","","", +"How deep the father's love for us;","","Stuart Townend. * Copyright © 1995 Kingsway's Thankyou Music.","Stuart Townend","SOF #780","", +"How good You have been to me","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", +"How great are You, Lord,","","Lynn DeShazo * Copyright © 1999 Integrity's Hosanna! Music/Sovereign Music UK","Lynn DeShazo","","", +"How I love You,","","Keith & Melody Green. * Copyright © 1982 BMG Songs Inc/Birdwing Music/Ears to Hear Music/EMI Christian Music Publishing/Adm. by CopyCare.","Keith Green | Melody Green","","", +"How lovely is thy dwelling place, O Lord of hosts","","Author unknown. *","Author unknown","","", +"How lovely is Your dwelling place, O Lord Almighty;","Better is on day in your courts","Matt Redman. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman","SOF #781","", +"How lovely on the mountains","","Leonard E. Smith Jnr. * Copyright © 1974, 1978 Kingsway's Thankyou Music. Popular version","Leonard E. Smith Jnr","","", +"How precious, O Lord,","","Phil Rogers. * Copyright © 1982 Kingsway's Thankyou Music.","Phil Rogers","","", +"How shall I find","","Neil Bennetts * Copyright © 2002 Thankyou Music","Neil Bennetts","","", +"How sweet the name of Jesus sounds","","John Newton. *","John Newton","","", +"How wonderful,","","Dave Bilbrough. * Copyright © 1994 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"How You bless our lives,","","Chris Welch. * Copyright © 1987 Kingsway's Thankyou Music.","Chris Welch","","", +"Humble yourselves","","Dave Bilbrough. * Copyright © 1997 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Hungry, I come to You,","","Kathryn Scott * Copyright © 1999 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Kathryn Scott","","", +"I am a lighthouse,","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"I am a new creation;","","Dave Bilbrough. * Copyright © 1983 Kingsway's Thankyou Music.","Dave Bilbrough","SOF #197","", +"I am a wounded soldier","","Danny Daniels. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", +"I am amazed","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2000 Lara Martin/Abundant Life Ministries/ Adm. by Kingsway Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", +"I am helplessly in love with You","","Sue Rinaldi, Caroline Bonnett & Steve Bassett * Copyright © 2001 Thankyou Music","Sue Rinaldi | Caroline Bonnett | Steve Bassett","","", +"I am not ashamed","","John Pantry. * Copyright © 1990 Kingsway's Thankyou Music.","John Pantry","","", +"I am the apple of God's eye,","","Jim Bailey. * Copyright © 1996 Kingsway's Thankyou Music.","Jim Bailey","","", +"I am the bread of life,","","S. Suzanne Toolan. * Copyright © 1971 G. I. A. Publications/ Adm. by Calamus.","S. Suzanne Toolan","","", +"I am the God that healeth thee,","","Don Moen. * Copyright © 1985 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Don Moen","","", +"I am the one with the unclean lips","","Brian Houston * Copyright © 2002 Thankyou Music","Brian Houston","","", +"I am trusting thee, Lord Jesus,","","Frances Ridley Havergal. *","Frances Ridley Havergal","","", +"I am yours","","David Gate. * Copyright © 1997 Kingsway's Thankyou Music.","David Gate","","", +"I behold Your power and glory","","Darlene Zschech * Copyright © 2001 Darlene Zschech/Hillsong Publishing/Kingsway Music","Darlene Zschech","","", +"I believe in everything You do","","James Taylor * Copyright © 1999 Thankyou Music","James Taylor","","", +"I believe in God the Father,","","Wayne Drain. * Copyright © 1996 Kingsway's Thankyou Music.","Wayne Drain","","", +"I believe in God the Father","","Stuart Townend & Keith Getty * Copyright © 2003 Thankyou Music","Stuart Townend | Keith Getty","","", +"I believe in Jesus:","","Marc Nelson. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Marc Nelson","","", +"I believe there is a God in heaven","","Dave Bilbrough. * Copyright © 1991 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"I bow down","","David Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham","","", +"I call on You, Almighty Lord","","Johnny Parks * Copyright © 2001 Thankyou Music","Johnny Parks","","", +"I can almost see","","Peter & Hanneke Jacobs. * Copyright © 1985 Maranatha! Music/ Adm. by CopyCare.","Peter Jacobs | Hanneke Jacobs","","", +"I can do all (all!), all (all!), all things","","Jim Bailey * Copyright © 1994 Thankyou Music","Jim Bailey","","", +"I can feel Your arms","","Ken Riley * Copyright © 1995 McKenzie Music/Adm. by Kingsway Music","Ken Riley","","", +"I cannot tell","","William Y. Fullerton. *","William Y. Fullerton","","", +"I come as I am","","Ken Riley * Copyright © 1999 Thankyou Music","Ken Riley","","", +"I come running","","Paul Oakley * Copyright © 2000 Thankyou Music","Paul Oakley","","", +"I come to bow down","","Kate Simmonds * Copyright © 2002 Thankyou Music","Kate Simmonds","","", +"I come to You, to sit at Your feet","","Louise & Nathan Fellingham * Copyright © 2001 Thankyou Music","Louise Fellingham | Nathan Fellingham","","", +"I come to You, Lord of all hope","","Matt Parker & Paul Oakley * Copyright © 1999 Thankyou Music","Matt Parker | Paul Oakley","","", +"I come, wanting just to be with You;","","Paul Booth * Copyright © 1998 Thankyou Music","Paul Booth","","", +"I could sing unending songs","","Martin Smith. * Copyright © 1994 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", +"I count as nothing every earthly treasure","","Neil Bennetts * Copyright © 2001 Thankyou Music","Neil Bennetts","","", +"I cry out","","Craig Musseau. * Copyright © 1990 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Craig Musseau","","", +"I danced in the morning","","Sydney Carter * Copyright © 1963 Stainer & Bell Ltd","Sydney Carter","","", +"I delight greatly in the Lord,","","Chris Bowater. * Copyright © 1981 Sovereign Lifestyle Music.","Chris Bowater","","", +"I don't know why,","","Noel & Tricia Richards & Wayne Drain * Copyright © 1998 Thankyou Music","Noel Richards | Tricia Richards | Wayne Drain","","", +"I don't want to be a pharisee","","Ian Smale. * Copyright © 1996 Kingsway's Thankyou Music.","Ian Smale","","", +"I dream","","Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Matt Redman","","", +"I enter in","","Bethan Stevens (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Bethan Stevens (Abundant Life Ministries | Bradford | England)","","", +"I exalt You,","","Cecily Feldman. * Copyright © 1989 Cecily Feldman/ Kingsway's Thankyou Music.","Cecily Feldman","","", +"I get so excited, Lord,","","Mick Ray. * Copyright © 1978 Kingsway's Thankyou Music.","Mick Ray","","", +"I give my heart to what I treasure","","Noel Richards & Wayne Drain * Copyright © 2001 Thankyou Music","Noel Richards | Wayne Drain","","", +"I give You all the honour;","","Carl Tuttle. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare.","Carl Tuttle","SOF #210","", +"I give You now","","Amy Rose. * Copyright © 1988 Samsongs/Coronation/ Kingsway's Thankyou Music.","Amy Rose","","", +"I have a destiny","","Mark Altrogge. * Copyright © 1986 People of Destiny International/ Word Music/Adm. by CopyCare.","Mark Altrogge","","", +"I have a maker,","","Tommy Walker. * Copyright © 1996 WeMobile Music/Doulos Publishing/Adm. by CopyCare.","Tommy Walker","","", +"I have come home,","","Noel & Tricia Richards * Copyright © 1998 Thankyou Music","Noel Richards | Tricia Richards","","", +"I have come to love You, for You have won my heart","","Martin Cooper & Paul Oakley * Copyright © 1999 Thankyou Music","Martin Cooper | Paul Oakley","","", +"I have come to love You,","","Matt Redman. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman","","", +"I have come to realise","","Andrew Rogers * Copyright © 2001 Thankyou Music","Andrew Rogers","","", +"I have found","","Marc Nelson. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Marc Nelson","","", +"I have heard so many songs;","","Matt Redman * Copyright © 2000 Thankyou Music","Matt Redman","SOF #1321","", +"I have heard that You are swift","","Stuart Townend. * Copyright © 1997 Kingsway's Thankyou Music.","Stuart Townend","","", +"I have His word,","","Lex Loizides * Copyright © 2000 Thankyou Music","Lex Loizides","","", +"I have loved You","","Kent Henry. * Copyright © 1993 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Kent Henry","","", +"I have made a covenant","","Karen Barrie. * Copyright © 1973 Karen Barrie.","Karen Barrie","","", +"I have made You too small in my eyes;","","Lynn DeShazo. * Copyright © 1992 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Lynn DeShazo","","", +"I hear the sound of rustling","","Ronnie Wilson. * Copyright © 1979 Kingsway's Thankyou Music.","Ronnie Wilson","","", +"I hear the sound of the army of the Lord,","","Dave Moody. * Copyright © 1984 C A Music/ Music Services/CopyCare.","Dave Moody","","", +"I heard the voice of Jesus say:","","Horatius Bonar. *","Horatius Bonar","","", +"I just want to be where You are,","","Don Moen. * Copyright © 1989 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Don Moen","","", +"I just want to love,","","Tim Hughes * Copyright © 1998 Thankyou Music","Tim Hughes","","", +"I just want to praise You, I just want to sing","","Dave Bilbrough. * Copyright © 1988 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"I just want to praise You, lift my hands","","Arthur Tannous. * Copyright © 1984 Acts Music/ Kingsway's Thankyou Music.","Arthur Tannous","","", +"I know a place, a wonderful place,","","Randy &Terry Butler. * Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Randy Butler | Terry Butler","","", +"I know a place where blessings","","Nathan Fellingham. * Copyright © 1997 Kingsway's Thankyou Music.","Nathan Fellingham","","", +"I know He rescued my soul","","Reuben Morgan * Copyright © 1998 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", +"I know not why God's wondrous grace (Townend)","","D.W. Whittle (1840-1901) adapt. Stuart Townend * Copyright © 1999 Thankyou Music","D.W. Whittle (1840-1901) adapt. Stuart Townend","","", +"I know not why God's wondrous grace","","D.W. Whittle. *","D.W. Whittle","","", +"I know You love an offering","","David Gate * Copyright © 1999 Thankyou Music","David Gate","","", +"I know You love to crown the humble,","","Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Matt Redman","","", +"I lift my eyes to the quiet hills,","","Timothy Dudley-Smith. * Copyright © 1968 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", +"I lift my eyes up to the mountains","","Brian Doerksen. * Copyright © 1990 Mercy/Vineyard Publishing/Adm. by CopyCare.","Brian Doerksen","","", +"I lift my hands, I raise my voice","","Eddie Espinosa. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare.","Eddie Espinosa","","", +"I lift my hands to the coming King","","Andre Kempen. * Copyright © 1989 Kempen Music/ Kingsway's Thankyou Music.","Andre Kempen","","", +"I lift my voice","","Dave Bilbrough. * Copyright © 1985 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"I lift You high","","Matt Redman * Copyright © 2000 Thankyou Music","Matt Redman","","", +"I live my life to worship You","","Gareth Robinson * Copyright © 2002 Thankyou Music","Gareth Robinson","","", +"I live,","","Rich Cook. * Copyright © 1976 John T. Benson Publishing Co./Adm. by CopyCare.","Rich Cook","","", +"I long for You, O Lord.","","Steve & Vikki Cook. * Copyright © 1988 People of Destiny Int./Word Music/Adm. by CopyCare.","Steve Cook | Vikki Cook","","", +"I love the Lord","","Ian White. * Copyright © 1996 Little Misty Music/Kingsway's Thankyou Music.","Ian White","","", +"I love You, Lord, and I lift my voice;","","Laurie Klein. * Copyright © 1978 Maranatha! Music/ Adm. by CopyCare.","Laurie Klein","SOF #226","", +"I love You, Lord, my strength,","","Phil Lawson Johnston. * Copyright © 1993 Kingsway's Thankyou Music.","Phil Lawson Johnston","","", +"I love You more each day","","Ken Riley * Copyright © 2001 Thankyou Music","Ken Riley","","", +"I love You, my Lord,","","David Fellingham. * Copyright © 1984 Kingsway's Thankyou Music.","David Fellingham","","", +"I love You with the love of the Lord,","","James Gilbert. * Copyright © 1975 Bud John Songs/ EMIChristian Music Publishing/ Adm. by CopyCare.","James Gilbert","","", +"I love You, Lord, I worship You","","John Ellis * Copyright © 1999 Thankyou Music","John Ellis","","", +"I met You","","Ken Riley * Copyright © 2001 Thankyou Music","Ken Riley","","", +"I need You likw dew","","Chris Bowater. * Copyright © 1995 Sovereign Lifestyle Music.","Chris Bowater","","", +"I need You like the summer","","Paul Oakley & Martin Cooper * Copyright © 2002 Thankyou Music","Paul Oakley | Martin Cooper","","", +"I need You now,","","Paul Oakley * Copyright © 1998 Thankyou Music","Paul Oakley","","", +"I once was frightened of spiders,","","Ian Smale. * Copyright © 1994 Kingsway's Thankyou Music.","Ian Smale","","", +"I reach up high","","Judy Bailey * Copyright © 1993 Daybreak Music Ltd","Judy Bailey","","", +"I receive Your love,","","Paul Armstrong. * Copyright © 1980 Word's Spirit of Praise Music/Adm. by CopyCare.","Paul Armstrong","","", +"I see the King of Glory","","","Author Unknown","","", +"I see the King of Glory (SH09-35)","","","Author Unknown","","", +"I see the Lord seated on the throne","","Chris Falson. * Copyright © 1993 Chris Falson Music/ Maranatha! Music/Adm. by CopyCare.","Chris Falson","","", +"I see the Lord, and He is high","","Paul Oakley * Copyright © 1999 Thankyou Music","Paul Oakley","","", +"I see the Lord, I see the Lord","","Author unknown. *","Author unknown","","", +"I see You hanging there","","Michael Sandeman * Copyright © 2001 Thankyou Music","Michael Sandeman","","", +"I sing a simple song of love","","Craig Musseau. * Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Craig Musseau","","", +"I sing praises to Your name,","","Terry MacAlmon. * Copyright © 1989 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Terry MacAlmon","","", +"I stand amazed in the presence","","Charles Gabriel. * Copyright © Rodeheaver Co/Word Music/ Adm. by CopyCare.","Charles Gabriel","","", +"I stand amazed when I realise","","Paul Oakley. * Copyright © 1990 Kingsway's Thankyou Music.","Paul Oakley","","", +"I thank You for the cross","","Ken Riley * Copyright © 1999 Thankyou Music","Ken Riley","","", +"I the Lord of sea and sky;","","Daniel L. Schutte. * Copyright © 1991 Daniel L. Schutte and New Dawn Music.","Daniel L. Schutte","SOF #830","", +"I tremble in Your presence,","","Rohn Bailey * Copyright © 1999 Thankyou Music","Rohn Bailey","","", +"I waited patiently","","Ian White. * Copyright © 1987 Little Misty Music/Kingsway's Thankyou Music.","Ian White","","", +"I walk by faith,","","Chris Falson. * Copyright © 1990 Chris Falson Music/ Maranatha! Music/Adm. by CopyCare.","Chris Falson","","", +"I wanna sing,","","Dave Renehan. * Copyright © 1982 Kingsway's Thankyou Music.","Dave Renehan","","", +"I want to be a history maker,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"I want to be before Your throne","","Paul Oakley * Copyright © 2000 Thankyou Music","Paul Oakley","","", +"I want to be Holy,","","Paul Oakley & Alan Rose. * Copyright © 1997 Kingsway's Thankyou Music.","Paul Oakley | Alan Rose","","", +"I want to be out of my depth in Your love,","","Doug Horley & Noel Richards. * Copyright © 1995 Kingsway's Thankyou Music.","Doug Horley | Noel Richards","","", +"I want to know","","Evan Rogers. * Copyright © 1997 Kingsway's Thankyou Music.","Evan Rogers","","", +"I want to serve the purpose of God;","","Mark Altrogge. * Copyright © 1982 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","SOF #260","", +"I want to walk with Jesus Christ","","C. Simmonds. * Copyright © 1964 C. Simmonds.","C. Simmonds","","", +"I was lost","","Paul Oakley. * Copyright © 1995 Kingsway's Thankyou Music.","Paul Oakley","","", +"I was made to praise You,","","For permission to reproduce this song for non-commercial purposes, * please contact C. Simmonds, 22 St Michael's Road, Bedford, Bedfordshire, MK40 2LT Chris Christensen. Copyright © 1986 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","For permission to reproduce this song for non-commercial purposes","","", +"I was once in darkness,","","Joan Parsons. * Copyright © 1978 Kingsway's Thankyou Music.","Joan Parsons","","", +"I will be yours,","","Brian Doerksen. * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen","","", +"I will build my church,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"I will call upon the Lord, who is worthy","","Victor Rubbo. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare. (Men and women in canon)","Victor Rubbo","","", +"I will call upon the Lord,","","Michael O'Shields. * Copyright © 1981 Word Music/ Adm. by CopyCare.","Michael O'Shields","","", +"I will call upon the name of the Lord","","Robert Critchley * Copyright © 2001 Thankyou Music","Robert Critchley","","", +"I will change Your name,","","D. J. Butler. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","D. J. Butler","","", +"I will come and bow down","","Martin J. Nystrom. * Copyright © 1984 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Martin J. Nystrom","","", +"I will come, come, come","","Tim Sherrington * Copyright © 2000 Thankyou Music","Tim Sherrington","","", +"I will cry mercy,","","Steve Bassett & Sue Rinaldi. * Copyright © 1994 Kingsway's Thankyou Music.","Steve Bassett | Sue Rinaldi","","", +"I will dance,","","Matt Redman. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman","","", +"I will enter His gates","","Leona Von Brethorst. * Copyright © 1976 Maranatha! Music/ Adm. by CopyCare.","Leona Von Brethorst","","", +"I will enter Your house","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", +"I will extol the Lord","","Ian White. * Copyright © 1992 Little Misty Music/ Kingsway's Thankyou Music.","Ian White","","", +"I will follow You to the cross","","Sue Rinaldi. * Copyright © 1997 Kingsway's Thankyou Music.","Sue Rinaldi","","", +"I will give thanks to the Lord","","Mark Altrogge. * Copyright © 1988 Integrity's Praise! Music/ People of Destiny Music/Adm. by Kingsway's Thankyou Music.","Mark Altrogge","","", +"I will give thanks to thee,","","Brent Chambers. * Copyright © 1977 Scripture in Song, a division of Integrity Music/ Adm. by Kingsway's Thankyou Music.","Brent Chambers","","", +"I will give You praise,","","Tommy Walker. * Copyright © 1985 Kingsway's Thankyou Music.","Tommy Walker","","", +"I will love You for the cross;","","Matt & Beth Redman * Copyright © 1998 Thankyou Music","Matt Redman | Beth Redman","SOF #1373","", +"I will magnify","","Scott Palazzo. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Scott Palazzo","","", +"I will never be the same","","Ian Hannah * Copyright © 2001 Thankyou Music","Ian Hannah","","", +"I will never be the same,","","Paul Oakley & J.K. Jamieson * Copyright © 1998 Thankyou Music","Paul Oakley | J.K. Jamieson","","", +"I will offer up my life;","","Matt Redman. * Copyright © 1994 Kingsway's Thankyou Music.","Matt Redman","SOF #851","", +"I will praise You all my life;","","Mark Altrogge. * Copyright © 1987 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", +"I will praise You with the harp","","Ian White. * Copyright © 1987 Little Misty Music/ Kingsway's Thankyou Music.","Ian White","","", +"I will praise You,","","Bryn Haworth. * Copyright © 1992 Signalgrade/Kingsway's Thankyou Music.","Bryn Haworth","","", +"I will rejoice, I will rejoice,","","David Fellingham. * Copyright © 1982 Kingsway's Thankyou Music.","David Fellingham","","", +"I will rejoice in You and be glad,","","Author unknown. *","Author unknown","","", +"I will rest in Christ","","Geoff Bullock. * Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","Geoff Bullock","","", +"I will rise and bless You, Lord,","","Diane Fung. * Copyright © 1983 Kingsway's Thankyou Music.","Diane Fung","","", +"I will seek Your face,","","Noel & Tricia Richards. * Copyright © 1990 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"I will sing, I will sing","","Max Dyer. * Copyright © 1974 Celebration/Kingsway's Thankyou Music.","Max Dyer","","", +"I will sing of the Lamb,","","Stuart Townend. * Copyright © 1997 Kingsway's Thankyou Music.","Stuart Townend","","", +"I will sing of the mercies","","J. H. Fillmore. *","J. H. Fillmore","","", +"I will sing the wondrous story","","Francis Rawley (1854–1952). * Words Copyright © 1952 HarperCollins Religious/Adm. by CopyCare.","Francis Rawley (1854–1952)","","", +"I will sing unto the Lord","","Donya Brockway. * Copyright © 1972 His Eye Music/ Multisongs/EMI Christian Music Publ./Adm. by CopyCare.","Donya Brockway","","", +"I will speak out","","Dave Bankhead, Sue Rinaldi, Ray Goudie & * Steve Bassett. Copyright © 1990 Word's Spirit of Praise Music/Adm. by CopyCare.","Dave Bankhead | Sue Rinaldi | Ray Goudie","","", +"I will wait","","Maggi Dawn. * Copyright © 1993 Kingsway's Thankyou Music.","Maggi Dawn","","", +"I will wave my hands","","Ian Smale. * Copyright © 1985 Kingsway's Thankyou Music.","Ian Smale","","", +"I will worship You, Lord,","","Daniel Gardner. * Copyright © 1981 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Daniel Gardner","","", +"I will worship;;","","David Ruis. * Copyright © 1991 Shade Tree Music/ Maranatha! Music/Adm. by CopyCare.","David Ruis","SOF #859","", +"I worship You, Almighty God,","","Sondra Corbett. * Copyright © 1986 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Sondra Corbett","","", +"I worship You, Almighty King,","","Nathan Fellingham, Luke Fellingham * & Louise Hunt. Copyright © 1997 Kingsway's Thankyou Music.","Nathan Fellingham | Luke Fellingham","","", +"I worship You, O Lord,","","Callie Gerbrandt. * Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Callie Gerbrandt","","", +"I would rather be","","Evan Rogers. * Copyright © 1996 Kingsway's Thankyou Music.","Evan Rogers","","", +"If I seek You","","Noel Richards & Wayne Drain * Copyright © 2001 Thankyou Music","Noel Richards | Wayne Drain","","", +"If I were a butterfly,","","Brian Howard. * Copyright © 1974 Mission Hills/ Adm. by Kingsway's Thankyou Music.","Brian Howard","","", +"If it wasn't for Your mercy","","Matt Redman & Tom Lane * Copyright © 2002 Thankyou Music/worshiptogether.com songs/ The Bridge Worx/Adm. by Kingsway Music","Matt Redman | Tom Lane","","", +"If my people, who are called by my name","","Ken Riley * Copyright © 1999 Thankyou Music","Ken Riley","","", +"If my people, who bear My name","","Graham Kendrick. * Copyright © 1987 Make Way Music.","Graham Kendrick","","", +"If we died with Christ","","David Lyle Morris & Faith Forster * Copyright © 2001 Thankyou Music","David Lyle Morris | Faith Forster","","", +"I'm a friend of Jesus Christ,","","Doug Horley. * Copyright © 1991 Kingsway's Thankyou Music.","Doug Horley","","", +"I'm accepted,","","Rob Hayward. * Copyright © 1985 Kingsway's Thankyou Music.","Rob Hayward","","", +"I'm calling out to You,","","Brian Houston * Copyright © 2000 Thankyou Music","Brian Houston","","", +"I'm cradled","","Dave Bilbrough * Copyright © 2002 Thankyou Music","Dave Bilbrough","","", +"I'm crying out,","","Wayne Drain & Noel Richards * Copyright © 1998 Thankyou Music","Wayne Drain | Noel Richards","","", +"I'm drawn a little bit closer","","Geraldine Latty & Noel Robinson * Copyright © 2000 Thankyou Music","Geraldine Latty | Noel Robinson","","", +"I'm forever in Your love,","","Doug Horley * Copyright © 1999 Thankyou Music","Doug Horley","","", +"I'm giving You my heart","","Marc James * Copyright © 2000 Vineyard Songs (UK/Eire)/ Adm. by CopyCare","Marc James","","", +"I'm gonna thank the Lord,","","Dave Bilbrough. * Copyright © 1977 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"I'm gonna trust in God,","","Steve Earl * Copyright © 1998 PDI Worship/Adm. by CopyCare","Steve Earl","","", +"I'm grateful","","Johnny Parks * Copyright © 2001 Thankyou Music","Johnny Parks","","", +"I'm in love with You,","","Danny Daniels. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", +"I'm learning to love You","","Paul Oakley * Copyright © 1998 Thankyou Music","Paul Oakley","","", +"I'm looking up to Jesus,","","Ian Smale. * Copyright © 1982 Kingsway's Thankyou Music.","Ian Smale","","", +"I'm making melody","","Matt Redman * Copyright © 2001 Thankyou Music","Matt Redman","","", +"I'm not alone","","Diane Davis Andrew. * Copyright © 1971, 1975 Celebration/ Kingsway's Thankyou Music.","Diane Davis Andrew","","", +"I'm on my knees","","Dave Bilbrough * Copyright © 2000 Thankyou Music","Dave Bilbrough","","", +"I'm special","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"I'm standing here to testify","","Kevin Prosch. * Copyright © 1992 7th Time Music/Kingsway's Thankyou Music.","Kevin Prosch","","", +"I'm working out what it means","","Jim Bailey * Copyright © 1994 Thankyou Music","Jim Bailey","","", +"Image of invisible God","","Stuart Townend & J.K. Jamieson * Copyright © 2002 Thankyou Music","Stuart Townend | J.K. Jamieson","","", +"Immanuel, O immanuel,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"Immanuel,","","Graham Kendrick. * Copyright © 1979 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Immortal, invisible,","","Walter Chalmers Smith. *","Walter Chalmers Smith","","", +"In awe of You,","","Reuben Morgan * Copyright © 1999 Reuben Morgan/Hillsong Publishing/ Kingsway Music","Reuben Morgan","","", +"In Christ alone;;","","Stuart Townend & Keith Getty * Copyright © 2001 Thankyou Music","Stuart Townend | Keith Getty","SOF #1346","", +"In every circumstance","","David Fellingham. * Copyright © 1994 Kingsway's Thankyou Music.","David Fellingham","","", +"In every day that dawns","","Kate Simmonds & Stuart Townend * Copyright © 2001 Thankyou Music","Kate Simmonds | Stuart Townend","","", +"In God alone","","Jacques Berthier/Taizé. * Copyright © 1995 Ateliers et Presses de Taizé.","Jacques Berthier/Taizé","","", +"In heavenly armour","","Jamie Owens-Collins. * Copyright © 1984 Fairhill Music/ Adm. by CopyCare.","Jamie Owens-Collins","","", +"In heavenly love abiding,","","Anna L. Waring. *","Anna L. Waring","","", +"In Him we live and move","","Randy Speir. * Copyright © 1981 Integrity's Hosanna! Music/Adm. by Kingsway's Thankyou Music.","Randy Speir","","", +"In Majesty He comes,","","David Fellingham. * Copyright © 1990 Kingsway's Thankyou Music.","David Fellingham","","", +"In moments like these","","David Graham. * Copyright © 1980 C A Music/ Music Services/CopyCare.","David Graham","","", +"In my life, Lord,","","Bob Kilpatrick. * Copyright © 1978 Bob Kilpatrick Music/ CopyCare.","Bob Kilpatrick","","", +"In my life proclaim Your glory,","","For permission to reproduce this song for non-commercial purposes, * please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB Geoff Bullock. Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","For permission to reproduce this song for non-commercial purposes","","", +"In my weakness","","Wayne Drain. * Copyright © 1996 Kingsway's Thankyou Music.","Wayne Drain","","", +"In mystery reigning,","","John Pantry. * Copyright © 1990 Kingsway's Thankyou Music.","John Pantry","","", +"In the bleak midwinter,","","Christina G. Rossetti. *","Christina G. Rossetti","","", +"In the Lord","","Jacques Berthier/Taizé. * Copyright © Ateliers et Presses de Taize.","Jacques Berthier/Taizé","","", +"In the name of Jesus,","","For permission to reproduce this song for non-commercial purposes, * please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB Author unknown.","For permission to reproduce this song for non-commercial purposes","","", +"In the presence of Your people","","Brent Chambers. * Copyright © 1977 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Brent Chambers","","", +"In the shadow of the cross,","","Paul Oakley * Copyright © 1999 Thankyou Music","Paul Oakley","","", +"In the tomb so cold","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"In these days of darkness,","","Sue Rinaldi & Steve Bassett. * Copyright © 1994 Kingsway's Thankyou Music.","Sue Rinaldi | Steve Bassett","","", +"In these days of refreshing,","","David Fellingham. * Copyright © 1996 Kingsway's Thankyou Music.","David Fellingham","","", +"In this place we gather","","Stuart Plumb * Copyright © 2001 Thankyou Music","Stuart Plumb","","", +"In this stillness","","Paul Oakley * Copyright © 1999 Thankyou Music","Paul Oakley","","", +"In through the veil","","Bruce Clewett. * Copyright © 1983 Kingsway's Thankyou Music.","Bruce Clewett","","", +"In thy presence","","Mike Kerry. * Copyright © 1982 Kingsway's Thankyou Music.","Mike Kerry","","", +"In You we live","","Graham Kendrick * Copyright © 2002 Make Way Music","Graham Kendrick","","", +"In Your arms of love I sing","","James Gregory * Copyright © 1999 Thankyou Music","James Gregory","","", +"In Your presence there is fullnes","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", +"In Your presence there is joy,","","Libby Huirua * Copyright © 1998 Parachute Music New Zealand/ Adm. by Kingsway Music","Libby Huirua","","", +"Infant Holy,","","Polish traditional carol, tr. Edith M.G. Reed (1885-1933) * Copyright Control","Polish traditional carol | tr. Edith M.G. Reed (1885-1933)","","", +"Into the darkness","","Maggi Dawn. * Copyright © 1993 Kingsway's Thankyou Music.","Maggi Dawn","","", +"Is anyone thirsty,","","Graham Kendrick. * Copyright © 1994 Make Way Music.","Graham Kendrick","","", +"Is it true today","","Martin Smith. * Copyright © 1996 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", +"Isn't He beautiful,","","John Wimber. * Copyright © 1980 Mercy/Vineyard Publishing/Adm. by CopyCare.","John Wimber","","", +"It came upon the midnight clear,","","E. H. Sears. *","E. H. Sears","","", +"It is a thing most wonderful,","","W. W. How. *","W. W. How","","", +"It is good for me","","Tim Blomdahl. * Copyright © 1976 Bible Temple Music/ Music Services/Adm. by CopyCare.","Tim Blomdahl","","", +"It is good to give thanks to the Lord,","","(NB. The above song is not covered by your CCL Licence. * For permission to reproduce this song for non-commercial purposes, please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB.) John L. Bell & Graham Maule. Copyright © 1988 Wild Goose Publications, Iona Community.","(NB. The above song is not covered by your CCL Licence","","", +"It is good, it is good","","Dan Adler * Copyright © 1999 Heart of the City Music/Word Music Inc./Adm. by CopyCare","Dan Adler","","", +"It is no longer I that liveth","","Sally Ellis. * Copyright © 1980 Kingsway's Thankyou Music.","Sally Ellis","","", +"It is the cry of my heart","","(From “Enemy of apathy” Wild Goose Publications 1988) * No permission is required to reproduce this song for non-commercial purposes Terry Butler. Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","(From “Enemy of apathy” Wild Goose Publications 1988)","","", +"It is to You","","Duke Kerr * Copyright © 1995 Remission Music UK/Adm. by Sovereign Music UK","Duke Kerr","","", +"It was on a starry night","","Joy Webb * Copyright © Salvationist Publishing & Supplies Ltd/Adm. by CopyCare","Joy Webb","","", +"It's a happy day,","","Gary Pfeiffer. * Copyright © 1973 Fred Bock Music/ Kingsway's Thankyou Music.","Gary Pfeiffer","","", +"It's a wonderful, wonderful,","","Ian Smale. * Copyright © 1993 Kingsway's Thankyou Music.","Ian Smale","","", +"It's getting clearer,","","Dave Bilbrough. * Copyright © 1995 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"It's rising up","","Matt Redman & Martin Smith. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman | Martin Smith","","", +"It's the presence of Your Spirit, Lord, we need,","","Len Magee. * Copyright © 1977 Len Magee Music.","Len Magee","","", +"It's Your blood","","Michael Christ. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Michael Christ","","", +"I've come to meet with You","","Tim Beck * Copyright © 1999 Thankyou Music","Tim Beck","","", +"I've fallen in love","","Pete Cant. * Copyright © 1997 Kingsway's Thankyou Music.","Pete Cant","","", +"I've filled my days with details","","David Gate * Copyright © 2001 Thankyou Music","David Gate","","", +"I've got a love song in my heart,","","Matt Redman. * Copyright © 1993 Kingsway's Thankyou Music.","Matt Redman","","", +"I've thrown it all away","","Matt Redman * Copyright © 2000 Thankyou Music","Matt Redman","","", +"Jehovah Jireh, my provider,","","Merla Watson. * Copyright © 1974 Tempo Music Publications/Adm. by CopyCare.","Merla Watson","","", +"Jehovah Jireh, God will provide","","lan Smale. * Copyright © 1987 Kingsway's Thankyou Music.","lan Smale","","", +"Jesus, all for Jesus;;","","Jennifer Atkinson & Robin Mark * Copyright © 1991 Authentic Publishing/Adm. by CopyCare","Jennifer Atkinson | Robin Mark","SOF #1376","", +"Jesus, at Your name","","Chris Bowater. * Copyright © 1982 Sovereign Lifestyle Music.","Chris Bowater","","", +"Jesus, be the centre;;","","Michael Frye * Copyright © 1999 Vineyard Songs (UK/Eire)/ Adm. by CopyCare","Michael Frye","SOF #1377","", +"Jesus Christ, Emmanuel","","Martyn Layzell * Copyright © 2001 Thankyou Music","Martyn Layzell","","", +"Jesus Christ, Holy one","","Nathan Fellingham * Copyright © 2002 Thankyou Music","Nathan Fellingham","","", +"Jesus Christ is risen today;","","Lyra Davidica. *","Lyra Davidica","","", +"Jesus Christ is the Lord of all,","","Steve Israel & Gerrit Gustafson. * Copyright © 1988 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Steve Israel | Gerrit Gustafson","","", +"Jesus Christ is waiting","","John L. Bell & Graham Maule * Copyright © 1998 WGRG, Iona Community","John L. Bell | Graham Maule","","", +"Jesus Christ, I think upom your sacrifice;;","","Matt Redman. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman","SOF #865","", +"Jesus Christ, You came","","Noel Richards * Copyright © 2001 Thankyou Music","Noel Richards","","", +"Jesus, draw me ever nearer","","Margaret Becker & Keith Getty * Copyright © 2001 Modern M. Music/Adm. by CopyCare/ & Thankyou Music","Margaret Becker | Keith Getty","","", +"Jesus, forgive me.","","Martin Lore. * Copyright © 1993 Kingsway's Thankyou Music.","Martin Lore","","", +"Jesus, God's righteousness revealed","","Geoff Bullock * Copyright © 1995 Word Music Inc./Maranatha! Music/Adm. by CopyCare","Geoff Bullock","","", +"Jesus has sat down","","Jonathan Wallis. * Copyright © 1983 Kingsway's Thankyou Music.","Jonathan Wallis","","", +"Jesus, high King of heaven,","","Philip Lawson Johnston * Copyright © 1997 Thankyou Music","Philip Lawson Johnston","","", +"Jesus, hope of the nations;","","Brian Doerksen * Copyright © 2002 Integrity's Hosanna! Music/Sovereign Music UK","Brian Doerksen","SOF #1385","", +"Jesus, how lovely You are,","","Dave Bolton. * Copyright © 1975 Kingsway's Thankyou Music.","Dave Bolton","","", +"Jesus, I am thirsty,","","Don Harris & Martin J Nystrom. * Copyright © 1993 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Don Harris | Martin J Nystrom","","", +"Jesus, I love You; I bow down before You","","Jude Del Hierro. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Jude Del Hierro","","", +"Jesus, I love You, I worship and adore You","","Judith Butler & Paul Hemingway. * Copyright © 1996 Kingdom Faith Ministries.","Judith Butler | Paul Hemingway","","", +"Jesus, I worship You,","","Chris Bowater. * Copyright © 1982 Sovereign Lifestyle Music.","Chris Bowater","","", +"Jesus is exalted","","Alan Rose * Copyright © 1999 Thankyou Music","Alan Rose","","", +"Jesus is King","","Wendy Churchill. * Copyright © 1982 Word's Spirit of Praise Music/Adm. by CopyCare.","Wendy Churchill","","", +"Jesus is Lord! Creation's voice","","David J. Mansell. * Copyright © 1982 Word's Spirit of Praise Music/Adm. by CopyCare.","David J. Mansell","","", +"Jesus is Lord of all,","","Marilyn Baker. * Copyright © 1986 Word's Spirit of Praise Music/Adm. by CopyCare.","Marilyn Baker","","", +"Jesus is lord - the cry that echoes","","Stuart Townend & Keith Getty * Copyright © 2003 Thankyou Music","Stuart Townend | Keith Getty","","", +"Jesus is the name we honour;","","Phil Lawson Johnston. * Copyright © 1991 Kingsway's Thankyou Music.","Phil Lawson Johnston","","", +"Jesus, Jesus, healer, Saviour,","","David Fellingham * Copyright © 1998 Thankyou Music","David Fellingham","","", +"Jesus, Jesus, Jesus, how I love Your name","","Dave Bilbrough * Copyright © 2000 Thankyou Music","Dave Bilbrough","","", +"Jesus, Jesus, Jesus, Your love has melted","","Copyright © 1979 Sovereign Music UK. *","Copyright © 1979 Sovereign Music UK","","", +"Jesus, Jesus, Holy and anointed One;;","","John Barnett. * Copyright © 1988 Mercy/Vineyard Publishing/Adm. by CopyCare.","John Barnett","SOF #293","", +"Jesus, Jesus, Son of God","","Bryn Haworth. * Copyright © 1993 Kingsway's Thankyou Music.","Bryn Haworth","","", +"Jesus, King of kings,","","Chris Rolinson. * Copyright © 1988 Kingsway's Thankyou Music.","Chris Rolinson","","", +"Jesus, King of the ages,","","David Lyle Morris & Faith Forster * Copyright © 2000 Thankyou Music","David Lyle Morris | Faith Forster","","", +"Jesus, Lamb of God,","","Alan Rose. * Copyright © 1997 Kingsway's Thankyou Music.","Alan Rose","","", +"Jesus lives! thy terrors now","","Christian F. Gellert. * Tr. Frances E. Cox.","Christian F. Gellert","","", +"Jesus loves the church,","","Mike Sandeman * Copyright © 1999 Thankyou Music","Mike Sandeman","","", +"Jesus, melt my cold heart","","Caroline Bonnett & Steve Bassett * Copyright © 2001 Thankyou Music","Caroline Bonnett | Steve Bassett","","", +"Jesus, my desire","","Martyn Layzell * Copyright © 2001 Thankyou Music","Martyn Layzell","","", +"Jesus, my passion","","Vicky Beeching * Copyright © 2001 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Vicky Beeching","","", +"Jesus, name above all names, Beautiful Saviour;","","Naida Hearn. * Copyright © 1974 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Naida Hearn","SOF #298","", +"Jesus, name above all names, my soul cries","","Owen Hurter * Copyright © 2000 Thankyou Music","Owen Hurter","","", +"Jesus put this song into ourhearts,","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Jesus, Redeemer","","Tim Hughes * Copyright © 2001 Thankyou Music","Tim Hughes","","", +"Jesus, remember me","","Jacques Berthier/Taizé. * Copyright © 1978 Ateliers et Presses de Taize.","Jacques Berthier/Taizé","","", +"Jesus, restore to us again","","For permission to reproduce this song for non-commercial purposes, * please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB Graham Kendrick. Copyright © 1992 Make Way Music.","For permission to reproduce this song for non-commercial purposes","","", +"Jesus, send more labourers,","","Chris Rolinson. * Copyright © 1988 Kingsway's Thankyou Music.","Chris Rolinson","","", +"Jesus shall reign","","Isaac Watts. *","Isaac Watts","","", +"Jesus shall take the highest honour,","","Chris Bowater. * Copyright © 1988 Sovereign Lifestyle Music.","Chris Bowater","","", +"Jesus, stand among us at the meeting of our lives","","Graham Kendrick. * Copyright © 1977 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Jesus, stand among us,in thy risen power,","","William Pennefather. *","William Pennefather","","", +"Jesus take me as I am,","","Dave Bryant. * Copyright © 1978 Kingsway's Thankyou Music.","Dave Bryant","","", +"Jesus taught us how to pray","","James Gregory * Copyright © 2000 Thankyou Music","James Gregory","","", +"Jesus, the name above all names,","","Hilary Davies. * Copyright © 1988 Samsongs/Coronation Music/Kingsway's Thankyou Music.","Hilary Davies","","", +"Jesus! the name high over all,","","Charles Wesley. *","Charles Wesley","","", +"Jesus, the very thought of thee","","St Bernard of Clairvaux. * Tr. Edward Caswall.","St Bernard of Clairvaux","","", +"Jesus, we celebrate Your victory:","","John Gibson. * Copyright © 1987 Kingsway's Thankyou Music.","John Gibson","","", +"Jesus, we enthrone You;","","Paul Kyle. * Copyright © 1980 Kingsway's Thankyou Music.","Paul Kyle","SOF #310","", +"Jesus, what a beautiful name.","","Tanya Riches. * Copyright © 1995 Tanya Riches/Hillsongs Australia/Kingsway's Thankyou Music.","Tanya Riches","","", +"Jesus, You alone","","Tim Hughes * Copyright © 1999 Thankyou Music","Tim Hughes","","", +"Jesus, You are changing me,","","Marilyn Baker. * Copyright © 1981 Word's Spirit of Praise Music/Adm. by CopyCare.","Marilyn Baker","","", +"Jesus, You are so precious","","Nathan Fellingham * Copyright © 1999 Thankyou Music","Nathan Fellingham","","", +"Jesus, You are the radiance","","David Fellingham. * Copyright © 1985 Kingsway's Thankyou Music.","David Fellingham","","", +"Jesus, Your beauty","","Sue Rinaldi & Caroline Bonnett * Copyright © 1998 Thankyou Music","Sue Rinaldi | Caroline Bonnett","","", +"Jesus, You're all I need,","","Darlene Zschech * Copyright © 1997 Darlene Zschech/Hillsong Publishing/ Kingsway Music","Darlene Zschech","","", +"Jesus, lover of my soul, I will never","","J. Ezzy, D. Grul, S. McPherson. * Copyright © 1992 Ezzy, Grul, McPherson/ Hillsongs Australia/Kingsway's Thankyou Music.","J. Ezzy | D. Grul | S. McPherson","","", +"Jesus, lover of my soul, let me to thy bosom","","Charles Wesley. *","Charles Wesley","","", +"Jesus, lover of my soul, all consuming fire","","Paul Oakley. * Copyright © 1995 Kingsway's Thankyou Music.","Paul Oakley","","", +"Jesus,","","Andy Thorpe. * Copyright © 1993 Kingsway's Thankyou Music.","Andy Thorpe","","", +"Join all the glorious names","","Isaac Watts. *","Isaac Watts","","", +"Joy has dawned upon the world","","","Author Unknown","","", +"Joy to the world!","","Isaac Watts. *","Isaac Watts","","", +"Jubilate, everybody,","","Fred Dunn. * Copyright © 1977, 1980 Kingsway's Thankyou Music.","Fred Dunn","","", +"Just as I am,","","Charlotte Elliot. *","Charlotte Elliot","","", +"Just like You promised,","","Patty Kennedy. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare.","Patty Kennedy","","", +"Just the mention of Your name","","Chris Bowater. * Copyright © 1991 Sovereign Lifestyle Music.","Chris Bowater","","", +"King forever,","","Jane Norton. * Copyright © 1986 Kingsway's Thankyou Music.","Jane Norton","","", +"King Jesus, I believe","","Martyn Layzell * Copyright © 2000 Thankyou Music","Martyn Layzell","","", +"King of history","","David Gate * Copyright © 2001 Thankyou Music","David Gate","","", +"King of kings, Majesty;","","Jarrod Cooper * Copyright © 1996 Sovereign Lifestyle Music","Jarrod Cooper","SOF #1404","", +"King of kings, Lord of Lords","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"King of love and grace (Guardian);","","Song/ATV Music Publishing LLC","Stuart Garrard | Ben Cantelon and Nick Herbert","SH13 #41","", +"King of love","","Doug Horley * Copyright © 1999 Thankyou Music","Doug Horley","","", +"King of our lives","","David Lyle Morris & Nick Wynne-Jones * Copyright © 2001 Thankyou Music","David Lyle Morris | Nick Wynne-Jones","","", +"King of the ages","","Stuart Townend & Keith Getty * Copyright © 2002 Thankyou Music","Stuart Townend | Keith Getty","","", +"Knowing Your grace","","Terry Virgo & Stuart Townend * Copyright © 2001 Thankyou Music","Terry Virgo | Stuart Townend","","", +"Kyrie, kyrie eleison","","Taizé, music: Jacques Berthier (1923-94) * Copyright © Ateliers et Presses de Taizé","Taizé | music: Jacques Berthier (1923-94)","","", +"Lamb of God,","","Chris Bowater. * Copyright © 1988 Sovereign Lifestyle Music.","Chris Bowater","","", +"Lamp unto my feet,","","Darlene Zschech * Copyright © 1999 Darlene Zschech/Hillsong Publishing/ Kingsway Music","Darlene Zschech","","", +"Laying aside everything","","David Fellingham * Copyright © 2000 Thankyou Music","David Fellingham","","", +"Lead us, heavenly Father, lead us","","James Edmeston, altd. *","James Edmeston | altd","","", +"Lead us, heavenly Father,","","James Edmeston (1791-1867) * In this version Copyright © Jubilate Hymns Ltd","James Edmeston (1791-1867)","","", +"Led like a Lamb","","Graham Kendrick. * Copyright © 1983 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Let all mortal flesh","","Liturgy of St James, c.4th cent. * Tr. Gerard Moultrie (1829-85)","Liturgy of St James | c.4th cent","","", +"Let all the world","","George Herbert. *","George Herbert","","", +"Let every tribe and every tongue","","Debbye Graafsma. * Copyright © 1992 WordPsalm Ministries Inc./ Kingsway's Thankyou Music.","Debbye Graafsma","","", +"Let everything that,","","Matt Redman. * Copyright © 1997 Kingsway's Thankyou Music.","Matt Redman","","", +"Let God arise","","Graham Kendrick. * Copyright © 1984 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Let God speak","","lan Smale. * Copyright © 1982 Kingsway's Thankyou Music.","lan Smale","","", +"Let me have my way among You,","","Graham Kendrick. * Copyright © 1977 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Let our praise to You be as incense,","","Brent Chambers. * Copyright © 1979 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Brent Chambers","","", +"Let praises ring,","","Mike & Claire McIntosh. * Copyright © 1982 Mike and Claire McIntosh.","Mike McIntosh | Claire McIntosh","","", +"Let the chimes of freedom ring","","Dave Bilbrough. * Copyright © 1997 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Let the church arise,","","Phil Wilthew. * Copyright © 1996 Kingsway's Thankyou Music.","Phil Wilthew","","", +"Let the poor man say, I am rich in Him;","","Darrell Patton Evans * Copyright © 1995 Mercy/Vineyard Publishing/Adm. by CopyCare","Darrell Patton Evans","","", +"Let the righteous sing,","","Bryn Haworth. * Copyright © 1991 Kingsway's Thankyou Music.","Bryn Haworth","","", +"Let the weak say I am strong,","","Reuben Morgan * Copyright © 1998 Reuben Morgan/Hillsong Publishing/ Kingsway Music","Reuben Morgan","SOF #1416","", +"Let there be glory and honour","","James & Elizabeth Greenelsh. * Copyright © Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music 1978. (1st part)","James Greenelsh | Elizabeth Greenelsh","","", +"Let there be joy","","Bruce Napier * Copyright © 1998 Bruce Napier","Bruce Napier","","", +"Let there be love","","Dave Bilbrough. * Copyright © 1979 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Let us break bread together, we are one.","","Author unknown. *","Author unknown","","", +"Let us draw near with confidence,","","Mark Altrogge. * Copyright © People of Destiny Int./Word Music/ Adm. by CopyCare.","Mark Altrogge","","", +"Let us draw near","","David Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham","","", +"Let us go to the house of the Lord.","","lan White. * Copyright © 1985 Little Misty Music/ Kingsway's Thankyou Music.","lan White","","", +"Let us go up to the house of God","","Paul Oakley. * Copyright © 1994 Kingsway's Thankyou Music.","Paul Oakley","","", +"Let us praise His name with dancing","","Pale Sauni. * Copyright © 1983 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Pale Sauni","","", +"Let us run with perseverance","","David Lyle Morris * Copyright © 2000 Thankyou Music","David Lyle Morris","","", +"Let us with a gladsome mind","","John Milton. *","John Milton","","", +"Let Your living water flow","","John Watson. * Copyright © 1986 Ampelos Music/ Adm. by CopyCare.","John Watson","","", +"Let Your love come down.","","Noel & Tricia Richards. * Copyright © 1996 Kingsway's Thankyou Music. Oh . . . Oh . . . Oh . . .","Noel Richards | Tricia Richards","","", +"Let Your word","","David & Nathan Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham | Nathan Fellingham","","", +"Lift high the cross.in majesty","","Graham Kendrick. * Copyright © 1989 Make Way Music.","Graham Kendrick","","", +"Lift high the cross the love of Christ","","G.W. Kitchin (1827-1912) & M.R. Newbolt (1874-1956) * Copyright © Hymns Ancient & Modern Ltd","G.W. Kitchin (1827-1912) | M.R. Newbolt (1874-1956)","","", +"Lift Him up,","","Dave Bilbrough. * Copyright © 1994 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Lift up Your heads, O ye gates,","","Terry Manship. * Copyright © 1986 Kingsway's Thankyou Music.","Terry Manship","","", +"Lift up Your heads to the coming King","","Steven Fry. * Copyright © 1974 BMG Songs Inc/ Birdwing Music/EMI Christian Music Publishing/ Adm. by CopyCare.","Steven Fry","","", +"Lift up Your heads, O ye gates","","Graham Kendrick. * Copyright © 1991 Make Way Music.","Graham Kendrick","","", +"Light a flame","","Mick Gisbey. * Copyright © 1987 Kingsway's Thankyou Music.","Mick Gisbey","","", +"Light has dawned","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"Light of the world you stepped down","","Tim Hughes * Copyright © 2000 Thankyou Music","Tim Hughes","","", +"Light of the world, shine your light","","Craig Musseau. * Copyright © 1990 Mercy/Vineyard Publishing/Adm. by CopyCare.","Craig Musseau","","", +"Lighten our darkness,","","Copyright © 1980 Central Board of Finance * of the Church of England. Used by permission.","Copyright © 1980 Central Board of Finance","","", +"Like a candle flame,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"Like a fragrant oil","","Paul Oakley * Copyright © 2001 Thankyou Music","Paul Oakley","","", +"Like a gentle breeze,","","Maggi Dawn. * Copyright © 1991 Kingsway's Thankyou Music.","Maggi Dawn","","", +"Like a river glorious","","Frances Ridley Havergal. *","Frances Ridley Havergal","","", +"Like the sunshine","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","","", +"Lion of Judah","","Ted Sandquist. * Copyright © 1976 Lion of Judah Music/ John T. Benson Music Publishing Co/ Adm. by CopyCare.","Ted Sandquist","","", +"Living under the shadow of His wing","","David J. Hadden & Bob Silvester. * Copyright © 1983 Restoration Music Ltd./ Adm. by Sovereign Music UK.","David J. Hadden | Bob Silvester","","", +"Lo, He comes with clouds descending,","","Charles Wesley. *","Charles Wesley","","", +"Look and see the glory of the King,","","Martin Ball. * Copyright © 1982 Integrity's Hosanna! Music/Restoration Music Ltd/ Adm. in Europe by Sovereign Music UK.","Martin Ball","","", +"Look to the skies","","Graham Kendrick * Copyright © 1984 Thankyou Music","Graham Kendrick","","", +"Look, ye saints, the sight isglorious;","","Thomas Kelly. *","Thomas Kelly","","", +"Looking in the sky;","","Thankyou music","Nathan Fellingham | Paul Oaklet","SH09 #53","", +"Lord and Father, King for ever,","","Noel Richards. * Copyright © 1982 Kingsway's Thankyou Music.","Noel Richards","","", +"Lord, come and heal Your church,","","Chris Rolinson. * Copyright © 1988 Kingsway's Thankyou Music.","Chris Rolinson","","", +"Lord, enthroned in heavenly splendour,","","G. H. Bourne. *","G. H. Bourne","","", +"Lord, for the years","","Timothy Dudley-Smith. * Copyright © 1967 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", +"Lord God, heavenly King,","","Susan Hutchinson. * Copyright © 1979 Word's Spirit of Praise Music/Adm. by CopyCare.","Susan Hutchinson","","", +"Lord have mercy","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Lord, have mercy,","","Dave Bilbrough. * Copyright © 1995 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Lord, hear the music of my heart","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", +"Lord how majestic You are,","","Stuart Townend. * Copyright © 1990 Kingsway's Thankyou Music.","Stuart Townend","","", +"Lord, I am not my own,","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", +"Lord, I come before Your throne of grace;","","Robert & Dawn Critchley. * Copyright © 1989 Kingsway's Thankyou Music.","Robert Critchley | Dawn Critchley","","", +"Lord, I come to You, let my heart be change","","Geoff Bullock. * Copyright © 1992 Word Music/Adm. by CopyCare.","Geoff Bullock","","", +"Lord, I come to You, broken and lost","","Colse Leung * Copyright © 2001 Thankyou Music","Colse Leung","","", +"Lord, I come, longing to know you","","Geraldine Latty * Copyright © 2000 Thankyou Music","Geraldine Latty","","", +"Lord, I have heard of Your fame,","","Brian Doerksen. * Copyright © 1992 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen","","", +"Lord, I lift Your name on high;","","Rick Founds. * Copyright © 1989 Maranatha! Music/Adm. by CopyCare.","Rick Founds","SOF #897","", +"Lord, I long to see You glorified","","Stephen McPherson. * Copyright © 1996 Stephen McPherson/ Hillsongs Australia/Kingsway's Thankyou Music.","Stephen McPherson","","", +"Lord, I want to tell You","","Marilyn Baker * Copyright © 1998 Marilyn Baker Music/Kingsway Music","Marilyn Baker","","", +"Lord, I will celebrate Your love,","","Dave Bilbrough. * Copyright © 1987 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Lord, I'm grateful","","Stuart Townend & Fred Heumann * Copyright © 2002 Thankyou Music","Stuart Townend | Fred Heumann","","", +"Lord Jesus Christ,","","Patrick Appleford. * Copyright © 1960 Josef Weinberger Ltd.","Patrick Appleford","","", +"Lord Jesus, here I stand","","Rae Ranford. * Copyright © 1990 Kingsway's Thankyou Music.","Rae Ranford","","", +"Lord Jesus, robed in splendour,","","Philip Lawson Johnston * Copyright © 1997 Thankyou Music","Philip Lawson Johnston","","", +"Lord, keep my heart tender,","","Jesus Fellowship Church. * Copyright © 1990 Jesus Fellowship Church/ Adm. by CopyCare.","Jesus Fellowship Church","","", +"Lord, let Your glory fall","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", +"Lord, look upon my need,","","Rick Founds. * Copyright © 1989 Maranatha! Music/Adm. by CopyCare.","Rick Founds","","", +"Lord make me an instrument,","","Robert Bicknell. * Copyright © 1977 ZionSong Music/ Adm. by CopyCare.","Robert Bicknell","","", +"Lord, my heart cries out,","","Darlene Zschech. * Copyright © 1997 Darlene Zschech/Hillsongs Australia/Kingsway's Thankyou Music.","Darlene Zschech","","", +"Lord, my request","","Mark Baldry * Copyright © 1999 Thankyou Music","Mark Baldry","","", +"Lord of all creation,","","Joe King. * Copyright © 1990 Kingsway's Thankyou Music.","Joe King","","", +"Lord of all hopefulness,","","Jan Struther. * Copyright © Oxford University Press","Jan Struther","","", +"Lord of every heart","","Stuart Townend * Copyright © 2001 Thankyou Music","Stuart Townend","","", +"Lord of lords,","","Jessy Dixon/Randy Scruggs/John Thompson. * Copyright © 1983 Whole Armor Publishing/ Full Armor Publishing/Songs for Today/Windswept Pacific Music Limited.","Jessy Dixon/Randy Scruggs/John Thompson","","", +"Lord of the church, we pray for our renewing","","Timothy Dudley-Smith * Copyright © Timothy Dudley-Smith","Timothy Dudley-Smith","","", +"Lord of the church, You hold us in Your hand","","David Lyle Morris & Nick Wynne-Jones * Copyright © 2001 Thankyou Music","David Lyle Morris | Nick Wynne-Jones","","", +"Lord of the dance,","","Kevin Prosch. * Copyright © 1995 7th Time Music/Kingsway's Thankyou Music.","Kevin Prosch","","", +"Lord of the heavens,","","Shaun & Mel Griffiths * Copyright © 1998 Parachute Music New Zealand/ Adm. by Kingsway Music","Shaun Griffiths | Mel Griffiths","","", +"Lord, pour out Your Spirit","","Ray Goudie, Dave Bankhead & Steve Bassett. * Copyright © 1993 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Ray Goudie | Dave Bankhead | Steve Bassett","","", +"Lord, the light of Your love;","Shine Jesus Shine;","Graham Kendrick. * Copyright © 1987 Make Way Music.","Graham Kendrick","SOF #362","", +"Lord, to love You more","","James & Hayley Gregory * Copyright © 2000 Thankyou Music","James Gregory | Hayley Gregory","","", +"Lord, we come in adoration,","","Dave Bilbrough. * Copyright © 1993 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Lord we come in Your name","","Graham Kendrick. * Copyright © 1991 Make Way Music.","Graham Kendrick","","", +"Lord, we cry to You:","","David Fellingham. * Copyright © 1994 Kingsway's Thankyou Music.","David Fellingham","","", +"Lord, we give You praise;","","Mick Ray. * Copyright © 1987 Kingsway's Thankyou Music.","Mick Ray","","", +"Lord, we long for You","","Trish Morgan, Ray Goudie, * lan Townend, Dave Bankhead. Copyright © 1986 Kingsway's Thankyou Music.","Trish Morgan | Ray Goudie","","", +"Lord, we long to see Your glory, Gaze upon","","Richard Lewis. * Copyright © 1997 Kingsway's Thankyou Music.","Richard Lewis","","", +"Lord, we long to see Your glory, Lord we long to feel","","Nathan Fellingham. * Copyright © 1996 Kingsway's Thankyou Music.","Nathan Fellingham","","", +"Lord, we thank You for the promise","","Martin E. Leckebusch * Copyright © 1999 Kevin Mayhew Ltd","Martin E. Leckebusch","","", +"Lord, we worship You,","","Dave Bilbrough. * Copyright © 1984 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Lord, we've come to worship You,","","Ian Smale. * Copyright © 1981 Kingsway's Thankyou Music.","Ian Smale","","", +"Lord, when I think of You","","Ken Riley * Copyright © 2001 Thankyou Music","Ken Riley","","", +"Lord, You are calling","","Simon and Lorraine Fenner. * Copyright © 1989 Kingsway's Thankyou Music.","Simon and Lorraine Fenner","","", +"Lord, You are more precious","","Lynn DeShazo. * Copyright © 1985 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Lynn DeShazo","","", +"Lord, You are my righteousness","","Andrew Rogers * Copyright © 2001 Thankyou Music","Andrew Rogers","","", +"Lord, You are so precious to me,","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Lord, You are the author of my life,","","Judy Pruett. * Copyright © 1985 Kingsway's Thankyou Music.","Judy Pruett","","", +"Lord, You are worthy,","","David Baroni. * Copyright © 1992 Pleasant Hill Music/John T. Benson Publishing Co/Adm. by CopyCare.","David Baroni","","", +"Lord, You have my heart;","","Martin Smith. * Copyright © 1992 Kingsway's Thankyou Music.","Martin Smith","SOF #912","", +"Lord, You put a tongue in my mouth","","lan Smale. * Copyright © 1983 Kingsway's Thankyou Music.","lan Smale","","", +"Lord, You see me","","John Hartley & Gary Sadler * Copyright © 2000 worshiptogether.com songs/Adm. by Kingsway Music/& Integrity's Hosanna! Music/Sovereign Music UK","John Hartley | Gary Sadler","","", +"Lord, Your glory fills my heart,","","Craig Musseau. * Copyright © 1990 Mercy/Vineyard Publishing/Adm. by CopyCare.","Craig Musseau","","", +"Lord, Your name is Holy,","","Tom Shirey. * Copyright © 1987 Mercy Publishing/ Kingsway's Thankyou Music.","Tom Shirey","","", +"Lord, Your name is wonderful,","","Barry Taylor. * Copyright © 1990 Kingsway's Thankyou Music.","Barry Taylor","","", +"Lord, You're faithful and just,","","Don Moen. * Copyright © 1986 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Don Moen","","", +"Lord, you've been good to me","","Graham Kendrick * Copyright © 2001 Make Way Music","Graham Kendrick","","", +"Lost in the shuffle,","","Wayne Drain. * Copyright © 1996 Kingsway's Thankyou Music.","Wayne Drain","","", +"Love beyond measure,","","Dave Bilbrough. * Copyright © 1984 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Love came down at christmas,","","Christina Rossetti (1830–94). *","Christina Rossetti (1830–94)","","", +"Love divine,","","Charles Wesley. *","Charles Wesley","","", +"Love is patient,","","Stuart Townend * Copyright © 2000 Thankyou Music","Stuart Townend","","", +"Love, joy, peace","","David Lyle Morris * Copyright © 2000 Thankyou Music","David Lyle Morris","","", +"Love like a jewel","","Steve Bassett & Sue Rinaldi * Copyright © 2002 Thankyou Music","Steve Bassett | Sue Rinaldi","","", +"Love songs from heaven","","Noel & Tricia Richards. * Copyright © 1996 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"Low in the grave He lay;","","Robert Lowry. *","Robert Lowry","SOF #378","", +"Magnificat,","","Taizé, music: Jacques Berthier (1923-94) * Copyright © Ateliers et Presses de Taizé","Taizé | music: Jacques Berthier (1923-94)","","", +"Magnificent warrior","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Majesty,","","Jack W. Hayford. * Copyright © 1976 Rocksmith Music/ Leosong Copyright Service.","Jack W. Hayford","","", +"Make a joyful melody,","","Dave Bilbrough. * Copyright © 1988 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Make me a channel of Your peace.","","Sebastian Temple. * Copyright © 1967 Sebastian Temple/ OCP Publications/Adm. by Calamus.","Sebastian Temple","","", +"Make me, Lord, a dreamer","","For permission to reproduce this song for non-commercial purposes, * please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB Chris Bowater. Copyright © 1983 Sovereign Lifestyle Music.","For permission to reproduce this song for non-commercial purposes","","", +"Make us a house of prayer,","","Daniel Brymer. * Copyright © 1990 Grace! Music.","Daniel Brymer","","", +"Make us one, Lord,","","Maldwyn Pope. * Copyright © 1988 Samsongs/Coronation Music/ Kingsway's Thankyou Music.","Maldwyn Pope","","", +"Make way,","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Makes You wanna dance,","","Russell Fragar. * Copyright © 1993 Russell Fragar/Hillsongs Australia/Kingsway's Thankyou Music.","Russell Fragar","","", +"Man of sorrows!","","Philipp Bliss. *","Philipp Bliss","","", +"Many are the words we speak,","","Matt Redman * Copyright © 1997 Thankyou Music","Matt Redman","","", +"Mary's Boy Child","","Sony/ATV Music Publishing LLC, BOURNE CO","Frank Farian | Fred Jay | Jester Hairstone","","", +"Master, speak! thy servant heareth,","","Frances Ridley Havergal. *","Frances Ridley Havergal","","", +"May God be gracious to us","","Ian White. * Copyright © 1987 Little Misty Music/Kingsway's Thankyou Music.","Ian White","","", +"May I sing a song of love","","David Gate. * Copyright © 1997 Kingsway's Thankyou Music.","David Gate","","", +"May my eyes see more of You,","","Doug Horley * Copyright © 1999 Thankyou Music","Doug Horley","","", +"May my life","","Dave Bilbrough. * Copyright © 1990 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"May our worship be as fragrance,","","Chris Bowater. * Copyright © 1992 Sovereign Lifestyle Music.","Chris Bowater","","", +"May the fragrance","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"May the mind of Christ my Saviour","","Kate B. Wilkinson (1859-1928) *","Kate B. Wilkinson (1859-1928)","","", +"May the words of my mouth","","Tim Hughes & Rob Hill * Copyright © 2000 Thankyou Music","Tim Hughes | Rob Hill","","", +"May we be a shining light","","Chris Christensen. * Copyright © 1986 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Chris Christensen","","", +"Meekness and Majesty,","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Men of faith, rise up and sing;","Shout to the north;","Martin Smith. * Copyright © 1995 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","SOF #921","", +"Merciful God and Father,","","John Chisum & Gary Sadler. * Copyright © 1994 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","John Chisum | Gary Sadler","","", +"Merciful Lord","","S. Monteiro, English: Word & Music * Copyright © S. Monteiro / Copyright Control English words © 1995 Word & Music/Jubilate Hymns Ltd","S. Monteiro | English: Word | Music","","", +"Mercy, mercy, Lord","","Lynn DeShazo & Gary Sadler * Copyright © 1997 Integrity's Hosanna! Music/Sovereign Music UK","Lynn DeShazo | Gary Sadler","","", +"Mighty God, everlasting Father","","Chris Bowater and Mark & Helen Johnson. * Copyright © 1991 Sovereign Lifestyle Music.","Chris Bowater and Mark | Helen Johnson","","", +"Mighty God, gracious King","","Maggi Dawn. * Copyright © 1987 Kingsway's Thankyou Music.","Maggi Dawn","","", +"Mighty is our God,","","Eugene Greco, Gerrit Gustafson, Don Moen * Copyright © 1989 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Eugene Greco | Gerrit Gustafson | Don Moen","","", +"Mighty is the Lord","","A. P. Douglas. * Copyright © 1997 Kingsway's Thankyou Music.","A. P. Douglas","","", +"Mighty, mighty Lord.","","Carol Owen. * Copyright © 1994 Kingsway's Thankyou Music.","Carol Owen","","", +"More love more power","","Jude Del Hierro. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Jude Del Hierro","","", +"More than I could hope or dream of,","","Reuben Morgan * Copyright © 1999 Reuben Morgan/Hillsong Publishing/ Kingsway Music","Reuben Morgan","","", +"More than oxygen,","","Brian Doerksen. * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen","","", +"Morning has broken","","Eleanor Farjeon. * Copyright © David Higham Associates Ltd.","Eleanor Farjeon","","", +"Most Holy judge,","","Steve & Vikki Cook. * Copyright © 1991 People of Destiny International/Word Music/Adm. by CopyCare.","Steve Cook | Vikki Cook","","", +"Move Holy Spirit,","","For permission to reproduce this song for non-commercial purposes, * please contact David Higham Associates, 5-8 Lower John Street, Golden Square, London, W1R 3PE Patricia Morgan. Copyright © 1984 Kingsway's Thankyou Music.","For permission to reproduce this song for non-commercial purposes","","", +"Mukti dilaye","","Author unknown. *","Author unknown","","", +"My first love","","Stuart Townend. * Copyright © 1996 Kingsway's Thankyou Music.","Stuart Townend","","", +"My friend and King,","","James Taylor * Copyright © 1997 Thankyou Music","James Taylor","","", +"My God, how wonderful thou art,","","Frederick W. Faber. *","Frederick W. Faber","","", +"My God is a rock","","Kate Simmonds & Mark Edwards * Copyright © 2002 Thankyou Music","Kate Simmonds | Mark Edwards","","", +"My God is so big","","Author unknown * Copyright control","Author unknown","","", +"My God shall supply all my needs,","","Ian Smale. * Copyright © 1993 Kingsway's Thankyou Music.","Ian Smale","","", +"My heart is captivated, Lord","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", +"My heart is filled with thankfulness","","© 2003 Thankyou Music","Keith Getty and Stuart Townend","","", +"My heart is full","","Graham Kendrick. * Copyright © 1991 Make Way Music.","Graham Kendrick","","", +"My heart is not raised up too high,","","Maggi Dawn. * Copyright © 1996 Kingsway's Thankyou Music.","Maggi Dawn","","", +"My heart, I want to give","","Chris Williams. * Copyright © 1993 Kingsway's Thankyou Music.","Chris Williams","","", +"My hope is in the Lord","","Robin Mark * Copyright © 2000 Thankyou Music","Robin Mark","","", +"My hope rests firm","","Keith Getty & Richard Creighton * Copyright © 2001 Thankyou Music","Keith Getty | Richard Creighton","","", +"My Jesus, my lifeline,","","Tim Hughes. * Copyright © 1997 Kingsway's Thankyou Music.","Tim Hughes","","", +"My Jesus, my Saviour;","","Darlene Zschech. * Copyright © 1993 Darlene Zschech/Hillsongs Australia/Kingsway's Thankyou Music.","Darlene Zschech","SOF #935","", +"My life is in You, Lord,","","Daniel Gardner. * Copyright © 1986 Integrity's Hosanna! Music/ Adm. Kingsway's Thankyou Music.","Daniel Gardner","","", +"My lips shall praise You,","","Noel & Tricia Richards. * Copyright © 1991 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"My Lord, He is the fairest of the fair,","","Joan Parsons. * Copyright © 1978 Kingsway's Thankyou Music.","Joan Parsons","","", +"My Lord, what love is this","","Graham Kendrick. * Copyright © 1989 Make Way Music.","Graham Kendrick","","", +"My peace I give unto you","","Keith Routledge. * Copyright © 1975 Sovereign Music UK.","Keith Routledge","","", +"My song is love unknown,","","Samuel Crossman. *","Samuel Crossman","","", +"My soul longs for You,","","David Fellingham. * Copyright © 1988 Kingsway's Thankyou Music.","David Fellingham","","", +"My troubled soul","","Robert Critchley * Copyright © 2001 Thankyou Music","Robert Critchley","","", +"My trust is in the name of the Lord","","Laurie Jasurda. * Copyright © 1990 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Laurie Jasurda","","", +"Name above all names","","Neil Bennetts * Copyright © 2000 Daybreak Music Ltd","Neil Bennetts","","", +"Name of all Majesty,","","Timothy Dudley-Smith. * Copyright © 1979 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", +"Nearer, my God, to thee,","","Sarah Flower Adams. *","Sarah Flower Adams","","", +"Never let my heart grow cold.","","Chris Roe. * Copyright © 1990 Kingsway's Thankyou Music.","Chris Roe","","", +"New covenant people","","David Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham","","", +"No eye has seen, no ear has heard,","","Paul & Rita Baloche & Ed Kerr. * Copyright © 1992 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Paul Baloche | Rita Baloche | Ed Kerr","","", +"No eye has seen,","","Mark Altrogge. * Copyright © 1990 Integrity's Hosanna! Music/ People of Destiny Int./Adm. by Kingsway's Thankyou Music.","Mark Altrogge","","", +"No longer just servants","","Matt Redman * Copyright © 1993 Thankyou Music","Matt Redman","","", +"No one is like You, O Lord;","","Carol Owen. * Copyright © 1994 Kingsway's Thankyou Music.","Carol Owen","","", +"No other name","","Robert Gay. * Copyright © 1988 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Robert Gay","","", +"No scenes of stately Majesty","","Graham Kendrick * Copyright © 1997 Make Way Music","Graham Kendrick","","", +"No weapon formed,","","Tom Dowell. * Copyright © 1984 Christian Fellowship of Columbia.","Tom Dowell","","", +"None other is more worthy","","Geraldine Latty * Copyright © 2002 Thankyou Music","Geraldine Latty","","", +"No-one but You, Lord","","Andy Park. * Copyright © 1988 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", +"Not by words and not by deeds","","Martyn Layzell * Copyright © 1999 Thankyou Music","Martyn Layzell","","", +"Not unto us,","","Philip Lawson Johnston. * Copyright © 1989 Kingsway's Thankyou Music.","Philip Lawson Johnston","","", +"Not without a cause","","Bill Anderson. * Copyright © 1985 Kingsway's Thankyou Music.","Bill Anderson","","", +"Nothing in this world,","","Tim Hughes * Copyright © 1998 Thankyou Music","Tim Hughes","","", +"Nothing is too much to ask","","Matt Redman & Mike Pilavachi * Copyright © 2000 Thankyou Music","Matt Redman | Mike Pilavachi","","", +"Nothing shall separate us;","","Noel & Tricia Richards. * Copyright © 1989 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","SOF #947","", +"Now has come salvation","","Mark Stevens (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Mark Stevens (Abundant Life Ministries | Bradford | England)","","", +"Now, in reverence and awe","","Graham Kendrick * Copyright © 1993 Make Way Music","Graham Kendrick","","", +"Now thank we all our God,","","Martin Rinkart. * Tr. Catherine Winkworth.","Martin Rinkart","","", +"Now unto the King","","Joey Holder. * Copyright © 1984 Far Lane Music Publishing/ Kingsway's Thankyou Music.","Joey Holder","","", +"O breath of God, breathe on us now,","","Alfred Vine. *","Alfred Vine","","", +"O breath of life, come sweeping through us,","","Elizabeth Porter Head. *","Elizabeth Porter Head","","", +"O changeless Christ","","Timothy Dudley-Smith * Copyright © Timothy Dudley-Smith","Timothy Dudley-Smith","","", +"O come, all ye faithful,","","Tr. Frederick Oakeley, altd. *","Tr. Frederick Oakeley | altd","","", +"O come let us adore Him,","","Author unknown. *","Author unknown","","", +"O come, O come, Emmanuel,","","Tr. John Mason Neale, altd. *","Tr. John Mason Neale | altd","","", +"O dear God, we ask for Your favour","","Marty Sampson * Copyright © 1999 Marty Sampson/Hillsong Publishing/Kingsway Music","Marty Sampson","","", +"O Father of the fatherless,","","Graham Kendrick. * Copyright © 1992 Make Way Music.","Graham Kendrick","","", +"O for a closer walk with God (Getty)","","William Cowper (1731-1800), adapt. Keith Getty * Copyright © 2001 Thankyou Music","William Cowper (1731-1800) | adapt. Keith Getty","","", +"O for a closer walk with God,","","William Cowper. *","William Cowper","","", +"O for a heart to praise my God,","","Charles Wesley. *","Charles Wesley","","", +"O for a thousand tongues","","Charles Wesley. *","Charles Wesley","","", +"O give thanks","","Joanne Pond. * Copyright © 1980 Kingsway's Thankyou Music.","Joanne Pond","","", +"O God, be my strength","","John Paculabo. * Copyright © 1993 Kingsway's Thankyou Music.","John Paculabo","","", +"O God beyond all praising,","","Michael Perry. * Copyright © Mrs B Perry/Jubilate Hymns.","Michael Perry","","", +"O God, most high,","","Jamie Owens-Collins. * Copyright © Fairhill Music/Adm. by CopyCare.","Jamie Owens-Collins","","", +"O God my creator,","","Graham Kendrick. * Copyright © 1979 Kingsway's Thankyou Music.","Graham Kendrick","","", +"O God of burning, cleansing flame:","","William Booth. * Adpt. Lex Loizides. Copyright © 1994 Kingsway's Thankyou Music.","William Booth","","", +"O God of love","","Louise & Nathan Fellingham * Copyright © 2000 Thankyou Music","Louise Fellingham | Nathan Fellingham","","", +"O God, our help in ages past,","","Isaac Watts. *","Isaac Watts","","", +"O heaven, is in my heart.","","Graham Kendrick. * Copyright © 1991 Make Way Music.","Graham Kendrick","","", +"O Jesus, I have promised","","John Ernest Bode. *","John Ernest Bode","","", +"O Jesus, Son of God,","","Matt Redman * Copyright © 1999 Thankyou Music","Matt Redman","","", +"O l will sing unto You with joy,","","Shona Sauni. * Copyright © 1982 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Shona Sauni","","", +"O let the Son of God enfold You","","John Wimber. * Copyright © 1979 Mercy/Vineyard Publishing/Adm. by CopyCare.","John Wimber","","", +"O little town of bethlehem,","","Philips Brooks. *","Philips Brooks","","", +"O Lord, arise,","","Craig Musseau. * Copyright © 1992 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Craig Musseau","","", +"O Lord, give me an undivided heart","","Chris Roe/Dave Markee. * Copyright © 1990 Kingsway's Thankyou Music.","Chris Roe/Dave Markee","","", +"O Lord, have mercy on me,","","Carl Tuttle. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Carl Tuttle","","", +"O Lord, hear my prayer;","","Jacques Berthier/Taizé. * Copyright © 1982 Ateliers et Presses de Taize (France).","Jacques Berthier/Taizé","SOF #423","", +"O Lord, how I love to sing Your praises.","","Chris DuPré. * Copyright © Heart of David Music.","Chris DuPré","","", +"O Lord, I am devoted to You,","","Martyn Layzell * Copyright © 1998 Thankyou Music","Martyn Layzell","","", +"O Lord I want to sing Your praises,","","Andy Park. * Copyright © 1991 Andy Park/Kingsway's Thankyou Music.","Andy Park","","", +"O Lord, most Holy God,","","For permission to reproduce this song for non-commercial purposes, * please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB Wendy Churchill. Copyright © 1980 Word's Spirit of Praise Music/Adm. by CopyCare.","For permission to reproduce this song for non-commercial purposes","","", +"O Lord my God;","","Stuart K. Hine. * Copyright © 1953 Stuart K. Hine/ Kingsway's Thankyou Music.","Stuart K. Hine","SOF #425","", +"O Lord our God, You are a great God,","","Mike Kerry. * Copyright © 1982 Kingsway's Thankyou Music.","Mike Kerry","","", +"O Lord our God, how majestic is Your name","","Phil Lawson Johnston. * Copyright © 1982 Kingsway's Thankyou Music.","Phil Lawson Johnston","","", +"O Lord, our Lord, how excellent is your name","","Hilary Davies. * Copyright © 1988 Samsongs/Coronation Music/ Kingsway's Thankyou Music.","Hilary Davies","","", +"O Lord, our Lord, Your name is great","","Andrew & Shirley Rogers * Copyright © 2000 Thankyou Music","Andrew Rogers | Shirley Rogers","","", +"O Lord our Lord,","","Michael W. Smith. * Copyright © 1981 Meadowgreen Music/EMI Christian Music Publishing/Adm. by CopyCare.","Michael W. Smith","","", +"O Lord, the clouds are gathering,;","","Graham Kendrick. * Copyright © 1987 Make Way Music.","Graham Kendrick","","", +"O Lord, when I wake up","","Brian Houston * Copyright © 2000 Thankyou Music","Brian Houston","","", +"O Lord, You are first in my life","","Jonathan James (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Jonathan James (Abundant Life Ministries | Bradford | England)","","", +"O Lord, You are my God,","","David J. Hadden. * Copyright © 1983 Restoration Music Ltd./ Adm. by Sovereign Music UK.","David J. Hadden","","", +"O Lord, You are my light,","","David Fellingham. * Copyright © 1983 Kingsway's Thankyou Music.","David Fellingham","","", +"O Lord, You are my rock and my Redeemer;","","Jon Soper, Mark Robinson & John Peters. * Copyright © 1994 Kingsway's Thankyou Music.","Jon Soper | Mark Robinson | John Peters","","", +"O Lord, Your tenderness","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"O Lord, You're beautiful,","","Keith Green. * Copyright © 1980 Birdwing Music/ BMGSongs/EMIChristian Music Publishing/ Adm. by CopyCare.","Keith Green","","", +"O Lord, You're great,","","Ian Smale. * Copyright © 1985 Kingsway's Thankyou Music.","Ian Smale","","", +"O love that wilt not let me go,","","George Matheson. *","George Matheson","","", +"O magnify the Lord","","Maggi Dawn. * Copyright © 1986 Kingsway's Thankyou Music.","Maggi Dawn","","", +"O my Lord, You are most glorious,","","Geoff Roberts. * Copyright © 1990 Kingsway's Thankyou Music.","Geoff Roberts","","", +"O my Saviour, lifted","","William W. How. *","William W. How","","", +"O my soul, arise and bless Your maker,","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","","", +"O praise ye the Lord!","","Henry W. Baker. *","Henry W. Baker","","", +"O precious sight;","","2007 Thank You music","Vicky Beeching","SH09 #65","", +"O righteous God","","Maldwyn Pope. * Copyright © 1989 Samsongs/Coronation Music Publishing/Kingsway's Thankyou Music.","Maldwyn Pope","","", +"O sacred head, once wounded,","","Paulus Gerhardt. * Tr. James W. Alexander.","Paulus Gerhardt","","", +"O sacred King,","","Matt Redman * Copyright © 1999 Thankyou Music","Matt Redman","","", +"O taste and see (Bilborough)","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", +"O taste and see that the Lord is good","","Phil Rogers. * Copyright © 1984 Kingsway's Thankyou Music.","Phil Rogers","","", +"O, that You would bless me,","","Phil Rogers. * Copyright © 1988 Kingsway's Thankyou Music.","Phil Rogers","","", +"O the deep, deep love of Jesus!","","Samuel Trevor Francis. *","Samuel Trevor Francis","","", +"O, the joy of Your forgiveness,","","Dave Bilbrough. * Copyright © 1988 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"O, the love of God is boundless","","D.R. Edwards. adapt. by Graham Kendrick * Words in this version Copyright © 2001 Make Way Music","D.R. Edwards. adapt. by Graham Kendrick","","", +"O the valleys shall ring","","Dave Bilbrough. * Copyright © 1980 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"O thou who camest from above","","Charles Wesley. *","Charles Wesley","","", +"O, we are more than conquerors.","","Steven Fry. * Copyright © 1986 Birdwing Music/ Adm. by CopyCare.","Steven Fry","","", +"O worship the King,","","Robert Grant. *","Robert Grant","","", +"O worship the Lord","","John S. B. Monsell. *","John S. B. Monsell","","", +"Oh fallen one","","James Gregory * Copyright © 2000 Thankyou Music","James Gregory","","", +"Oh kneel me down again","","Brenton Brown * Copyright © 1999 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Brenton Brown","","", +"Oh, lead me","","Martin Smith. * Copyright © Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", +"Oh, our Lord and King,","","Alan Rose. * Copyright © 1997 Kingsway's Thankyou Music.","Alan Rose","","", +"Oh, the mercy of God,","","Geoff Bullock. * Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","Geoff Bullock","","", +"Oi, oi, we are gonna praise the Lord","","Doug Horley * Copyright © 1997 Thankyou Music","Doug Horley","","", +"On Holy Ground (SH08-77)","","2006 Thankyou Music/The Livingstone Collective","Martyn Layzell | Nathan Fellingham | busbee","","", +"Once I was far away","","Kristyn Lennox & Keith Getty * Copyright © 2002 Thankyou Music","Kristyn Lennox | Keith Getty","","", +"Once, in royal david's city,","","Cecil F. Alexander. *","Cecil F. Alexander","","", +"One more step along the world I go","","Sydney Carter * Copyright © 1971 Stainer & Bell Ltd","Sydney Carter","","", +"One sacrifice and I am free","","James Gregory * Copyright © 2000 Thankyou Music","James Gregory","","", +"One shall tell another,","","Graham Kendrick. * Copyright © 1981 Kingsway's Thankyou Music.","Graham Kendrick","","", +"One thing I ask (Oakley)","","Paul Oakley * Copyright © 2000 Thankyou Music","Paul Oakley","","", +"One thing I ask, one thing I seek","","Andy Park. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", +"One thing I have been asking","","Evan Rogers * Copyright © 2000 Thankyou Music","Evan Rogers","","", +"One thing remains (SH12 24)","","","Author Unknown","","", +"One voice,","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", +"Only by grace","","Gerrit Gustafson. * Copyright © 1989 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Gerrit Gustafson","","", +"Only one thing","","Maggi Dawn. * Copyright © 1992 Kingsway's Thankyou Music.","Maggi Dawn","","", +"Only You","","James Taylor * Copyright © 2000 Thankyou Music","James Taylor","","", +"Onward, Christian soldiers,","","Sabine Baring-Gould. *","Sabine Baring-Gould","","", +"Open our eyes, Lord,","","Robert Cull. * Copyright © 1976 Maranatha! Music/ Adm. by CopyCare.","Robert Cull","","", +"Open the doors of praise.","","Ian White. * Copyright © 1997 Little Misty Music/Kingsway's Thankyou Music.","Ian White","","", +"Open the eyes of my heart;","","Paul Baloche * Copyright © 1997 Integrity Hosanna! Music/Sovereign Music UK","Paul Baloche","SOF #1490","", +"Open up the gates of heaven.","","Paul Oakley * Copyright © 1998 Thankyou Music","Paul Oakley","","", +"Open up the skies","","Chris Tomlin, Louie Giglio & Jesse Reeves * Copyright © 2000 worshiptogether.com songs/Six Steps Music/ Adm. by Kingsway Music","Chris Tomlin | Louie Giglio | Jesse Reeves","","", +"Open Your eyes,","","Carl Tuttle. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Carl Tuttle","","", +"Opening our hearts to You","","James Gregory * Copyright © 2002 Thankyou Music","James Gregory","","", +"Our confidence is in the Lord,","","Noel & Tricia Richards. * Copyright © 1989 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"Our Father in heaven, Hallowed be Your name;","","Keith Routledge. * Copyright © 1992 Kingsway's Thankyou Music/Sovereign Music UK.","Keith Routledge","SOF #970","", +"Our Father in heaven, Holy is your name","","Brian Doerksen & Michael Hansen. * Copyright © 1990 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen | Michael Hansen","","", +"Our God is an awesome God;","","Rich Mullins. * Copyright © 1989 Edward Grant Inc/ BMG Music Publishing Ltd/Adm. by CopyCare.","Rich Mullins","SOF #453","", +"Our God is awesome in power,","","Noel & Tricia Richards. * Copyright © 1992 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"Our God is great.","","Dave Bilbrough. * Copyright © 1996 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Our God is Greater;;","Water You turned into wine;","Copyright 2010 Thankyou Music/Kingswaysongs","Matt Redman | Jonas Myrin | Chris Tomlin | Jesse Reeves","SH11 #84","", +"Our God is strong and mighty,","","Stuart Townend & Gary Sadler * Copyright © 2000 Integrity's Hosanna! Music/Sovereign Music UK/ & Thankyou Music","Stuart Townend | Gary Sadler","","", +"Our master, our Saviour,","","Viola Grafstrom * Copyright © 1998 Thankyou Music","Viola Grafstrom","","", +"Our passion is for You,","","John Gibson. * Copyright © 1994 Kingsway's Thankyou Music.","John Gibson","","", +"Out of Your great love,","","Patricia Morgan. * Copyright © 1986 Kingsway's Thankyou Music.","Patricia Morgan","","", +"Over all the earth,","","Brenton Brown * Copyright © 1998 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Brenton Brown","","", +"Over, over","","Noel Robinson * Copyright © 2000 Thankyou Music","Noel Robinson","","", +"Over the heavens above,","","Nigel Leppitt. * Copyright © 1992 Kingsway's Thankyou Music.","Nigel Leppitt","","", +"Over the mountains and the sea;","","Martin Smith. * Copyright © 1994 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","SOF #975","", +"Overwhelmed by love,","","Noel Richards. * Copyright © 1994 Kingsway's Thankyou Music.","Noel Richards","","", +"Peace is flowing like a river,","","Author unknown. *","Author unknown","","", +"Peace like a river,","","John Watson. * Copyright © 1989 Ampelos Music/ Adm. by CopyCare.","John Watson","","", +"Peace, perfect peace is the gift of Christ","","Kevin Mayhew * Copyright © 1976 Kevin Mayhew Ltd","Kevin Mayhew","","", +"Peace, perfect peace, in this dark world of sin","","E. H. Bickersteth. *","E. H. Bickersteth","","", +"Peace to You.","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"Power from on high,","","Ian White. * Copyright © 1993 Little Misty Music/Kingsway's Thankyou Music.","Ian White","","", +"Praise and glory,","","Eddie Espinosa. * Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Eddie Espinosa","","", +"Praise God for the body,","","Anne Ortlund. * Copyright © 1970 Singspiration Music/ John T. Benson Publishing Co./ Adm. by CopyCare.","Anne Ortlund","","", +"Praise God from whom all blessings flow, Doxology","","Ken Thomas. * Copyright © 1972 Bud John Songs/ EMI Christian Music Publishing/ Adm. by CopyCare.","Ken Thomas","","", +"Praise God from whom all blessings flow,","","Dave Clifton and Andy Piercy. * Copyright © 1993 I Q Music.","Dave Clifton and Andy Piercy","","", +"Praise Him on the trumpet,","","John Kennett * Copyright © 1981 Kingsway's Thankyou Music.","John Kennett","","", +"Praise Him, praise Him! Jesus, our blessèd Redeemer;","","Fanny J. Crosby. *","Fanny J. Crosby","","", +"Praise Him, You heavens","","Russell Fragar * Copyright © 1998 Russell Fragar/Hillsong Publishing/ Kingsway Music","Russell Fragar","","", +"Praise Him, praise Him","","Twila Paris. * Copyright © Singspiration Music/John T. Benson Publishing Co./Adm. by CopyCare.","Twila Paris","","", +"Praise is rising;","","2006 Thankyou Music /Integrity’s Hosanna! Music","Paul Baloche and Brenton Brown","SH08- #79","", +"Praise my soul, the King of heaven;","","Henry Francis Lyte. *","Henry Francis Lyte","SOF #466","", +"Praise the Lord, all you servants of the Lord","","Ian White. * Copyright © 1985 Little Misty Music/Kingsway's Thankyou Music.","Ian White","","", +"Praise the Lord, praise Him in His temple","","David Fellingham. * Copyright © 1986 Kingsway's Thankyou Music.","David Fellingham","","", +"Praise the name of Jesus,","","Roy Hicks Jnr. * Copyright © 1975 Latter Rain Music/ EMIChristian Music Publishing/ Adm. by CopyCare.","Roy Hicks Jnr","","", +"Praise to Christ, the Lord incarnate","","Martin E. Leckebusch / Chorus words: Graham Kendrick * Copyright © 2000 Kevin Mayhew Ltd Chorus words Copyright © 2002 Make Way Music","Martin E. Leckebusch / Chorus words: Graham Kendrick","","", +"Praise to the holiest in the height,","","John H. Newman. *","John H. Newman","","", +"Praise to the Lord, the Almighty,","","Joachim Neander. * Tr. Catherine Winkworth 1863, and P. Dearmer 1906.","Joachim Neander","","", +"Praise ye the Lord,","","Chris Bowater. * Copyright © 1980 Sovereign Lifestyle Music.","Chris Bowater","","", +"Praise You, Lord,","","Nettie Rose. * Copyright © 1977 Kingsway's Thankyou Music.","Nettie Rose","","", +"Praises,","","David Gate * Copyright © 1999 Thankyou Music","David Gate","","", +"Prayer is like a telephone","","Paul Crouch & David Mudie * Copyright © 1991 Daybreak Music Ltd","Paul Crouch | David Mudie","","", +"Prepare the way (Bilborough)","","Dave Bilbrough * Copyright © 2000 Thankyou Music","Dave Bilbrough","","", +"Prepare the way of the Lord","","Mary Smail. * Copyright © Mary Smail.","Mary Smail","","", +"Prince of peace You are,","","Robert Gay. * Copyright © 1988 Integrity's Hosannal Music. Adm. Kingsway's Thankyou Music.","Robert Gay","","", +"Promise of the Father,","","David Fellingham. * Copyright © 1995 Kingsway's Thankyou Music.","David Fellingham","","", +"Purify my heart,","","Brian Doerksen. * Copyright © 1990 Mercy/Vineyard Publishing/Adm. by CopyCare.","Brian Doerksen","","", +"Quiet my mind,","","Tracy Orrison. * Copyright © 1990 Sound Truth Publishing/ Kingsway's Thankyou Music.","Tracy Orrison","","", +"Raise up an army,","","Steve and Vikki Cook. * Copyright © 1988 People of Destiny International/Word Music/Adm. by CopyCare.","Steve and Vikki Cook","","", +"Reconciled,","","Mike Kerry. * Copyright © 1984 Kingsway's Thankyou Music.","Mike Kerry","","", +"Reign in me,","","Chris Bowater. * Copyright © 1985 Sovereign Lifestyle Music.","Chris Bowater","","", +"Reigning in all splendour,","","Dave Bilbrough. * Copyright © 1984 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Rejoice in the Lord always","","Evelyn Tarner * Copyright © 1967 Sacred Songs/Word Music/Adm. by CopyCare","Evelyn Tarner","","", +"Rejoice, rejoice, rejoice!","","Chris Bowater. * Copyright © 1986 Sovereign Lifestyle Music.","Chris Bowater","","", +"Rejoice, the Lord is King!","","Charles Wesley. *","Charles Wesley","","", +"Rejoice!","","Graham Kendrick. * Copyright © 1983 Kingsway's Thankyou Music.","Graham Kendrick","","", +"Release Your power among us","","Luke & Nathan Fellingham. * Copyright © 1997 Kingsway's Thankyou Music.","Luke Fellingham | Nathan Fellingham","","", +"Release Your power, O God.","","Stuart Garrard. * Copyright © 1994 Kingsway's Thankyou Music.","Stuart Garrard","","", +"Remember Your creator","","Jim Bailey. * Copyright © 1994 Kingsway's Thankyou Music.","Jim Bailey","","", +"Restore, O Lord,","","Graham Kendrick & Chris Rolinson. * Copyright © 1981 Kingsway's Thankyou Music.","Graham Kendrick | Chris Rolinson","","", +"Revival!","","Doug Horley. * Copyright © 1991 Kingsway's Thankyou Music.","Doug Horley","","", +"Ride on, ride on in Majesty!","","H. H. Milman. *","H. H. Milman","","", +"Righteousness, peace, joy in the Holy ghost;","","Helena Barrington. * Copyright © 1988 Integrity's Praise! Music/ Adm. by Kingsway's Thankyou Music.","Helena Barrington","","", +"Rise up, let your Kingdom arise","","Peter Arajs. * Copyright © 1989 Kingsway's Thankyou Music.","Peter Arajs","","", +"Rise up, you champions of God","","Mark Altrogge. * Copyright © 1982 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", +"River of God,","","Paul Oakley. * Copyright © 1996 Kingsway's Thankyou Music.","Paul Oakley","","", +"River, wash over me,","","Dougie Brown. * Copyright © 1980 Kingsway's Thankyou Music.","Dougie Brown","","", +"Rock of ages (Kendrick)","","Augustus M. Toplady (1740-78) * adapt. by Graham Kendrick Words in this version Copyright © 2001 Make Way Music","Augustus M. Toplady (1740-78)","","", +"Rock of ages,","","Augustus Montague Toplady. *","Augustus Montague Toplady","","", +"Ruach,","","David Fellingham. * Copyright © 1994 Kingsway's Thankyou Music.","David Fellingham","","", +"Sacred","","Sue Rinaldi, Caroline Bonnett & Steve Bassett * Copyright © 2001 Thankyou Music","Sue Rinaldi | Caroline Bonnett | Steve Bassett","","", +"Safe in the shadow of the Lord,","","Timothy Dudley-Smith. * Copyright © 1970 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", +"Salvation belongs to our God,","","Adrian Howard & Pat Turner. * Copyright © 1985 Restoration Music Ltd/ Adm. by Sovereign Music UK.","Adrian Howard | Pat Turner","","", +"Salvation, spring up","","Charlie Hall * Copyright © 1997 worshiptogether.com songs/Six Steps Music/ Adm. by Kingsway Music","Charlie Hall","","", +"Say the word,","","Stuart Townend. * Copyright © 1994 Kingsway's Thankyou Music.","Stuart Townend","","", +"Search me, O God,","","Paul Oakley. * Copyright © 1997 Kingsway's Thankyou Music.","Paul Oakley","","", +"Search my soul,","","Tim Sherrington * Copyright © 1998 Thankyou Music","Tim Sherrington","","", +"See, amid the winter's snow,","","Edward Caswall. *","Edward Caswall","","", +"See Him come,","","Hilary Davies. * Copyright © 1988 Samsongs/Coronation Music/ Kingsway's Thankyou Music.","Hilary Davies","","", +"See Him lying on a bed of straw,","","Michael Perry. * Copyright © Mrs B Perry/ Jubilate Hymns.","Michael Perry","","", +"See His glory,","","Chris Bowater. * Copyright © 1986 Sovereign Lifestyle Music.","Chris Bowater","","", +"See how the Father","","Robert Critchley * Copyright © 1996 Thankyou Music","Robert Critchley","","", +"See, what a morning;","","© 2003 Thankyou Music","Stuart Townend and Keith Getty","SOF #2020","", +"Seek ye first","","Karen Lafferty. * Copyright © 1972 Maranatha! Music/ Adm. by CopyCare.","Karen Lafferty","","", +"Send forth Your light and Your truth,","","Geoff Twigg. * Copyright © 1994 Kingsway's Thankyou Music.","Geoff Twigg","","", +"Send me out from here,","","John Pantry. * Copyright © HarperCollins Religious/Adm. by CopyCare.","John Pantry","","", +"Send us the rain, Lord,","","David Wellington. * Copyright © 1995 Kingsway's Thankyou Music.","David Wellington","","", +"Send Your rain","","Dave Bilbrough. * Copyright © 1995 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Send Your Spirit","","Dave Bilbrough * Copyright © 2002 Thankyou Music","Dave Bilbrough","","", +"Set my Spirit free","","Author unknown. *","Author unknown","","", +"Shine Your light on us","","Marc James & Tré Sheppard * Copyright © 2001 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Marc James | Tré Sheppard","","", +"Shout for joy and sing your praises","","David Fellingham. * Copyright © 1988 Kingsway's Thankyou Music.","David Fellingham","","", +"Shout for joy and sing","","Dave Bilbrough. * Copyright © 1983 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Show me, dear Lord,","","Andy Park. * Copyright © 1989 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Andy Park","","", +"Show me the way of the cross","","Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Matt Redman","","", +"Show Your power, O Lord,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"Silent night,","","Joseph Mohr. * Tr. S. A. Brooke.","Joseph Mohr","","", +"Sing a song of celebration,","","David Ruis. * Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","David Ruis","","", +"Sing hallelujah to the Lord,","","Linda Stassen. * Copyright © 1974 New Song Ministries. (Men)","Linda Stassen","","", +"Sing, praise and bless the Lord","","Taizé, music: Jacques Berthier (1923-94) * Copyright © 1982 Ateliers et Presses de Taizé","Taizé | music: Jacques Berthier (1923-94)","","", +"Sing praises, all You peoples","","Jacques Berthier (1923-94) * Copyright © Ateliers et Presses de Taizé","Jacques Berthier (1923-94)","","", +"Sing praises to our God","","David Lyle Morris * Copyright © 2001 Thankyou Music","David Lyle Morris","","", +"Sing praises unto God,","","Melva Lea. * Copyright © Larry Lea Ministries.","Melva Lea","","", +"Sing to God new songs","","Michael Baughen. * Copyright © Michael Baughen/Jubilate Hymns.","Michael Baughen","","", +"Sing to the Lord with all your heart","","Stuart Garrard. * Copyright © 1994 Kingsway's Thankyou Music.","Stuart Garrard","","", +"Sing to the Lord, be joyful","","Noel & Tricia Richards. * Copyright © 1990 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"Sing unto the Lord a new song,","","Mick Ray. * Copyright © 1977 Kingsway's Thankyou Music .","Mick Ray","","", +"So freely,","","Dave Bilbrough. * Copyright © 1983 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Soften my heart, Lord, soften my heart","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"Soften my heart Lord, I want to meet You","","Cindy Gough. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Cindy Gough","","", +"Soften my heart, that I may know","","Michael Sandeman. * Copyright © 1997 Kingsway's Thankyou Music.","Michael Sandeman","","", +"Soldiers of Christ, arise,","","Charles Wesley. *","Charles Wesley","","", +"Soldiers of our God, arise!","","Robert Johnson, altd Lex Loizides * Copyright © 1998 Thankyou Music","Robert Johnson | altd Lex Loizides","","", +"Sometimes when I feel Your love","","Paul Oakley. * Copyright © 1995 Kingsway's Thankyou Music.","Paul Oakley","","", +"Son of God,","","John Wimber. * Copyright © 1979 Mercy/Vineyard Publishing/Adm. by CopyCare.","John Wimber","","", +"Son of man","","Paul Oakley. * Copyright © 1996 Kingsway's Thankyou Music.","Paul Oakley","","", +"Soon, and very soon,","","Andrae Crouch. * Copyright © 1976 BudJohn Songs/Crouch Music Co./EMI Christian Music Publishing/ Adm. by CopyCare.","Andrae Crouch","","", +"Sound the trumpet,","","Dave Bilbrough. * Copyright © 1991 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Sovereign Lord, I am Yours","","Noel & Tricia Richards. * Copyright © 1990 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"Sovereign Lord, over all","","Martyn Layzell * Copyright © 2002 Thankyou Music","Martyn Layzell","","", +"Spirit breathe on us,","","Graham Kendrick & Dave Bilbrough. * Copyright © 1990 Kingsway's Thankyou Music/ Make Way Music.","Graham Kendrick | Dave Bilbrough","","", +"Spirit, move on this land","","Tim Sherrington * Copyright © 2001 Thankyou Music","Tim Sherrington","","", +"Spirit of God, show me Jesus,","","Chris Bowater. * Copyright © 1978 Sovereign Lifestyle Music.","Chris Bowater","","", +"Spirit of holiness,","","Christopher Idle. * Copyright © Christopher Idle/Jubilate Hymns.","Christopher Idle","","", +"Spirit of the living God (Fill me);","","Paul Armstrong. * Copyright © 1984 Restoration Music Ltd./ Adm. by Sovereign Music UK.","Paul Armstrong","SOF #511","", +"Spirit of the living God, (Break me);","","Daniel Iverson. * Copyright © 1935 Birdwing Music/EMI Christian Music Publishing/Adm. by CopyCare.","Daniel Iverson","SOF #510","", +"Spirit of the Lord,","","Ian White * Copyright © 1997 Thankyou Music","Ian White","","", +"Stand up, and bless the Lord,","","James Montgomery. *","James Montgomery","","", +"Stand up! stand up for Jesus,","","George Duffield. *","George Duffield","","", +"Standing in Your presence,","","Darlene Zschech. * Copyright © 1996 Darlene Zschech/Hillsongs Australia/Kingsway's Thankyou Music.","Darlene Zschech","","", +"Standing on Holy ground","","Paul Oakley & Martin Cooper * Copyright © 2001 Thankyou Music","Paul Oakley | Martin Cooper","","", +"Stay with me","","Taizé, music: Jacques Berthier (1923-94) * Copyright © 1980 Ateliers et Presses de Taizé","Taizé | music: Jacques Berthier (1923-94)","","", +"Strength will Rise (SH08-82)","","2005 Thankyou Music","Brenton Brown | Ken Riley","","", +"Such love! Such grace!","","Dave Bryant. * Copyright © 1982 Kingsway's Thankyou Music.","Dave Bryant","","", +"Such love, pure as the whitest snow","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"Surely our God","","David Lyle Morris & Liz Morris * Copyright © 2000 Thankyou Music","David Lyle Morris | Liz Morris","","", +"Sweet fellowship,","","Ronnie Wilson. * Copyright © 1978 Kingsway's Thankyou Music.","Ronnie Wilson","","", +"Swing wide the gates,","","Chris Bowater. * Copyright © 1986 Sovereign Lifestyle Music.","Chris Bowater","","", +"Take, eat, this is my body,","","Paul Simmons. * Copyright © 1985 Kingsway's Thankyou Music.","Paul Simmons","","", +"Take me past the outer courts,","","Dave Browning. * Copyright © 1986 Glory Alleluia Music/Tempo Music Publications/Adm. by CopyCare.","Dave Browning","","", +"Take me to Your sacred place,","","Noel & Tricia Richards * Copyright © 2000 Thankyou Music","Noel Richards | Tricia Richards","","", +"Take my life, and let it be;","","Frances Ridley Havergal. *","Frances Ridley Havergal","SOF #519","", +"Take us to the river;","","Robin Mark * Copyright © 1998 Thankyou Music","Robin Mark","SOF #1525","", +"Teach me of Your ways","","David Gate * Copyright © 2001 Thankyou Music","David Gate","","", +"Teach me to dance","","Graham Kendrick & Steve Thompson. * Copyright © 1993 Make Way Music.","Graham Kendrick | Steve Thompson","","", +"Teach us, O Lord,","","Kevin Prosch. * Copyright © 1981 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Kevin Prosch","","", +"Tell out, my soul,","","Timothy Dudley-Smith. * Copyright © 1961 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", +"Tell the world","","Dave Bilbrough * Copyright © 1998 Thankyou Music","Dave Bilbrough","","", +"Thank You for saving me;;","","Martin Smith. * Copyright © 1993 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","SOF #1015","", +"Thank You for the cross, Lord","","Darlene Zschech * Copyright © 2000 Darlene Zschech/Hillsong Publishing/Kingsway Music","Darlene Zschech","","", +"Thank You for the cross;","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","SOF #522","", +"Thank You, Jesus,","","Alison Huntley. * Copyright © 1978 Kingsway's Thankyou Music.","Alison Huntley","","", +"Thank You, Lord, for this fine day,","","Copyright © 1971, 1975 Celebration/ * Kingsway's Thankyou Music.","Copyright © 1971 | 1975 Celebration/","","", +"Thank You, Lord, for Your love to me","","Paul Booth * Copyright © 1999 Thankyou Music","Paul Booth","","", +"Thank You, Lord, You love us","","Paul Oakley & Megamix Kids * Copyright © 2001 Thankyou Music","Paul Oakley | Megamix Kids","","", +"Thank You, thank You for the blood","","Matt Redman * Copyright © 1999 Thankyou Music","Matt Redman","","", +"Thanks be to God","","Robert Stoodley. * Copyright © 1978 Sovereign Music UK.","Robert Stoodley","","", +"The angels around Your throne,","","Richard Lewis. * Copyright © 1996 Kingsway's Thankyou Music.","Richard Lewis","","", +"The angels, Lord, they sing","","Matt Redman. * Copyright © 1993 Kingsway's Thankyou Music.","Matt Redman","","", +"The battle is the Lord's,","","Doug Horley. * Copyright © 1994 Kingsway's Thankyou Music.","Doug Horley","","", +"The birds don't worry","","Stuart Townend * Copyright © 2000 Thankyou Music","Stuart Townend","","", +"The church's one foundation","","Samuel John Stone. *","Samuel John Stone","","", +"The church's one foundation","","Dave Bilbrough. * Copyright © 1986 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"The cross before me","","Chris Tomlin & Jesse Reeves * Copyright © 2002 worshiptogether.com songs/ Six Steps Music/Adm. by Kingsway Music","Chris Tomlin | Jesse Reeves","","", +"The cross has said it all,","","Matt Redman & Martin Smith. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman | Martin Smith","","", +"The crucible for silver","","Martin Smith. * Copyright © 1993 Kingsway's Thankyou Music.","Martin Smith","","", +"The day of the streams","","Dave Bilbrough & Andy Piercy. * Copyright © 1995 Kingsway's Thankyou Music/I Q Music.","Dave Bilbrough | Andy Piercy","","", +"The day thou gavest, Lord, is ended,","","John Ellerton. *","John Ellerton","","", +"The earth is the Lord's","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"The earth resounds in songs of praise;","","Geoff Bullock. * Copyright © 1997 Watershed Productions/Kingsway's Thankyou Music.","Geoff Bullock","","", +"The first nowell","","Author unknown. *","Author unknown","","", +"The God of Abraham praise,","","Thomas Olivers. *","Thomas Olivers","","", +"The grace of God","","Judy Pruett. * Copyright © 1990 Judy Pruett/Kingsway's Thankyou Music.","Judy Pruett","","", +"The Greatest Day in History;","","© 2006 Thankyou Music","Tim Hughes | Ben Cantelon","SOF #2046","", +"The greatest thing in all my life","","Mark Pendergrass * Copyright © Garden Valley Music/Birdwing Music/BMG Songs Inc./EMI Christian Music Publishing/Adm. by CopyCare","Mark Pendergrass","","", +"The head that once was crowned with thorns","","Thomas Kelly. *","Thomas Kelly","","", +"The heavens they preach,","","Lex Loizides. * Copyright © 1997 Kingsway's Thankyou Music.","Lex Loizides","","", +"The King is among us,","","Graham Kendrick. * Copyright © 1981 Kingsway's Thankyou Music.","Graham Kendrick","","", +"The King of love","","Henry Williams Baker. *","Henry Williams Baker","","", +"The King of love is my delight;","","Stuart Townend & Kevin Jamieson. * Copyright © 1997 Kingsway's Thankyou Music.","Stuart Townend | Kevin Jamieson","SOF #1025","", +"The light of Christ","","Donald Fishel. * Copyright © 1974 The Word of God Music/ The Copyright Company/Adm. by CopyCare.","Donald Fishel","","", +"The Lord fills me with His strength,","","Merrilyn Billing. * Copyright © 1989 Arise Ministries/ Kingsway's Thankyou Music.","Merrilyn Billing","","", +"The Lord has given","","Author unknown. *","Author unknown","","", +"The Lord has led forth","","Chris Bowater. * Copyright © 1982 Sovereign Lifestyle Music.","Chris Bowater","","", +"The Lord has spoken.","","Paul Oakley. * Copyright © 1991 Kingsway's Thankyou Music.","Paul Oakley","","", +"The Lord is marching out","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"The Lord reigns,","","Daniel C Stradwick. * Copyright © 1980 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Daniel C Stradwick","","", +"The Lord Your God is in Your midst,","","Author unknown. *","Author unknown","","", +"The Lord's my Shepherd,","","Scottish Psalter. *","Scottish Psalter","","", +"The Lord's my Shepherd,","","Stuart Townend. * Copyright © 1996 Kingsway's Thankyou Music.","Stuart Townend","","", +"The love of God,","","Geoff Bullock. * Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","Geoff Bullock","","", +"The name of the Lord","","Louise Hunt & Nathan Fellingham. * Copyright © 1997 Kingsway's Thankyou Music.","Louise Hunt | Nathan Fellingham","","", +"The narrow pathway","","David Ruis * Copyright © 2001 Vineyard Songs (Canada)/Adm. by CopyCare","David Ruis","","", +"The nations are waiting","","Mark Altrogge. * Copyright © 1986 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", +"The people who walk in darkness","","David Lyle Morris & Jussi Miettinen * Copyright © 2000 Thankyou Music","David Lyle Morris | Jussi Miettinen","","", +"The place where You dwell","","Ed Pask * Copyright © 2001 Thankyou Music","Ed Pask","","", +"The power of Your love","","Gary Sadler * Copyright © 1998 Integrity's Hosanna! Music/Sovereign Music UK","Gary Sadler","","", +"The price is paid,","","Graham Kendrick. * Copyright © 1983 Kingsway's Thankyou Music.","Graham Kendrick","","", +"The sky is filled","","Mick Gisbey. * Copyright © 1985 Kingsway's Thankyou Music.","Mick Gisbey","","", +"The Spirit lives to set us free","","Damian Lundy * Copyright © 1978 Kevin Mayhew Ltd","Damian Lundy","","", +"The Spirit of the Lord,","","Chris Bowater. * Copyright © 1985 Sovereign Lifestyle Music.","Chris Bowater","","", +"The Spirit of the sovereign Lord","","Andy Park. * Copyright © 1992 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Andy Park","","", +"The splendour of the King;;","How great is our God","2004 sixsteps Music/worshiptogether.com songs/kingswaysongs.com/","Chris Tomlin | Jesse Reeves | Ed Cash","SH08 #90","", +"The steadfast love of the Lord","","Edith McNeil. * Copyright © 1974, 1975 Celebration/ Kingsway's Thankyou Music.","Edith McNeil","","", +"The trumpets sound,","","Graham Kendrick. * Copyright © 1989 Make Way Music.","Graham Kendrick","","", +"The virgin mary had a baby boy,","","Author unknown. *","Author unknown","","", +"The voice of God","","Dave Bilbrough * Copyright © 2000 Thankyou Music","Dave Bilbrough","","", +"The waves are breaking,","","Dave Bilbrough. * Copyright © 1996 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"The wonder of forgiveness","","Stuart Townend & Gary Sadler * Copyright © 2002 Thankyou Music & Paintbrush Music","Stuart Townend | Gary Sadler","","", +"The wonder of Your mercy,","","Don Wallace * Copyright © 1999 PDI Worship/Adm. by CopyCare","Don Wallace","","", +"The world is looking for a hero;","","Noel & Tricia Richards. * Copyright © 1994 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"There is a day;","","Nathan Fellingham * Copyright © 2001 Thankyou Music","Nathan Fellingham","SOF #1539","", +"There is a deeper love to know","","James Taylor * Copyright © 1999 Thankyou Music","James Taylor","","", +"There is a green hill far away,","","Cecil Frances Alexander. *","Cecil Frances Alexander","","", +"There is a higher throne;","","Kristyn Lennox & Keith Getty * Copyright © 2002 Thankyou Music","Kristyn Lennox | Keith Getty","SOF #1541","", +"There is a home","","Stuart Townend. * Copyright © 1994 Kingsway's Thankyou Music.","Stuart Townend","","", +"There is a hope so sure","","Graham Kendrick * Copyright © 2002 Make Way Music","Graham Kendrick","","", +"There is a louder shout to come,","","Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Matt Redman","","", +"There is a name I love to hear,","","Frederick Whitfield. *","Frederick Whitfield","","", +"There is a name","","Nathan Fellingham * Copyright © 2001 Thankyou Music","Nathan Fellingham","","", +"There is a passion","","David Fellingham & Kim Morgan * Copyright © 2001 Thankyou Music","David Fellingham | Kim Morgan","","", +"There is a Redeemer;;","","Melody Green. * Copyright © 1982 Birdwing Music/ BMGSongs/EMIChristian Music Publishing/ Adm. by CopyCare.","Melody Green","SOF #544","", +"There is a voice that must be heard,","","Paul Oakley * Copyright © 1998 Thankyou Music","Paul Oakley","","", +"There is no one like our God","","Noel & Tricia Richards. * Copyright © 1996 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"There is no other friend,","","David Ruis. * Copyright © 1996 Mercy/Vineyard Publishing/ Adm. by CopyCare.","David Ruis","","", +"There is no other name","","Robin Mark * Copyright © 1999 Integrity's Hosanna! Music/Sovereign Music UK","Robin Mark","","", +"There is none like You,","","Lenny LeBlanc. * Copyright © 1991 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Lenny LeBlanc","","", +"There is one name","","Robert Critchley. * Copyright © 1993 Kingsway's Thankyou Music.","Robert Critchley","","", +"There is power in the name of Jesus;;","","Noel Richards. * Copyright © 1989 Kingsway's Thankyou Music.","Noel Richards","SOF #545","", +"There must be more","","Tim Hughes * Copyright © 2002 Thankyou Music","Tim Hughes","","", +"Therefore the redeemed","","Ruth Lake. * Copyright © 1972 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Ruth Lake","","", +"There's a call","","Stuart Townend * Copyright © 2001 Thankyou Music","Stuart Townend","","", +"There's a calling to the nations","","Ken Riley * Copyright © 1999 Thankyou Music","Ken Riley","","", +"There's a light that shines,","","Geoff Bullock. * Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","Geoff Bullock","","", +"There's a new song upon my lips","","Johnny Parks * Copyright © 2001 Thankyou Music","Johnny Parks","","", +"There's a pageant of triumph in glory,","","David Fellingham * Copyright © 1999 Thankyou Music","David Fellingham","","", +"There's a people","","Terry Virgo & Stuart Townend * Copyright © 2000 Thankyou Music","Terry Virgo | Stuart Townend","","", +"There's a place where the streets shine;","","Paul Oakley. * Copyright © 1995 Kingsway's Thankyou Music.","Paul Oakley","SOF #1041","", +"There's a quiet understanding","","Ted Smith. * Copyright © 1973 Hope Publishing Co/ Adm. by CopyCare.","Ted Smith","","", +"There's a river of joy","","Taran Ash, James Mott & Matthew Pryce. * Copyright © 1997 Kingsway's Thankyou Music.","Taran Ash | James Mott | Matthew Pryce","","", +"There's a river","","Malcolm du Plessis. * Copyright © 1991 Maranatha! Music/ Adm. by CopyCare.","Malcolm du Plessis","","", +"There's a sound on the wind","","Graham Kendrick. * Copyright © 1978 Kingsway's Thankyou Music.","Graham Kendrick","","", +"There's a wind a-blowing","","David Ruis. * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare.","David Ruis","","", +"There's an awesome sound","","Richard Lewis. * Copyright © 1997 Kingsway's Thankyou Music.","Richard Lewis","","", +"There's no love greater than Your love","","James Taylor * Copyright © 2000 Thankyou Music","James Taylor","","", +"There's no one like our God","","Vicky Beeching & Steve Mitchinson * Copyright © 1999 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Vicky Beeching | Steve Mitchinson","","", +"There's no one like You,","","Eddie Espinosa * Copyright © 1990 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Eddie Espinosa","","", +"There's nothing I like better","","Ian Smale. * Copyright © 1994 Kingsway's Thankyou Music.","Ian Smale","","", +"These are the days of Elijah,!","","Robin Mark. * Copyright © 1997 Daybreak Music Ltd.","Robin Mark","SOF #1047","", +"They that wait on the Lord","","Kevin Prosch. * Copyright © 1995 7th Time Music/ Kingsway's Thankyou Music.","Kevin Prosch","","", +"Thine be the glory,","","Edmond Louis Budry. * Tr. R. Birch Hoyle.","Edmond Louis Budry","","", +"Thine, O Lord, is the greatness,","","Suella Behrns. * Copyright © 1983 Christian Fellowship of Columbia.","Suella Behrns","","", +"This child","","Graham Kendrick * Copyright © 1988 Make Way Music","Graham Kendrick","","", +"This earth belongs to God,","","Christopher Idle. * Copyright © Christopher Idle/Jubilate Hymns.","Christopher Idle","","", +"This God is our God,","","Kent Henry & David Ortinau. * Copyright © 1995 Kent Henry Ministries/Kingsway's Thankyou Music.","Kent Henry | David Ortinau","","", +"This I know,","","Mark Altrogge. * Copyright © 1992 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", +"This is Holy ground,","","Christopher Beatty. * Copyright © 1979 Birdwing Music/BMG Songs/EMI Christian Music Publishing/Adm. by CopyCare.","Christopher Beatty","","", +"This is love","","Kristyn Lennox & Keith Getty * Copyright © 2002 Thankyou Music","Kristyn Lennox | Keith Getty","","", +"This is my belovèd Son","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", +"This is my desire, to honour you;;","","Reuben Morgan * Copyright © 1995 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","SOF #1561","", +"This is my pilgrimage,","","Sue Rinaldi. * Copyright © 1996 Kingsway's Thankyou Music.","Sue Rinaldi","","", +"This is the air I breathe;;","","Marie Barnett * Copyright © 1995 Mercy/Vineyard Publishing/Adm. by CopyCare","Marie Barnett","SOF #1562","", +"This is the best place,","","Ian White * Copyright © 1997 Thankyou Music.","Ian White","","", +"This is the day, that the Lord has made;","","Les Garrett. * Copyright © 1967 Scripture in Song, a division of Integrity Music/ Adm. by Kingsway's Thankyou Music.","Les Garrett","SOF #553","", +"This is the mystery,","","Chris Bowater & Phil Lawson Johnston. * Copyright © 1992 Sovereign Lifestyle Music.","Chris Bowater | Phil Lawson Johnston","","", +"This is the place","","Dave Bilbrough. * Copyright © 1997 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"This love,","","Geoff Bullock. * Copyright © 1994 Word Music/Adm. by CopyCare.","Geoff Bullock","","", +"This means I love You","","Matt Redman * Copyright © 1995 Thankyou Music","Matt Redman","","", +"Thou art worthy,","","Pauline Michael Mills. * Copyright © 1963, 1975 Fred Bock Music/ Kingsway's Thankyou Music.","Pauline Michael Mills","","", +"Thou didst leave thy throne","","Emily E. Steele Elliott. *","Emily E. Steele Elliott","","", +"Thou, O Lord, art a shield about me,","","Donn Thomas & Charles Williams. * Copyright © 1980 Spoone Music/ Word Music/Adm. by CopyCare.","Donn Thomas | Charles Williams","","", +"Thou, whose Almighty word","","John Marriott. *","John Marriott","","", +"Though I feel afraid","","Ian White. * Copyright © 1996 Little Misty Music/ Kingsway's Thankyou Music.","Ian White","","", +"Though trials will come","","Graham Kendrick * Copyright © 2001 Make Way Music","Graham Kendrick","","", +"Through all the changing scenes of life","","","N. Tate (1652-1715) | N. Brady (1659-1726)","","", +"Through days of rage and wonder","","Graham Kendrick * Copyright © 1998 Make Way Music","Graham Kendrick","","", +"Through our God","","Dale Garratt. * Copyright © 1979 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Dale Garratt","","", +"Throughout the earth Your glory will come,","","James Wright. * Copyright © 1996 Kingsway's Thankyou Music.","James Wright","","", +"Thy hand, O God has guided","","Edward Hayes Plumptre. *","Edward Hayes Plumptre","","", +"Thy word is a lamp unto my feet;","","Amy Grant & Michael W. Smith. * Copyright © 1983 Bug & Bear Music/LCS Music Group Inc./Meadowgreen Music/EMI Christian Music Publishing/Adm. by CopyCare.","Amy Grant | Michael W. Smith","SOF #1066","", +"Time is too short","","Matt Redman * Copyright © 2000 Thankyou Music","Matt Redman","","", +"To be in Your presence,","","Noel Richards. * Copyright © 1991 Kingsway's Thankyou Music.","Noel Richards","","", +"To God be the glory!","","Fanny J. Crosby. *","Fanny J. Crosby","","", +"To Him we come","","James E. Seddon (1915-83) * Copyright © Mrs M. Seddon/Jubilate Hymns Ltd","James E. Seddon (1915-83)","","", +"To Him who loves us,","","Bryn Haworth. * Copyright © 1996 Kingsway's Thankyou Music.","Bryn Haworth","","", +"To Him who sits on the throne","","Debbye Graafsma. * Copyright © 1985 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Debbye Graafsma","","", +"To walk with You,","","Matthew Bridle * Copyright © 1998 Thankyou Music","Matthew Bridle","","", +"To You, King Jesus","","Nathan Fellingham * Copyright © 2002 Thankyou Music","Nathan Fellingham","","", +"To You, O Lord","","Graham Kendrick * Copyright © 1997 Make Way Music","Graham Kendrick","","", +"To Your Majesty,","","Sue Rinaldi & Steve Bassett. * Copyright © 1988 Word's Spirit of Praise Music/Adm. by CopyCare.","Sue Rinaldi | Steve Bassett","","", +"Ubi caritas","","Taizé, music: Jacques Berthier (1923-94) * Copyright © 1980 Ateliers et Presses de Taizé","Taizé | music: Jacques Berthier (1923-94)","","", +"Unto thee, O Lord,","","Charles F. Monroe. * Copyright © 1971 Maranatha! Music/ Adm. by CopyCare.","Charles F. Monroe","","", +"Unto us a boy is born","","Latin, 15th Century * Tr. Percy Dearmer (1867-1936) Copyright © Oxford University Press","Latin | 15th Century","","", +"Unto You, O Lord,","","Phil Townend. * Copyright © 1986 Kingsway's Thankyou Music.","Phil Townend","","", +"Visit us, O Lord,","","Kirk & Deby Dearman. * Copyright © Ariose Music/EMI Christian Music Publishing/Adm. by CopyCare.","Kirk Dearman | Deby Dearman","","", +"Wait for the Lord","","Jacques Berthier (1923-94) * Copyright © Ateliers et Presses de Taizé","Jacques Berthier (1923-94)","","", +"Waiting for Your Spirit,","","Mick Gisbey. * Copyright © 1995 Kingsway's Thankyou Music.","Mick Gisbey","","", +"Wake up, my soul,","","Matt Redman. * Copyright © 1994 Kingsway's Thankyou Music.","Matt Redman","","", +"Wake up, wake up O sleeper,","","Nathan Fellingham. * Copyright © 1996 Kingsway's Thankyou Music.","Nathan Fellingham","","", +"Wash me clean","","Maggi Dawn. * Copyright © 1994 Kingsway's Thankyou Music.","Maggi Dawn","","", +"We are a chosen people,","","David J. Hadden. * Copyright © 1982 Restoration Music Ltd./ Adm. by Sovereign Music UK.","David J. Hadden","","", +"We are a people of power,","","Trevor King. * Copyright © 1986 Trevor King/ Kingsway's Thankyou Music.","Trevor King","","", +"We are all together","","Danny Daniels. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", +"We are being built into a temple,","","lan Traynar. * Copyright © 1977 Kingsway's Thankyou Music.","lan Traynar","","", +"We are called to be prophets to this nation,","","Brian Houston * Copyright © 1999 Thankyou Music","Brian Houston","","", +"We are heirs of God Almighty","","Stuart Townend * Copyright © 2002 Thankyou Music","Stuart Townend","","", +"We are here to praise You,","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", +"We are His people,","","Kevin Prosch. * Copyright © 1991 Mercy/Vineyard Publishing/Adm. by CopyCare.","Kevin Prosch","","", +"We are in God's army,","","lan Smale. * Copyright © 1987 Kingsway's Thankyou Music.","lan Smale","","", +"We are joined by angels","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", +"We are marching in the light of God,","","Tr. Anders Nyberg. * Copyright © 1990 Wild Goose Publications.","Tr. Anders Nyberg","","", +"We are marching to a different anthem,","","No permission is required to reproduce this song for non-commercial purposes * Lex Loizides. Copyright © 1997 Kingsway's Thankyou Music.","No permission is required to reproduce this song for non-commercial purposes","","", +"We are salt","","Bob Fitts. * Copyright, © 1992 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Bob Fitts","","", +"We are standing","","Geron Davis. * Copyright © 1983 Songchannel Music Co. Meadowgreen Music /EMIChristian Music Publishing/Adm. by CopyCare.","Geron Davis","","", +"We are the army of God,","","Kevin Prosch. * Copyright © 1990 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Kevin Prosch","","", +"We are the hands of God,","","John Pantry. * Copyright © 1990 Kingsway's Thankyou Music.","John Pantry","","", +"We are Your inheritance,","","Paul Oakley. * Copyright © 1996 Kingsway's Thankyou Music.","Paul Oakley","","", +"We are Your people","","David Fellingham. * Copyright © 1986 Kingsway's Thankyou Music.","David Fellingham","","", +"We ask You, O Lord,","","Richard Lewis. * Copyright © 1994 Kingsway's Thankyou Music.","Richard Lewis","","", +"We behold Your glory,","","David & Nathan Fellingham. * Copyright © 1995 Kingsway's Thankyou Music.","David Fellingham | Nathan Fellingham","","", +"We believe in hebrews thirteen, eight,","","Ian Smale. * Copyright © 1996 Kingsway's Thankyou Music.","Ian Smale","","", +"We bow down and confess","","Viola Grafstrom. * Copyright © 1996 Kingsway's Thankyou Music.","Viola Grafstrom","","", +"We bow our hearts","","Charlie Hall * Copyright © 2000 worshiptogether.com songs/Six Steps Music/ Adm. by Kingsway Music","Charlie Hall","","", +"We break this bread","","Copyright © 1980 Central Board of Finance * of the Church of England. Used by permission.","Copyright © 1980 Central Board of Finance","","", +"We bring the sacrifice of praise","","Kirk Dearman. * Copyright © 1981 Stamps Baxter Music/ John T. Benson Publishing Co/ Adm. by CopyCare.","Kirk Dearman","","", +"We come in Your name","","Kate Simmonds & Mark Edwards * Copyright © 2002 Thankyou Music","Kate Simmonds | Mark Edwards","","", +"We confess the sins of our nation,","","Kevin Prosch. * Copyright © 1991 Mercy/Vineyard Publishing/Adm. by CopyCare.","Kevin Prosch","","", +"We could watch You from afar","","Matt Redman * Copyright © 2002 Thankyou Music","Matt Redman","","", +"We declare that the kingdom of God is here,","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music. (Men and women in canon)","Graham Kendrick","","", +"We declare there's only one Lord,","","Pete Roe. * Copyright © 1985 Kingsway's Thankyou Music.","Pete Roe","","", +"We declare Your Majesty,","","Malcolm du Plessis. * Copyright © 1984 Kingsway's Thankyou Music.","Malcolm du Plessis","","", +"We extol You,","","David Fellingham. * Copyright © 1987 Kingsway's Thankyou Music.","David Fellingham","","", +"We fall down","","Chris Tomlin * Copyright © 1998 worshiptogether.com songs/ Adm. by Kingsway Music","Chris Tomlin","","", +"We give thanks to You,","","Mark Altrogge. * Copyright © 1992 Integrity's Hosanna! Music/ People of Destiny Int./Adm. by Kingsway's Thankyou Music.","Mark Altrogge","","", +"We have a gospel to proclaim","","Edward J. Burns * Copyright © Edward J. Burns","Edward J. Burns","","", +"We have a vision","","Chris Falson. * Copyright © 1990 Chris Falson Music/Adm. by Kingsway's Thankyou Music.","Chris Falson","","", +"We have called on You, Lord,","","Stuart Garrard. * Copyright © 1992 Kingsway's Thankyou Music.","Stuart Garrard","","", +"We have come into this place","","Bruce Ballinger. * Copyright © 1976 Sound III/Tempo Music Publications/CopyCare.","Bruce Ballinger","","", +"We have come to mount Zion,","","Robert Newey. * Copyright © 1989 Kingsway's Thankyou Music.","Robert Newey","","", +"We have come to seek Your face,","","Robert Newey. * Copyright © 1997 Kingsway's Thankyou Music.","Robert Newey","","", +"We have flooded the altar","","Martin Smith. * Copyright © 1994 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", +"We have prayed that You would have mercy;","","Paul Oakley. * Copyright © 1994 Kingsway's Thankyou Music.","Paul Oakley","","", +"We have sung our songs of victory,","","Stuart Townend. * Copyright © 1997 Kingsway's Thankyou Music.","Stuart Townend","","", +"We have this treasure in jars of clay.","","Doug Horley * Copyright © 1999 Thankyou Music","Doug Horley","","", +"We know that all things","","David J. Hadden. * Copyright © 1983 Restoration Music Ltd./ Adm. by Sovereign Music UK.","David J. Hadden","","", +"We lift up our heads,","","David Fellingham. * Copyright © 1997 Kingsway's Thankyou Music.","David Fellingham","","", +"We look to You, Almighty God","","Alan Rose * Copyright © 2000 Thankyou Music","Alan Rose","","", +"We place You on the highest place,","","Ramon Pink. * Copyright © 1983 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Ramon Pink","","", +"We plough the fields","","Matthias Claudius. * Tr. Jane M. Campbell.","Matthias Claudius","","", +"We really want to thank You, Lord,","","Ed Baggett. * Copyright © 1974, 1975 Celebration/ Kingsway's Thankyou Music.","Ed Baggett","","", +"We rejoice in the goodness of our God,","","Carol Owen. * Copyright © 1994 Kingsway's Thankyou Music.","Carol Owen","","", +"We rest on thee, our shield and our defender!","","Edith G. Cherry. *","Edith G. Cherry","","", +"We see the Lord","","Robin Mark * Copyright © 2000 Integrity's Hosanna! Music/Sovereign Music UK","Robin Mark","","", +"We shall be as one,","","Joan Parsons. * Copyright © 1978 Kingsway's Thankyou Music.","Joan Parsons","","", +"We shall stand","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"We stand together","","Lex Loizides. * Copyright © 1996 Kingsway's Thankyou Music.","Lex Loizides","","", +"We wanna change this world,","","Sue Rinaldi. * Copyright © 1996 Kingsway's Thankyou Music.","Sue Rinaldi","","", +"We want to see Jesus lifted high;","","Doug Horley. * Copyright © 1993 Kingsway's Thankyou Music.","Doug Horley","SOF #1105","", +"We will give ourselves no rest","","Steve Cantellow & Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Steve Cantellow | Matt Redman","","", +"We will glorify","","Twila Paris. * Copyright © 1982 Singspiration Music/John T. Benson Publishing Co./Adm. by CopyCare.","Twila Paris","","", +"We will honour You,","","Phil Lawson Johnston. * Copyright © 1987 Kingsway's Thankyou Music.","Phil Lawson Johnston","","", +"We will seek Your face, ,","","Reuben Morgan * Copyright © 1997 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", +"We will tear down every stronghold","","Dave Bilbrough. * Copyright © 1991 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"We will worship the Lamb of glory,","","Dennis Jernigan. * Copyright © 1989 Shepherd's Heart Music/ Sovereign Lifestyle Music.","Dennis Jernigan","","", +"We worship and adore You,","","Ge Baas. * Copyright © 1983 Kingsway's Thankyou Music.","Ge Baas","","", +"Welcome, King of kings!","","Noel Richards. * Copyright © 1991 Kingsway's Thankyou Music.","Noel Richards","","", +"Well, I call upon my Father","","Ken Riley * Copyright © 2001 Thankyou Music","Ken Riley","","", +"Well, I hear they're singing","","Martin Smith. * Copyright © 1995 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", +"Well, I thank You, Lord,","","Bob Baker. * Copyright © 1994 Mercy/Vineyard Publishing/Adm. by CopyCare.","Bob Baker","","", +"We'll sing a new song","","Diane Fung. * Copyright © 1979 Word's Spirit of Praise Music/Adm. by CopyCare.","Diane Fung","","", +"We'll walk the land;","","Graham Kendrick. * Copyright © 1989 Make Way Music.","Graham Kendrick","SOF #583","", +"We're gonna sing like the saved","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", +"We're here for the harvest,","","Chris Bowater. * Copyright © 1996 Sovereign Lifestyle Music.","Chris Bowater","","", +"We're longing for Your presence,","","Stuart Townend * Copyright © 1998 Thankyou Music","Stuart Townend","","", +"We're looking to Your promise","","Matt Redman. * Copyright © 1997 Kingsway's Thankyou Music.","Matt Redman","","", +"We're reaching out to You again.","","Ian White. * Copyright © 1997 Little Misty Music/ Kingsway's Thankyou Music.","Ian White","","", +"We're so thankful to You,","","Richard Lewis & Chris Cartwright. * Copyright © 1994 Kingsway's Thankyou Music.","Richard Lewis | Chris Cartwright","","", +"We're standing here","","Stuart Garrard. * Copyright © 1993 Kingsway's Thankyou Music.","Stuart Garrard","","", +"Were You there","","American Folk Hymn *","American Folk Hymn","","", +"We've come to praise You","","Kate Simmonds & Stuart Townend * Copyright © 2001 Thankyou Music","Kate Simmonds | Stuart Townend","","", +"What a day to be alive","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", +"What a friend I've found,","","Martin Smith. * Copyright © 1996 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", +"What a friend we have in Jesus,","","Joseph M. Scriven. *","Joseph M. Scriven","","", +"What can I say","","Neil Bennetts * Copyright © 2001 Thankyou Music","Neil Bennetts","","", +"What child is this","","William Chatterton Dix (1837-98) *","William Chatterton Dix (1837-98)","","", +"What kind of love is this","","Bryn & Sally Haworth. * Copyright © 1983 Signalgrade/ Kingsway's Thankyou Music.","Bryn Haworth | Sally Haworth","","", +"What love is this, that took my place","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", +"What love is this? The love of Jesus","","Doug Horley & Steve Whitehouse * Copyright © 2001 Thankyou Music","Doug Horley | Steve Whitehouse","","", +"What to say, Lord?","","Joel Houston * Copyright © 1999 Joel Houston/Hillsong Publishing/Kingsway Music","Joel Houston","","", +"What wisdom once devised the plan","","Bob Kauflin * Copyright © 2000 PDI Praise/Adm. by CopyCare","Bob Kauflin","","", +"What wonder of grace","","Stuart Townend * Copyright © 2002 Thankyou Music","Stuart Townend","","", +"Whatever I have gained,","","Geoff Bullock. * Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","Geoff Bullock","","", +"When a knight won His spurs","","Jan Struther (1901-53) * Copyright © Oxford University Press","Jan Struther (1901-53)","","", +"When can I go and meet with God?","","Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Matt Redman","","", +"When deep calls to deep","","Paul Oakley * Copyright © 1998 Thankyou Music","Paul Oakley","","", +"When I come face to face","","Drew Land * Copyright © 2000 Thankyou Music","Drew Land","","", +"When I feel the touch","","Keri Jones & David Matthews. * Copyright © 1978 Word's Spirit of Praise Music/Adm. by CopyCare.","Keri Jones | David Matthews","","", +"When I look into Your holiness,","","Wayne & Cathy Perrin. * Copyright © 1980 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Wayne Perrin | Cathy Perrin","","", +"When I needed a neighbour","","Sydney Carter * Copyright © 1965 Stainer & Bell Ltd","Sydney Carter","","", +"When I sing my praise","","Noel & Tricia Richards * Copyright © 1999 Thankyou Music","Noel Richards | Tricia Richards","","", +"When I survey (Oh, the wondeerful cross)","","Isaac Watts (1674-1748) * Refrain lyrics: Chris Tomlin & J.D. Walt Copyright © 2000 worshiptogether.com songs/Six Steps Music/ Adm. by Kingsway Music","Isaac Watts (1674-1748)","","", +"When I survey the wondrous cross","","Isaac Watts. *","Isaac Watts","","", +"When I was lost","","Kate & Miles Simmonds * Copyright © 2001 Thankyou Music","Kate Simmonds | Miles Simmonds","","", +"When love came down","","Stuart Townend * Copyright © 2001 Thankyou Music","Stuart Townend","","", +"When morning gilds the skies","","Tr. Edward Caswall. *","Tr. Edward Caswall","","", +"When my heart is faint","","Alan Rose * Copyright © 2000 Thankyou Music","Alan Rose","","", +"When my heart runs dry","","Matt Redman * Copyright © 2001 Thankyou Music","Matt Redman","","", +"When the darkness fills my senses,","","Reuben Morgan * Copyright © 1998 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", +"When the music fades;","","Matt Redman. * Copyright © 1997 Kingsway's Thankyou Music.","Matt Redman","SOF #1113","", +"When the road is rough and steep","","Norman J. Clayton * Copyright © 1985 Wordspring Music/Adm. by CopyCare","Norman J. Clayton","","", +"When the Spirit of the Lord","","Author unknown. *","Author unknown","","", +"When we turn our hearts to heaven","","Noel Richards & Ken Riley * Copyright © 2001 Thankyou Music","Noel Richards | Ken Riley","","", +"When we walk with the Lord","","John Henry Sammis. *","John Henry Sammis","","", +"When we're in trouble,","","Noel Richards. * Copyright © 1996 Kingsway's Thankyou Music.","Noel Richards","","", +"When words are not enough","","Martyn Layzell * Copyright © 1998 Thankyou Music","Martyn Layzell","","", +"When You prayed beneath the trees","","Christopher Idle * Copyright © Christopher Idle/Jubilate Hymns Ltd","Christopher Idle","","", +"When you've been broken,","","Kevin Prosch. * Copyright © 1995 7th Time Music/ Kingsway's Thankyou Music.","Kevin Prosch","","", +"Where can I go","","Brian Houston * Copyright © 2001 Thankyou Music","Brian Houston","","", +"Where could I find someone like You?","","Robin Mark * Copyright © 2000 Thankyou Music","Robin Mark","","", +"Where there once was only hurt,","","Tommy Walker. * Copyright © 1992 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Tommy Walker","","", +"Where You go I will go,","","Author unknown. *","Author unknown","","", +"Whether You're one","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"While shepherds watched","","Nahum Tate. *","Nahum Tate","","", +"Who can compare","","Gareth Robinson * Copyright © 2001 Thankyou Music","Gareth Robinson","","", +"Who can ever say they understand","","Dave Bilbrough. * Copyright © 1989 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Who can sound the depths of sorrow","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"Who can stand before the Lord","","Geraldine Latty & Carey Luce * Copyright © 2002 Thankyou Music","Geraldine Latty | Carey Luce","","", +"Who could offer us abundant life?","","Evan Rogers * Copyright © 1998 Thankyou Music","Evan Rogers","","", +"Who has laid (SH00-145)","","","Johnny Markin","","", +"Who is He in yonder stall,","","Benjamin R. Hanby, alt. *","Benjamin R. Hanby | alt","","", +"Who is like unto thee, O Lord, amongst gods","","Judy Horner-Montemayor. * Copyright © 1975 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Judy Horner-Montemayor","","", +"Who is like You","","Joannah Oyeniran * Copyright © 2002 Thankyou Music","Joannah Oyeniran","","", +"Who is on the Lord's side?","","Frances R. Havergal. *","Frances R. Havergal","","", +"Who is there like the Lord our God","","Neil Bennetts * Copyright © 2002 Thankyou Music","Neil Bennetts","","", +"Who is there like You;;","","Paul Oakley. * Copyright © 1995 Kingsway's Thankyou Music.","Paul Oakley","SOF #1117","", +"Who is this","","Phil Rogers. * Copyright © 1984 Kingsway's Thankyou Music.","Phil Rogers","","", +"Who paints the skies","","Stuart Townend. * Copyright © 1995 Kingsway's Thankyou Music.","Stuart Townend","","", +"Who put the colours in the rainbow","","J.A.P. Booth * Copyright © Paul Booth/Adm. by CopyCare","J.A.P. Booth","","", +"Whom have I but You?","","David Ruis * Copyright © 1996 Mercy/Vineyard Publishing/Adm. by CopyCare","David Ruis","","", +"Who's the King of the jungle?","","Annie Spiers * Copyright © 1992 Annie Spiers","Annie Spiers","","", +"Who's the only light","","Scott Underwood * Copyright © 1999 Mercy/Vineyard Publishing/Adm. by CopyCare","Scott Underwood","","", +"Whose lips will plead","","Alex Muir. * Copyright © 1993 Kingsway's Thankyou Music.","Alex Muir","","", +"Will You come and follow me","","Graham Maule & John L. Bell. * Copyright © 1987 WGRG, Iona Community.","Graham Maule | John L. Bell","","", +"Wind, wind, blow on me,","","Jane & Betsy Clowe. * Copyright © 1974, 1975 Celebration/ Kingsway's Thankyou Music.","Jane Clowe | Betsy Clowe","","", +"With a prayer","","Stuart Townend * Copyright © 2002 Thankyou Music","Stuart Townend","","", +"With all my heart","","Paul Field. * Copyright © 1987 Kingsway's Thankyou Music.","Paul Field","","", +"With His hands He made me,","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","","", +"With my whole heart","","Graham Kendrick. * Copyright © 1981 Kingsway's Thankyou Music.","Graham Kendrick","","", +"With the choir of angels singing","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", +"Within the veil","","(From “Heaven shall not wait” Wild Goose Publications 1987) * No permission is required to reproduce this song for non-commercial purposes Ruth Dryden. Copyright © 1978 Genesis Music/ Kingsway's Thankyou Music.","(From “Heaven shall not wait” Wild Goose Publications 1987)","","", +"Wonderful grace,","","John Pantry * Copyright © 1990 HarperCollins Religious/Adm. by CopyCare","John Pantry","","", +"Wonderful love","","David Fellingham. * Copyright © 1990 Kingsway's Thankyou Music.","David Fellingham","","", +"Wonderful Redeemer","","Ashton Gardner * Copyright © 2001 Thankyou Music","Ashton Gardner","","", +"Wonderful, so wonderful","","Tim Hughes * Copyright © 2002 Thankyou Music","Tim Hughes","","", +"Worship the Lord!","","John Watson. * Copyright © 1986 Ampelos Music/ Adm. by CopyCare.","John Watson","","", +"Worship the Lord","","Louise Fellingham * Copyright © 1999 Thankyou Music","Louise Fellingham","","", +"Worthy art thou,","","Dave Richards. * Copyright © 1979 Kingsway's Thankyou Music.","Dave Richards","","", +"Worthy is the Lamb seated on the throne,","","David J. Hadden. * Copyright © 1983 Restoration Music Ltd./ Adm. by Sovereign Music UK.","David J. Hadden","","", +"Worthy is the Lamb who was slain.","","Andy Park. * Copyright © 1990 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", +"Worthy is the Lamb,","","Carol Owen. * Copyright © 1995 Kingsway's Thankyou Music.","Carol Owen","","", +"Worthy, O worthy are You, Lord,","","Mark Kinzer. * Copyright © 1976 The Word of God Music/ Adm. by CopyCare.","Mark Kinzer","","", +"Worthy, the Lord is worthy,","","lan White. * Copyright © 1986 Little Misty Music/ Kingsway's Thankyou Music.","lan White","","", +"Worthy, You are worthy,","","Matt Redman * Copyright © 1999 Thankyou Music","Matt Redman","","", +"Woven together","","Stuart Townend * Copyright © 1997 Thankyou Music","Stuart Townend","","", +"Ye Holy angels bright,","","Richard Baxter. * John H. Gurney & Richard R. Chope altd.","Richard Baxter","","", +"Ye servants of God,","","Charles Wesley. *","Charles Wesley","","", +"Yes, I thank You","","Kevin Simpson * Copyright © 2000 Thankyou Music","Kevin Simpson","","", +"Yesterday, today and forever","","Marilyn Baker * Copyright © 1998 Marilyn Baker Music/Kingsway Music","Marilyn Baker","","", +"Yet this will I call to mind,","","Carl Tuttle. * Copyright © 1992 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Carl Tuttle","","", +"Yet will I praise Him","","Geraldine Latty * Copyright © 2001 Thankyou Music","Geraldine Latty","","", +"You alone are worthy (SH10 92)","","","Al Gordon | Luke Hellebronth | Hanif Williams","","", +"You are all I want","","Gareth Robinson * Copyright © 2001 Thankyou Music","Gareth Robinson","","", +"You are beautiful","","Mark Altrogge. * Copyright © 1987 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", +"You are compassionate","","Mark Altrogge. * Copyright © 1989 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", +"You are crowned with many crowns,","","John Sellers. * Copyright © 1984 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","John Sellers","","", +"You are forever in my life","","Reuben Morgan * Copyright © 2001 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", +"You are God in heaven,","","Matt & Beth Redman * Copyright © 2000 Thankyou Music","Matt Redman | Beth Redman","","", +"You are here","","Patty Kennedy. * Copyright © 1985 Mercy/Vineyard Publishing/ Adm. by CopCare.","Patty Kennedy","","", +"You are Holy, Holy","","Reuben Morgan * Copyright © 1997 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", +"You are Holy, You are mercy","","Tré Sheppard * Copyright © 2002 Thankyou Music","Tré Sheppard","","", +"You are known as the rock of ages,","","Robin Mark * Copyright © 2000 Thankyou Music","Robin Mark","","", +"You are Lord, You are Lord","","Neil Bennetts * Copyright © 2002 Thankyou Music","Neil Bennetts","","", +"You are merciful to me,","","Ian White. * Copyright © 1997 Little Misty Music/ Kingsway's Thankyou Music.","Ian White","","", +"You are mighty,","","Craig Musseau. * Copyright © 1989 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Craig Musseau","","", +"You are my anchor","","Stuart Townend * Copyright © 2001 Thankyou Music","Stuart Townend","","", +"You are my foundation","","Mark Stevens (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Mark Stevens (Abundant Life Ministries | Bradford | England)","","", +"You are my hiding place,","","Michael Ledner. * Copyright © 1981 Maranatha! Music/ Adm. by CopyCare.","Michael Ledner","","", +"You are my King, I live to know you","","Mark Stevens (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Mark Stevens (Abundant Life Ministries | Bradford | England)","","", +"You are my King,","","Brian Doerksen. * Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen","","", +"You are my passion,","","Noel & Tricia Richards. * Copyright © 1995 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", +"You are my Shepherd,","","Scott Underwood * Copyright © 1997 Mercy/Vineyard Publishing/Adm. by CopyCare","Scott Underwood","","", +"You are mystical","","Brian Houston * Copyright © 2001 Thankyou Music","Brian Houston","","", +"You are righteous","","Wynne Goss. * Copyright © 1992 Kingsway's Thankyou Music.","Wynne Goss","","", +"You are the fountain of my life","","Darren Clarke * Copyright © 1998 Mercy/Vineyard Publishing/Adm. by CopyCare","Darren Clarke","","", +"You are the great I am,","","Tommy Walker. * Copyright © 1991 WeMobile Music/Doulos Publishing/Adm. by CopyCare.","Tommy Walker","","", +"You are the Holy one,","","Andy Park. * Copyright © 1988 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", +"You are the King of glory,","","Mavis Ford. * Copyright © 1978 Word's Spirit of Praise Music/Adm. by CopyCare.","Mavis Ford","","", +"You are the King of glory","","Liz Fitzgibbon * Copyright © 2001 Moortown Music/Kingsway Music","Liz Fitzgibbon","","", +"You are the Lord, the famous one","","Chris Tomlin & Jesse Reeves * Copyright © 2002 worshiptogether.com songs/Six Steps Music/ Adm. by Kingsway Music","Chris Tomlin | Jesse Reeves","","", +"You are the Lord, the King of Heaven","","Eoghan Heaslip & Mick Goss * Copyright © 2002 Integrity's Hosanna! Music/Sovereign Music UK/ & Daybreak Music Ltd","Eoghan Heaslip | Mick Goss","","", +"You are the mighty King,","","Eddie Espinosa. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare.","Eddie Espinosa","","", +"You are the one I love","","Sue Rinaldi & Caroline Bonnett * Copyright © 2001 Thankyou Music","Sue Rinaldi | Caroline Bonnett","","", +"You are the perfect and righteous God","","Steve & Vikki Cook. * Copyright © 1994 People of Destiny International/Word Music/Adm. by CopyCare.","Steve Cook | Vikki Cook","","", +"You are the song that I sing","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", +"You are the sovereign 'I am',","","Brian Doerksen * Copyright © 1999 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Brian Doerksen","","", +"You are the vine;","","Danny Daniels & Randy Rigby. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels | Randy Rigby","SOF #629","", +"You are wonderful,","","Per Soetorp. * Copyright © 1992 His Music/ Kingsway's Thankyou Music.","Per Soetorp","","", +"You are worthy to receive","","John Pantry. * Copyright © 1990 Kingsway's Thankyou Music.","John Pantry","","", +"You are worthy, Lord, You're worthy","","John Daniel Lawtum. * Copyright © 1982 Millenium Dawn Music/ Adm. by Sovereign Music UK.","John Daniel Lawtum","","", +"You bless my life,","","Terry Butler. * Copyright © 1992 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Terry Butler","","", +"You call us first","","Tim Hughes * Copyright © 2001 Thankyou Music","Tim Hughes","","", +"You came to heal the broken hearted","","Robert Newey. * Copyright © 1990 Kingsway's Thankyou Music.","Robert Newey","","", +"You came into my life","","Tim Hughes * Copyright © 1999 Thankyou Music","Tim Hughes","","", +"You can have my whole life","","James Taylor * Copyright © 2001 Thankyou Music","James Taylor","","", +"You chose the cross;","","Martyn Layzell * Copyright © 2002 Thankyou Music","Martyn Layzell","SOF #1661","", +"You confide in those who fear You","","Matt Redman * Copyright © 1996 Thankyou Music","Matt Redman","","", +"You did not wait for me","","Mark Altrogge. * Copyright © 1985 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", +"You gave Your only Son","","Martyn Layzell * Copyright © 2002 Thankyou Music","Martyn Layzell","","", +"You have become for us wisdom;","","Mark Altrogge. * Copyright © 1991 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", +"You have been given","","Bob Kauflin. * Copyright © 1988 People of Destiny International/Word Music/Adm. by CopyCare.","Bob Kauflin","","", +"You have called us chosen,","","Andy Park. * Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Andy Park","","", +"You have given me new life;","","Nathan & David Fellingham * Copyright © 1998 Thankyou Music","Nathan Fellingham | David Fellingham","","", +"You have laid Your hand on me,","","Noel Richards * Copyright © 1999 Thankyou Music","Noel Richards","","", +"You have lifted up the humble,","","Alun Leppitt. * Copyright © 1994 Kingsway's Thankyou Music.","Alun Leppitt","","", +"You have taken the precious","","Tom Davis & Kevin Prosch. * Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Tom Davis | Kevin Prosch","","", +"You laid aside Your Majesty,","","Noel Richards. * Copyright © 1985 Kingsway's Thankyou Music.","Noel Richards","","", +"You led me to the cross,","","Matt Redman * Copyright © 1999 Thankyou Music","Matt Redman","","", +"You make my heart feel glad.","","Patricia Morgan & Sue Rinaldi. * Copyright © 1990 Kingsway's Thankyou Music.","Patricia Morgan | Sue Rinaldi","","", +"You make Your face to shine on me,","","Darlene Zschech & Russell Fragar. * Copyright © 1996 Darlene Zschech & Russell Fragar/Hillsongs Australia/Kingsway's Thankyou Music.","Darlene Zschech | Russell Fragar","","", +"You never put a light under a dirty old bucket.","","Ian Smale. * Copyright © 1994 Kingsway's Thankyou Music.","Ian Smale","","", +"You, O Lord,","","Mark Veary & Paul Oakley. * Copyright © 1986 Kingsway's Thankyou Music.","Mark Veary | Paul Oakley","","", +"You pour out grace","","Gareth Robinson & Joannah Oyeniran * Copyright © 2001 Thankyou Music","Gareth Robinson | Joannah Oyeniran","","", +"You purchased men","","John W. Elliot. * Copyright © 1987 BMGSongs Inc/ Adm. by CopyCare.","John W. Elliot","","", +"You rescued me,","","Geoff Bullock. * Copyright © 1992 Word Music/Adm. by CopyCare.","Geoff Bullock","","", +"You said: Ask and you will receive","","Reuben Morgan * Copyright © 1998 Reuben Morgan/Hillsong Publishing/ Kingsway Music","Reuben Morgan","","", +"You sat down","","Mark Altrogge. * Copyright © 1987 Integrity's Hosanna! Music/ People of Destiny Int./Adm. by Kingsway's Thankyou Music.","Mark Altrogge","","", +"You set me apart","","Paul Ewing * Copyright © 2000 Paul Ewing/Hillsong Publishing/Kingsway Music","Paul Ewing","","", +"You shall be Holy","","Dave Dickerson. * Copyright © 1988 Coronation Music Publishing/Kingsway's Thankyou Music.","Dave Dickerson","","", +"You shall go out with joy","","Steffi Geiser Rubin & Stuart Dauermann. * Copyright © 1975 Lillenas Publishing Co./ Adm. by CopyCare.","Steffi Geiser Rubin | Stuart Dauermann","","", +"You shaped the heavens","","Tim Hughes * Copyright © 2001 Thankyou Music","Tim Hughes","","", +"You spread out the skies","","Matt Redman & Chris Tomlin * Copyright © 2002 worshiptogether.com songs/Six Steps Music/Thankyou Music/Adm. by Kingsway Music","Matt Redman | Chris Tomlin","","", +"You take me by the hand","","Dave Bilbrough * Copyright © 2000 Thankyou Music","Dave Bilbrough","","", +"Your eye is on the sparrow,","","Darlene Zschech. * Copyright © 1996 Darlene Zschech/Hillsongs Australia/Kingsway's Thankyou Music.","Darlene Zschech","","", +"Your hand, O God, has guided","","E.H. Plumptre (1821-91) adapt. Keith Getty * Copyright © 2001 Thankyou Music","E.H. Plumptre (1821-91) adapt. Keith Getty","","", +"Your kindness overwhelmed me","","James Gregory * Copyright © 2002 Thankyou Music","James Gregory","","", +"Your kingdom generation","","Darlene Zschech & David Moyse * Copyright © 2000 Darlene Zschech & David Moyse/ Hillsong Publishing/Kingsway Music","Darlene Zschech | David Moyse","","", +"Your light broke through my night","","Reuben Morgan * Copyright © 1998 Reuben Morgan/Hillsong Publishing/ Kingsway Music","Reuben Morgan","","", +"Your love has captured me","","Chris Tomlin, Jesse Reeves & Louie Giglio * Copyright © 1999 worshiptogether.com songs/ Adm. by Kingsway Music","Chris Tomlin | Jesse Reeves | Louie Giglio","","", +"Your love is amazing;","Hallelujah (Your love is amazing)","Brenton Brown & Brian Doerksen * Copyright © 2000 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Brenton Brown | Brian Doerksen","SOF #1676","", +"Your love is better than wine","","Robert Critchley * Copyright © 2000 Thankyou Music","Robert Critchley","","", +"Your love looks after me,","","Chris Falson. * Copyright © 1991 Chris Falson Music/Adm. by Kingsway's Thankyou Music.","Chris Falson","","", +"Your love, O Lord,","","Peggy Caswell. * Copyright © 1990 Sound Truth Publishing/ Kingsway's Thankyou Music.","Peggy Caswell","","", +"Your love, shining like the sun","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","","", +"Your mercy flows","","Wes Sutton. * Copyright © 1988 Sovereign Lifestyle Music.","Wes Sutton","","", +"Your name is love","","Greg Shepherd * Copyright © 2000 Thankyou Music","Greg Shepherd","","", +"Your name is peace","","David Wellington. * Copyright © 1994 Kingsway's Thankyou Music.","David Wellington","","", +"Your voice is like thunder,","","Paul Oakley. * Copyright © 1997 Kingsway's Thankyou Music.","Paul Oakley","","", +"Your voice is the voice","","Vicky Beeching * Copyright © 2001 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Vicky Beeching","","", +"Your whisper to my soul","","Brian Houston * Copyright © 2000 Thankyou Music","Brian Houston","","", +"Your will, not mine,","","Dougie Brown. * Copyright © 1991 Sovereign Lifestyle Music.","Dougie Brown","","", +"Your works, Lord,","","Andy Park. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", +"You're amazing,","","Carol Mundy. * Copyright © 1993 Kingsway's Thankyou Music.","Carol Mundy","","", +"You're the Lion of Judah,","","Robin Mark. * Copyright © 1993 Daybreak Music Ltd.","Robin Mark","","", +"You're the one who gave His Son","","Johnny Parks * Copyright © 2001 Thankyou Music","Johnny Parks","","", +"You're the word of God the Father","","Stuart Townend & Keith Getty * Copyright © 2002 Thankyou Music","Stuart Townend | Keith Getty","","", +"Yours is the kingdom","","Dave Bilbrough * Copyright © 2002 Thankyou Music","Dave Bilbrough","","", +"You've placed a hunger in my heart","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","","", +"You've placed a song within my heart","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", +"You've put a new song in my mouth","","Matt Redman * Copyright © 2000 Thankyou Music","Matt Redman","","", +"You've touched my heart","","Neil Bennetts * Copyright © 2002 Thankyou Music","Neil Bennetts","","", +"Hallelujah! sing to Jesus;","","William C. Dix. *","William C. Dix","","", +"Hands, hands, fingers, thumbs,","","Doug Horley. * Copyright © 1996 Kingsway's Thankyou Music.","Doug Horley","","", +"Hark the glad sound!","","Philip Doddridge, altd. *","Philip Doddridge | altd","","", +"Hark! the herald angels sing:","","Charles Wesley, altd. *","Charles Wesley | altd","","", +"Have I not been faithful","","Brian Houston * Copyright © 2002 Thankyou Music","Brian Houston","","", +"Have thine own way, Lord,","","A. A. Pollard. * Copyright © HarperCollins Religious/Adm. by CopyCare","A. A. Pollard","","", +"Have we forgotten","","Andy Ferrett * Copyright © 1999 Thankyou Music","Andy Ferrett","","", +"Have You got an appetite?","","Mick Gisbey. * Copyright © 1985 Kingsway's Thankyou Music.","Mick Gisbey","","", +"Have You heard the good news?","","Stuart Garrard. * Copyright © 1995 Curious? Music UK/ Adm. Kingsway's Thankyou Music.","Stuart Garrard","","", +"Have You not said","","Matt Redman. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman","","", +"He brought me to His banqueting table,","","Kevin Prosch. * Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Kevin Prosch","","", +"He came to earth,","","John Pantry. * Copyright © 1990 Kingsway's Thankyou Music.","John Pantry","","", +"He died for my sake","","Dave Bilbrough * Copyright © 2002 Thankyou Music","Dave Bilbrough","","", +"He gave me beauty","","Robert Whitney Manzano. * Copyright © 1984 Kingsway's Thankyou Music.","Robert Whitney Manzano","","", +"He has been given","","David Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham","","", +"He has clothed us with His righteousness,","","Steve & Vikki Cook. * Copyright © 1990 Integrity's Hosanna Music!/ People of Destiny Int./Adm. by Kingsway's Thankyou Music.","Steve Cook | Vikki Cook","","", +"He has risen,","","Gerald Coates, Noel & Tricia Richards. * Copyright © 1993 Kingsway's Thankyou Music.","Gerald Coates | Noel Richards | Tricia Richards","","", +"He holds the key","","Joan Parsons. * Copyright © 1978 Kingsway's Thankyou Music.","Joan Parsons","","", +"He is exalted,","","Twila Paris. * Copyright © 1985 Straightway Music/ Mountain Spring/EMIChristian Music Publishing/Adm. by CopyCare.","Twila Paris","","", +"He is Holy, Holy, Holy,","","Ken Riley * Copyright © 1999 Thankyou Music","Ken Riley","","", +"He is Lord,","","Author unknown. *","Author unknown","","", +"He is lovely,","","Bob Fitts. * Copyright © 1986 C A Music/Music Services/ CopyCare.","Bob Fitts","","", +"He is our peace,","","Kandela Groves. * Copyright © 1985 Maranatha! Music/ Adm. by CopyCare.","Kandela Groves","","", +"He is the Lord,","","Kevin Prosch. * Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Kevin Prosch","","", +"He made the earth,","","Gill Broomhall. * Copyright © 1988 Coronation Music Publishing/ Kingsway's Thankyou Music.","Gill Broomhall","","", +"He once was dead, but now He lives","","David Lyle Morris & Nick Wynne-Jones * Copyright © 2001 Thankyou Music","David Lyle Morris | Nick Wynne-Jones","","", +"He picked me up","","Dave Bilbrough. * Copyright © 1996 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"He reigns,","","Rick Ridings. * Copyright © 1990 Ariose Music/EMI Christian Music Publishing/Adm. by CopyCare.","Rick Ridings","","", +"He shall reign","","John Watson & Stuart Townend. * Copyright © 1991 Ampelos Music/ Adm. by CopyCare./Kingsway's Thankyou Music","John Watson | Stuart Townend","","", +"He that is in us","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", +"He walked where I walk,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", +"He was pierced","","Maggi Dawn. * Copyright © 1987 Kingsway's Thankyou Music.","Maggi Dawn","","", +"He who would valiant be","","John Bunyan. *","John Bunyan","","", +"Healing grace,","","Dave Bilbrough. * Copyright © 1990 Kingsway's Thankyou Music.","Dave Bilbrough","","", +"Hear all creation","","Margaret Becker & Keith Getty * Copyright © 2001 Modern M. Music/Music Services/Adm. by CopyCare/ & Thankyou Music","Margaret Becker | Keith Getty","","", +"Hear my confession","","Brian Houston * Copyright © 2002 Thankyou Music","Brian Houston","","", +"Hear my mouth speak","","Gareth Robinson * Copyright © 2002 Thankyou Music","Gareth Robinson","","", +"Hear my prayer, O Lord","","Debbie Owens * Copyright © 1993 Maranatha! Praise Inc./Adm. by CopyCare","Debbie Owens","","", +"Hear, O Lord, our cry,","","Graham Kendrick. * Copyright © 1989 Make Way Music.","Graham Kendrick","","", +"Hear, O Shepherd","","David Fellingham. * Copyright © 1988 Kingsway's Thankyou Music.","David Fellingham","","", +"Hear our cry","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", +"Hear our prayer,","","Don Moen * Copyright © 2000 Integrity's Hosanna! Music/ Sovereign Music UK","Don Moen","","", +"Hear our prayers","","Gareth Robinson & Joannah Oyeniran * Copyright © 2002 Thankyou Music","Gareth Robinson | Joannah Oyeniran","","", +"Hear these praises from a grateful heart,","","Russell Fragar. * Copyright © 1996 Russell Fragar/Hillsongs Australia/Kingsway's Thankyou Music.","Russell Fragar","","", +"Heaven opened","","Ken Riley * Copyright © 2001 Thankyou Music","Ken Riley","","", +"Heavenly Father, I appreciate You.","","Author unknown. *","Author unknown","","", +"Here am I, a sinner free","","Matt Redman * Copyright © 1993 Thankyou Music","Matt Redman","","", +"Here I am, O God","","Andrew Ulugia * Copyright © 2001 Parachute Music New Zealand/ Adm. by Kingsway Music","Andrew Ulugia","","", +"Here I am once again,","","Craig Musseau. * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Craig Musseau","","", +"Here I am waiting","","Reuben Morgan * Copyright © 1998 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", +"Here I am, and I have come","","Paul Oakley. * Copyright © 1997 Kingsway's Thankyou Music.","Paul Oakley","","", +"Here I am, wholly available","","Chris Bowater. * Copyright © 1981 Sovereign Lifestyle Music.","Chris Bowater","","", +"Here I stand","","James Gregory * Copyright © 2000 Thankyou Music","James Gregory","","", +"Here I wait beneath the cross","","Tim Sherrington * Copyright © 2000 Thankyou Music","Tim Sherrington","","", +"Here in the presence","","Chris Bowater. * Copyright © 1996 Sovereign Lifestyle Music.","Chris Bowater","","", +"Here in Your arms","","Ken Riley * Copyright © 1999 Thankyou Music","Ken Riley","","", +"Here is bread,","","Graham Kendrick. * Copyright © 1991 Make Way Music.","Graham Kendrick","","", +"Here is love vast as the ocean (extra verse);;","","William Rees. *","William Rees","SOF #168","", +"Here is the risen Son,","","Michael Sandeman. * Copyright © 1997 Kingsway's Thankyou Music.","Michael Sandeman","","", +"Here we are, Lord,","","Noel & Tricia Richards & Gerald Coates. * Copyright © 1996 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards | Gerald Coates","","", +"Here we are, gathered","","Steve Hampton. * Copyright © 1978 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music","Steve Hampton","","", +"Here we stand in total surrender,","","Charlie Groves and Andy Piercy. * Copyright © 1995 IQ Music.","Charlie Groves and Andy Piercy","","", +"Hey Lord, O Lord","","Kevin Prosch * Copyright © 1996 Kevin Prosch/Adm. by Kingsway Music","Kevin Prosch","","", +"Higher, higher,","","Issac Balinda. * Copyright © 1990 Integrity's Hosanna! Music/Adm. by Kingsway's Thankyou Music.","Issac Balinda","","", +"His love is higher","","David Ruis. * Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","David Ruis","","", +"His name is higher","","Author unknown. *","Author unknown","","", +"His name is wonderful,","","Audrey Mieir. * Copyright © 1959/1987 Manna Music Inc/ Kingsway's Thankyou Music.","Audrey Mieir","","", +"His voice is the sea","","Bill Anderson. * Copyright © 1985 Kingsway's Thankyou Music.","Bill Anderson","","", +"Once In Royal David's City","","","Cecil F. Alexander","","", +"Bless the Lord O my Soul (10,000 reasons);;","10,000 Reasons","2011 Thankyou Music","Jonas Martin | Matt Redman","SH12 #11","", +"Blessed be Your name;;","","Matt & Beth Redman * Copyright © 2002 Thankyou Music","Matt Redman | Beth Redman","SOF #1193","", +"We believe in God the father;","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","SOF #572","", +"To Him who is able to keep me from falling;","","Copyright © 2009 Thankyou Music & Paintbrush Music/","Lou and Nathan Fellingham and Gary Sadler","SH11 #82","", +"Christ before me","","2001 Daybreak music","Mike Burn","","", +"Come Thou Fount","","Public Domain","Robert Robinson | John Wyeth","","Spiritual Hunger", +"Down into darkness;;+","","2009 Thankyou Music","Lou and Nathan Fellingham | Gary Sadler","","", +"Give to our God Immortal Praise","","","Isaac Watts","","", +"God is love","","","Author Unknown","","", +"How Firm A Foundation","","Public Domain","Rippon's "Selection of Hymns" (1787)","","Care | Guidance", +"I Have Decided To Follow Jesus","","","Folk Melody","","Commitment | Declaration | Obedience", +"It Is Well With My Soul","","Public Domain","Horatio Spafford and Philip Bliss","","Assurance | Comfort | Peace | Trust", +"Jesus, thou joy of loving hearts","","","Bernard of Clervaux","","", +"Leaning On The Everlasting Arms","","","Elisha A. Hoffman | Anthony J. Showalter","","Care | Guidance | Promises", +"Mr Noah built an ark","","","Author Unknown","","", +"My hope is built on nothing less","","","Edward Mote","","", +"Our God is a great big God","","","Jo Hemming | Nigel Hemming","","", +"Since I Have Been Redeemed","","","Edwin O. Excell","","Repentance | Salvation", +"Standing On The Promises","","Public Domain","By R. Kelso Carter (1849-1926)","","Assurance | Trust | Promises", +"This little light of mine","","","Author Unknown","","", +"We three kings from orient are","","","John Henry Hopkins","","", +"When We All Get To Heaven","","Public Domain","Eliza E. Hewitt | Emily D. Wilson","","Celebration | Eternal Life | Heaven", +"You are my all in all","","1991 Sheoherd's Heart Music","Dennis Jemigan","","", +"This is amazing grace;","","2012 Bethel Music; Phil Wickham Music; WB Music Corp","Josh Faro | Jeremy Riddle | Phil Wickham","Special #3","", +"Man of sorrows Lamb of God;","","Hillsong","Brook Ligertwood | Matt Crocker","Special #2","", +"Holy Spirit You are welcome here;","","2011 Capitol CMG Genesis and Jesus Culture Music","Kim Walker-Smith","Special #4","", +"We believe in God the father","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","SOF #572","", +"My hope is built on nothing less;;","Cornerstone;","","Edward Mote | Erid Liljero | Jonas Myrin | Reuben Morgan","Special #5","", +"Holy Spirit You are welcome here;","There's nothing worth more","","Katie Torwalt | Bryan Torwalt","Special #6","", +"Make us one, as you are one;","","","unknown","Special #7","", +"One thing remains (Your love never fails);","Higher than the mountain that I face","2010 Bethel Music; Mercy/Vineyard Publishing; ChristaJoy Music Publishing","Brian Johnson | Christa Black | Jeremy Riddle","Special #8","", +"Oceans – Where feet may fail (You call me out)","You call me out upon the waters","© Hillsong United","Hillsong United","","", +"We stand and lift up our hands","","2003 kingswaysongs.com","C Tomlin | L Giglio","","", +"Strength will rise as we wait","","2005 Thank You Music","Brenton Brown | Ken Riley","","", +"I Will Worship","","Shadetree Music (1993)","D Ruis","","", +"The Splendour of the King","","© 2004 Kingsway/Sixsteps Music","Chris Tomlin | Jesse Reeves | Ed Cash","","", +"Jesus Lover Of My Soul","","Kingsway/Thankyou Music 1995","P Oakley","","", +"When The Music Fades","","1997 Kingsway Music","Matt Redman","","", +"This Is My Desire","","1991 Kingsway Thankyou Music","Reuben Morgan","","", +"To God be the glory","","W Doane 1832-1916","W Doane","","", +"Spirit break out","","None","Luke Helebronth","","", From 8bfb0e47590780bacb032472ed22fe66db2b1d18 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 3 Sep 2016 08:14:08 +0100 Subject: [PATCH 2/8] fix typos --- openlp/plugins/custom/lib/mediaitem.py | 2 +- openlp/plugins/songs/forms/editsongform.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/plugins/custom/lib/mediaitem.py b/openlp/plugins/custom/lib/mediaitem.py index e9e26111f..2b999da19 100644 --- a/openlp/plugins/custom/lib/mediaitem.py +++ b/openlp/plugins/custom/lib/mediaitem.py @@ -350,7 +350,7 @@ class CustomMediaItem(MediaManagerItem): :param string: The search string :param show_error: The error string to be show. """ - search = '%{search}%'.forma(search=string.lower()) + search = '%{search}%'.format(search=string.lower()) search_results = self.plugin.db_manager.get_all_objects(CustomSlide, or_(func.lower(CustomSlide.title).like(search), func.lower(CustomSlide.text).like(search)), diff --git a/openlp/plugins/songs/forms/editsongform.py b/openlp/plugins/songs/forms/editsongform.py index 200e1436f..a17c9fb5f 100644 --- a/openlp/plugins/songs/forms/editsongform.py +++ b/openlp/plugins/songs/forms/editsongform.py @@ -317,7 +317,7 @@ class EditSongForm(QtWidgets.QDialog, Ui_EditSongDialog, RegistryProperties): self.song.verse_order = re.sub('([' + verse.upper() + verse.lower() + '])(\W|$)', r'\g<1>1\2', self.song.verse_order) except: - log.exception('Problem processing song Lyrics \n{xml}'.forma(xml=sxml.dump_xml())) + log.exception('Problem processing song Lyrics \n{xml}'.format(xml=sxml.dump_xml())) raise def keyPressEvent(self, event): From b3f397901a73f7fd0c69ad883d0d8f1d0b723b3e Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 3 Sep 2016 08:15:40 +0100 Subject: [PATCH 3/8] remove extra file --- song_index.csv | 1756 ------------------------------------------------ 1 file changed, 1756 deletions(-) delete mode 100644 song_index.csv diff --git a/song_index.csv b/song_index.csv deleted file mode 100644 index 7c0c11a3a..000000000 --- a/song_index.csv +++ /dev/null @@ -1,1756 +0,0 @@ -"5000+ hungry folk,","","Ian Smale. * Copyright © 1985 Kingsway's Thankyou Music.","Ian Smale","","", -"A humble heart","","Brian Houston * Copyright © 2000 Thankyou Music","Brian Houston","","", -"A new commandment","","Author unknown. *","Author unknown","","", -"A refuge for the poor","","Chris Tomlin & Jesse Reeves * Copyright © 2000 worshiptogether.com songs/Six Steps Music/Adm. by Kingsway Music","Chris Tomlin | Jesse Reeves","","", -"A safe stronghold our God is still,","","Martin Luther. * Tr. Thomas Carlyle.","Martin Luther","","", -"Abba Father,","","Dave Bilbrough. * Copyright © 1977 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Abide with me","","W. H. Monk. *","W. H. Monk","","", -"Above all powers;","","Lenny LeBlanc & Paul Baloche * Copyright © 1999 Lensongs Publishing/Integrity's Hosanna! Music/Sovereign Music UK","Lenny LeBlanc | Paul Baloche","SOF #1151","", -"Abraham's Son,","","Bob Baker. * Copyright © 1994 Mercy/Vineyard Publishing/Adm. by CopyCare.","Bob Baker","Special #1","", -"Adoration (SH09 92)","","Copyright 2008 Thankyou Music/ Kingsway Songs","Brenton Brown","","", -"Again and again","","Dave Bilbrough * Copyright © 2002 Thankyou Music","Dave Bilbrough","","", -"Ah Lord God,","","Kay Chance. * Copyright © 1976 Kay Chance.","Kay Chance","","", -"All around the world","","Paul Oakley. * Copyright © 1997 Kingsway's Thankyou Music.","Paul Oakley","","", -"All around Your throne","","Paul Oakley * Copyright © 1999 Thankyou Music","Paul Oakley","","", -"All consuming fire,","","Randy Wright. * Copyright © 1987 Integrity's Hosanna!Music/ Adm. by Kingsway's Thankyou Music.","Randy Wright","","", -"All creation bows","","Mike Blow. * Copyright © 1997 Kingsway's Thankyou Music.","Mike Blow","","", -"All creation cries to You","","Marty Sampson * Copyright © 2001 Marty Sampson/Hillsong Publishing/Kingsway Music","Marty Sampson","","", -"All creatures of our God and King,","","St Francis of Assisi. * Tr. William Henry Draper.","St Francis of Assisi","","", -"All glory, laud and honour","","Theodulph of Orleans (c.750-821) * Tr. John Mason Neale (1818-66)","Theodulph of Orleans (c.750-821)","","", -"All hail King Jesus!","","Dave Moody. * Copyright © 1984 Glory Alleluia Music/ Tempo Music Publications/Adm. by CopyCare.","Dave Moody","","", -"All hail the Lamb;","","Dave Bilbrough. * Copyright © 1987 Kingsway's Thankyou Music.","Dave Bilbrough","SOF #8","", -"All hail the power of Jesus' name!","","Edward Perronet. * Revised John Rippon.","Edward Perronet","","", -"All heaven declares","","Noel and Tricia Richards. * Copyright © 1987 Kingsway's Thankyou Music.","Noel and Tricia Richards","SOF #10","", -"All heaven waits","","Graham Kendrick & Chris Rolinson. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick | Chris Rolinson","","", -"All I once held dear;","","Graham Kendrick * Copyright © 1993 Make Way Music.","Graham Kendrick","SOF #646","", -"All my days","","Stuart Townend * Copyright © 1998 Thankyou Music","Stuart Townend","","", -"All my life","","Liz Holland * Copyright © 1999 Thankyou Music","Liz Holland","","", -"All of me","","Gareth Robinson * Copyright © 2001 Thankyou Music","Gareth Robinson","","", -"All of You","","Chris Tomlin & Louie Giglio * Copyright © 2002 worshiptogether.com songs/Six Steps Music/Adm. by Kingsway Music","Chris Tomlin | Louie Giglio","","", -"All over the world the Spirit is moving,","","Roy Turner. * Copyright © 1984 Kingsway's Thankyou Music.","Roy Turner","","", -"All people that on earth do dwell,","","William Kethe. *","William Kethe","","", -"All that I am","","James Wright. * Copyright © 1994 Kingsway's Thankyou Music.","James Wright","","", -"All the ends of the earth","","David Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham","","", -"All the riches of His grace,","","Jan Harrington. * Copyright © 1975 Celebration/Kingsway's Thankyou Music.","Jan Harrington","","", -"All the way my Saviour leads me,","","Fanny Crosby (1820-1915) *","Fanny Crosby (1820-1915)","","", -"All things bright and beautiful,","","Cecil F. Alexander. *","Cecil F. Alexander","","", -"All to Jesus I surrender","","J.W. van de Venter (1855-1939) * Copyright © HarperCollins Religious/Adm. by CopyCare","J.W. van de Venter (1855-1939)","","", -"All who are thirsty","","Brenton Brown & Glenn Robertson * Copyright © 1998 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Brenton Brown | Glenn Robertson","","", -"All You angels round His throne,","","Marc Nelson. * Copyright © 1989 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Marc Nelson","","", -"All You people,","","John Gibson. * Copyright © 1996 Kingsway's Thankyou Music.","John Gibson","","", -"Alleluia, alleluia,","","Donald Fishel. * Copyright © 1973 The Word of God Music/Adm by CopyCare","Donald Fishel","","", -"Alleluia, alleluia","","Tony Ryce-Kelly & Rónán Johnston * Copyright © 1997 Emmausongs/Adm. by Daybreak Music Ltd","Tony Ryce-Kelly | Rónán Johnston","","", -"Alleluia! alleluia!","","Sherrell Prebble and Howard Clark. * Copyright © 1978 Celebration/ Kingsway's Thankyou Music.","Sherrell Prebble and Howard Clark","","", -"Alleluia,","","Jerry Sinclair. * Copyright © 1972,1978 Manna Music Inc/ Kingsway's Thankyou Music.","Jerry Sinclair","","", -"Almighty God, Holy one,","","Rhys Scott * Copyright © 2001 Thankyou Music","Rhys Scott","","", -"Almighty God, I have heard","","Nathan Fellingham & Adrian Watts. * Copyright © 1997 Kingsway's Thankyou Music.","Nathan Fellingham | Adrian Watts","","", -"Almighty God, my Redeemer,","","Darlene Zschech. * Copyright © 1996 Darlene Zschech/Hillsongs Australia/Kingsway's Thankyou Music.","Darlene Zschech","","", -"Almighty God, our heavenly Father,","","Copyright © 1980 Central Board of Finance * of the Church of England. Used by permission.","Copyright © 1980 Central Board of Finance","","", -"Almighty God to whom all hearts are open,","","The Alternative Service Book (1980) * Copyright © The Central Board of Finance of the Church of England, 1980; The Archbishops' Council, 1999","The Alternative Service Book (1980)","","", -"Almighty God, we bring you priase ,","","Austin Martin. * Copyright © 1983 Kingsway's Thankyou Music.","Austin Martin","","", -"Almighty God, faithful and true","","Mark Vargeson * Copyright © 2001 Thankyou Music","Mark Vargeson","","", -"Almighty sovereign Lord,","","Phil Lawson Johnston. * Copyright © 1987 Kingsway's Thankyou Music.","Phil Lawson Johnston","","", -"Amazing Grace (My chains are gone);","","2006 worshiptogether.com songs/sixsteps Music","J Newton/J P Rees | E O Excell","SOF #1702","", -"Amazing grace, (Nat Fellingham)","","John Newton (1725-1807), adapt. Nathan Fellingham * Copyright © 2000 Thankyou Music","John Newton (1725-1807) | adapt. Nathan Fellingham","","", -"Amazing grace!;","","John Newton. *","John Newton","SOF #19","", -"Among the gods","","Carol Owen. * Copyright © 1993 Kingsway's Thankyou Music.","Carol Owen","","", -"An army of ordinary people,","","Dave Bilbrough. * Copyright © 1983 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"And after all","","Paul Oakley * Copyright © 2001 Thankyou Music","Paul Oakley","","", -"And can it be","","Charles Wesley. *","Charles Wesley","","", -"And from Your fulness","","Mark Altrogge. * Copyright © 1992 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", -"And He shall reign","","Graham Kendrick. * Copyright © 1991 Make Way Music.","Graham Kendrick","","", -"And I'm forgiven","","Billy James Foote * Copyright © 1999 worshiptogether.com songs/Adm. by Kingsway Music","Billy James Foote","","", -"Angel voices ever singing","","Francis Pott. *","Francis Pott","","", -"Angels bow","","Keith Getty * Copyright © 2002 Thankyou Music","Keith Getty","","", -"Angels, from the realms of glory,","","James Montgomery. *","James Montgomery","","", -"Anointing, fall on me,","","Donn Thomas. * Copyright © 1992 John T. Benson Publishing Co/Adm. by CopyCare.","Donn Thomas","","", -"Are the prayers of the saints","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", -"Are we the people","","Noel & Tricia Richards. * Copyright © 1996 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"Around You such beauty","","Steve & Vikki Cook * Copyright © 1999 PDI Worship/Adm. by CopyCare","Steve Cook | Vikki Cook","","", -"As for me and my house,","","Jim Bailey * Copyright © 1997 Thankyou Music","Jim Bailey","","", -"As high as the heavens ;","You are the voice of hope;","2002 Thankyou Music","Lara Martin (Abundant Life Ministries)","SOF #1711","", -"As one in Christ the Lord (SH08-09)","","2008 Thankyou Music","Stuart Barbour","","", -"As sure as gold is precious","","Robin Mark * Copyright © 1998 Daybreak Music Ltd","Robin Mark","","", -"As the deer pants (Richard Lewis)","","Richard Lewis. * Copyright © 1997 Kingsway's Thankyou Music.","Richard Lewis","","", -"As the deer for the water","","Martin J. Nystrom. * Copyright © 1983 Restoration Music Ltd./ Adm. by Sovereign Music UK.","Martin J. Nystrom","","", -"As water to the thirsty,","","Timothy Dudley-Smith. * Copyright © Timothy Dudley-Smith.","Timothy Dudley-Smith","","", -"As we are gathered","","John Daniels. * Copyright © 1979 Word's Spirit of Praise Music/ Adm. by CopyCare.","John Daniels","","", -"As we behold You,","","David Baroni. * Copyright © 1992 Pleasant Hill Music/John T. Benson Publishing Co/Adm. by CopyCare.","David Baroni","","", -"As we bring our songs","","Graham Kendrick * Copyright © 2002 Make Way Music","Graham Kendrick","","", -"As we come today,","","Matt Redman * Copyright © 2000 Thankyou Music","Matt Redman","","", -"As we come with praise","","Dale Garratt. * Copyright © 1982 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Dale Garratt","","", -"As we lift up Your name,","","Paul Baloche * Copyright © 1996 Integrity's Hosanna! Music/Sovereign Music UK","Paul Baloche","","", -"As we see the world","","Lex Loizides. * Copyright © 1996 Kingsway's Thankyou Music.","Lex Loizides","","", -"As we seek Your face,","","Dave Bilbrough. * Copyright © 1990 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"As with gladness","","W. C. Dix. *","W. C. Dix","","", -"Ascribe greatness","","Mary Lou King and Mary Kirkbride Barthow. * Copyright © 1979 Peter West/ Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Mary Lou King and Mary Kirkbride Barthow","","", -"At the foot of the cross,","","Copyright © 1992 Sovereign Music UK. *","Derek Bond","","", -"At the foot of the cross","","Tré Sheppard * Copyright © 2002 Thankyou Music","Tré Sheppard","","", -"At the name of Jesus","","Caroline Maria Noel. *","Caroline Maria Noel","","", -"At this table we remember","","Martin E. Leckebusch * Copyright © 2000 Kevin Mayhew Ltd","Martin E. Leckebusch","","", -"At this time of giving,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"At Your feet we fall;","","David Fellingham. * Copyright © 1982 Kingsway's Thankyou Music.","David Fellingham","SOF #34","", -"Awake, awake, O Zion, (Fellingham)","","Nathan Fellingham * Copyright © 1999 Thankyou Music","Nathan Fellingham","","", -"Awake, awake, O Zion,","","David J. Hadden. * Copyright © 1982 Word's Spirit of Praise Music/Adm. by CopyCare.","David J. Hadden","","", -"Awake, my soul","","Owen Hurter * Copyright © 2001 Thankyou Music","Owen Hurter","","", -"Away in a manger,","","Verses 1 & 2 unknown. * Verse 3 J. T. McFarland.","Author Unknown","","", -"Baby Jesus in the manger,","","Gill Broomhall. * Copyright © 1992 Kingsway's Thankyou Music & Sovereign Music UK.","Gill Broomhall","","", -"Be bold, be strong;","","Morris Chapman. * Copyright © 1983 Word Music/Adm. by CopyCare.","Morris Chapman","SOF #37","", -"Be free","","Dave Bilbrough. * Copyright © 1991 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Be glorified,","","Billy Funk. * Copyright © 1991 Integrity's Praise! Music/Adm. by Kingsway's Thankyou Music.","Billy Funk","","", -"Be known to us in breaking bread,","","James Montgomery. *","James Montgomery","","", -"Be lifted up","","Paul Oakley * Copyright © 2001 Thankyou Music","Paul Oakley","","", -"Be still and know","","Author unknown. *","Author unknown","","", -"Be still and know","","Lex Loizides. * Copyright © 1995 Kingsway's Thankyou Music.","Lex Loizides","","", -"Be still for the presence of the Lord,","","David J. Evans. * Copyright © 1986 Kingsway's Thankyou Music.","David J. Evans","SOF #40","", -"Be thou my vision;","","Tr. Mary E. Byrne & Eleanor H. Hull. *","Tr. Mary E. Byrne | Eleanor H. Hull","SOF #42","", -"Beautiful Lord,","","Darlene Zschech * Copyright © 1997 Darlene Zschech/Hillsong Publishing/ Kingsway Music","Darlene Zschech","","", -"Beauty for brokenness,","","Graham Kendrick. * Copyright © 1993 Make Way Music.","Graham Kendrick","","", -"Because of You,","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", -"Before one ever came to be","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", -"Before the throne of God above;","","Charitie L. Bancroft (1841-92) *","Charitie L. Bancroft (1841-92)","SOF #1187","", -"Befriended","","Matt Redman * Copyright © 2002 Thankyou Music","Matt Redman","","", -"Behold the darkness.","","Eric Glass. * Copyright © Gordon V. Thompson Music, a division of Warner/Chappell Music/IMP.","Eric Glass","","", -"Behold the Lamb of glory comes,","","Robert Critchley * Copyright © 1996 Thankyou Music","Robert Critchley","","", -"Behold the Lord","","Gerald Coates & Noel Richards. * Copyright © 1991 Kingsway's Thankyou Music.","Gerald Coates | Noel Richards","","", -"Behold the servant of the Lord:","","Charles Wesley. *","Charles Wesley","","", -"Bells they are ringing,","","Jim Bailey. * Copyright © 1996 Kingsway's Thankyou Music.","Jim Bailey","","", -"Belovèd and blessèd,","","Stuart Townend * Copyright © 2000 Thankyou Music","Stuart Townend","","", -"Beneath the cross of Jesus (SH08-14)","","","Author Unknown","","", -"Beneath the cross of Jesus","","Elizabeth C. Clephane. *","Elizabeth C. Clephane","","", -"Bind us together;","","Bob Gillman. * Copyright © 1977 Kingsway's Thankyou Music.","Bob Gillman","SOF #43","", -"Bless the Lord, my soul,","","Jacques Berthier/Taizé. * Copyright © Ateliers et Presses de Taizé.","Jacques Berthier/Taizé","","", -"Bless the Lord, O my soul,","","Copyright © 1989 Kingsway’s Thankyou Music.","Phil Rogers","","", -"Bless the Lord, O my soul,","","Author unknown. *","Author unknown","","", -"Blessèd are the poor","","David Lyle Morris & Pat Youd * Copyright © 2000 Thankyou Music","David Lyle Morris | Pat Youd","","", -"Blessèd assurance;","","Fanny J. Crosby. *","Fanny J. Crosby","SOF #44","", -"Blessèd be the God and Father","","David Fellingham. * Copyright © 1983 Kingsway's Thankyou Music.","David Fellingham","","", -"Blessed be the name of the Lord He is our rock","","Kevin Prosch & Danny Daniels. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Kevin Prosch | Danny Daniels","","", -"Blessèd be the name of the Lord Strong tower,","","(From “Love from Below” Wild Goose Publications 1989) * No permission is required to reproduce this song for non-commercial purposes Clinton Utterbach. Copyright © 1988 Polygram Music Publishing Ltd.","(From “Love from Below” Wild Goose Publications 1989)","","", -"Blessèd Jesus,","","Joey Holder. * Copyright © 1987 Far Lane Publishing/ Kingsway's Thankyou Music.","Joey Holder","","", -"Blessing and honour,","","Gary Sadler & Jamie Harvill. * Copyright © 1992 Integrity's Praise! Music/ Adm. by Kingsway's Thankyou Music.","Gary Sadler | Jamie Harvill","","", -"Blest be the tie","","John Fawcett. *","John Fawcett","","", -"Born in the night","","Geoffrey Ainger * Copyright © 1964 Stainer & Bell Ltd","Geoffrey Ainger","","", -"Break thou the bread of life,","","Verses 1 & 4 Mary A. Lathbury. * Verses 2 & 3 Alexander Groves.","Verses 1 | 4 Mary A. Lathbury","","", -"Breathe on me, breath of God (Fellingham),","","Edwin Hatch, adpt. David Fellingham. * Copyright © 1995 Kingsway's Thankyou Music.","Edwin Hatch | adpt. David Fellingham","","", -"Breathe on me, breath of God,","","Edwin Hatch. *","Edwin Hatch","","", -"Breathe on me, O wind of change","","Andrea Lawrence & Noel Robinson * Copyright © 2000 Thankyou Music","Andrea Lawrence | Noel Robinson","","", -"Breathe on me, Spirit of Jesus","","For permission to reproduce this song for non-commercial purposes, * please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB Tina Pownall. Copyright © 1987 Sovereign Music UK.","For permission to reproduce this song for non-commercial purposes","","", -"Bring a psalm","","Brent Chambers. * Copyright © 1979 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Brent Chambers","","", -"Bring heaven to earth, Lord;;","","2007 Andrew Flannagan","Andy Flannagan","SOF #2234","", -"Bring Your best to their worst","","John L. Bell * Copyright © 1998 WGRG, Iona Community","John L. Bell","","", -"Broken for me,","","Janet Lunt. * Copyright © 1978 Sovereign Music UK.","Janet Lunt","","", -"Brother, let me be Your servant,","","Richard Gillard. * Copyright © 1977 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Richard Gillard","","", -"Burn it deep","","Kent & Carla Henry. * Copyright © 1989 Kent Henry Ministries/ Kingsway's Thankyou Music.","Kent Henry | Carla Henry","","", -"By Your blood","","David Fellingham. * Copyright © 1997 Kingsway's Thankyou Music.","David Fellingham","","", -"By Your side","","Noel & Tricia Richards. * Copyright © 1989 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"Called to a battle,","","Noel & Tricia Richards. * Copyright © 1992 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"Calling all nations,","","Noel Richards & Wayne Drain * Copyright © 1998 Thankyou Music","Noel Richards | Wayne Drain","","", -"Can a nation be changed?","","Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Matt Redman","","", -"Can I ascend","","Matt Redman. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman","","", -"Catch the fire,","","Chris Bowater. * Copyright © 1996 Sovereign Lifestyle Music.","Chris Bowater","","", -"Cause me to come","","Edward R. Miller. * Copyright © 1974 Maranatha! Music/ Adm. by CopyCare.","Edward R. Miller","","", -"Celebrate in the Lord,","","Evan Rogers * Copyright © 2000 Thankyou Music","Evan Rogers","","", -"Celebrate Jesus,","","Gary Oliver. * Copyright © 1988 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Gary Oliver","","", -"Change my heart, O God,","","Eddie Espinosa. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare.","Eddie Espinosa","","", -"Christ be in my waking","","2011 Thankyou Music","Stuart Townend","","", -"Christ is made the sure foundation","","From the Latin, J.M. Neale (1818-66) * Copyright © in this version Jubilate Hymns","From the Latin | J.M. Neale (1818-66)","","", -"Christ is risen!","","Chris Rolinson. * Copyright © 1989 Kingsway's Thankyou Music.","Chris Rolinson","","", -"Christ the Lord is risen today:","","Charles Wesley. *","Charles Wesley","","", -"Christ triumphant,","","Michael Saward. * Words Copyright © Michael Saward/ Jubilate Hymns.","Michael Saward","","", -"Christ, whose glory fills the skies","","Charles Wesley (1707-88) *","Charles Wesley (1707-88)","","", -"Christians awake!","","J. Byrom, altd. *","J. Byrom | altd","","", -"Christ's is the world","","John L. Bell & Graham Maule. * Copyright © 1989 WGRG, Iona Community.","John L. Bell | Graham Maule","","", -"Clap Your hands, all You nations,","","(From “Love from Below” Wild Goose Publications 1989) * No permission is required to reproduce this song for non-commercial purposes Ian White. Copyright © 1987 Little Misty Music/ Kingsway's Thankyou Music.","(From “Love from Below” Wild Goose Publications 1989)","","", -"Clear the road,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"Closer to You,","","Patricia Morgan. * Copyright © 1991 Kingsway's Thankyou Music.","Patricia Morgan","","", -"Colours of day;","","Sue McClellan, John Pac, Keith Ryecroft. * Copyright © 1974 Kingsway's Thankyou Music.","Sue McClellan | John Pac | Keith Ryecroft","SOF #64","", -"Come all You people","","Alexander Gondo * Copyright © World Council of Churches","Alexander Gondo","","", -"Come and join the celebration,","","Valerie Collison. * Copyright © 1972 High-Fye Music.","Valerie Collison","","", -"Come and praise Him, royal priesthood,","","Andy Carter. * Copyright © 1977 Kingsway's Thankyou Music.","Andy Carter","","", -"Come and praise the living God,","","Mike Kerry. * Copyright © 1982 Kingsway's Thankyou Music.","Mike Kerry","","", -"Come and see,","","Graham Kendrick. * Copyright © 1989 Make Way Music.","Graham Kendrick","","", -"Come bless the Lord,","","Author unknown. *","Author unknown","","", -"Come down, O love divine","","after Bianco da Siena (1367-1434) * Richard F. Littledale (1833-90)","after Bianco da Siena (1367-1434)","","", -"Come, Holy Spirit,","","For permission to reproduce this song for non-commercial purposes, * please contact Hi-Fye Music 8-9 Frith Street, London, W1V 5TZ Loralee Thiessen. Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","For permission to reproduce this song for non-commercial purposes","","", -"Come into the heavenlies","","Billy Funk. * Copyright © 1992 Integrity's Praise! Music/ Adm. by Kingsway's Thankyou Music.","Billy Funk","","", -"Come into the Holy of holies,","","John Sellers. * Copyright © 1984 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","John Sellers","","", -"Come, let us join our cheerful songs","","Isaac Watts. *","Isaac Watts","","", -"Come let us return","","Kevin Prosch. * Copyright © 1993 7th Time Music/Kingsway's Thankyou Music.","Kevin Prosch","","", -"Come, let us sing for joy to the world","","Brent Chambers. * Copyright © 1985 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Brent Chambers","","", -"Come, let us sing of a wonderful love,","","Robert Walmsley. *","Robert Walmsley","","", -"Come, let us worship Jesus,","","Graham Kendrick. * Copyright © 1992 Make Way Music.","Graham Kendrick","","", -"Come, let us worship the King of kings","","Nathan Fellingham * Copyright © 2001 Thankyou Music","Nathan Fellingham","","", -"Come, my soul, and praise the Lord.","","John Pantry. * Copyright © 1992 Kingsway's Thankyou Music.","John Pantry","","", -"Come near to me,","","Alan Rose * Copyright © 1998 Thankyou Music","Alan Rose","","", -"Come, now is the time","","Brian Doerksen * Copyright © 1998 Vineyard Songs (UK/Eire)/ Adm. by CopyCare","Brian Doerksen","","", -"Come on and celebrate;","","Patricia Morgan & Dave Bankhead. * Copyright © 1984 Kingsway's Thankyou Music.","Patricia Morgan | Dave Bankhead","SOF #73","", -"Come out of darkness","","Copyright © 1996 Kingsway's * Thankyou Music.","Copyright © 1996 Kingsway's","","", -"Come, praise the Lord","","Keith Getty & Kristyn Lennox * Copyright © 2002 Thankyou Music","Keith Getty | Kristyn Lennox","","", -"Come see the beauty of the Lord,","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Come, see the Lord","","Martin E. Leckebusch * Copyright © 2000 Kevin Mayhew Ltd","Martin E. Leckebusch","","", -"Come, see this glorious light","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","","", -"Come to the power,","","Richard Lewis. * Copyright © 1996 Kingsway's Thankyou Music.","Richard Lewis","","", -"Come to the table,","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", -"Come, wounded healer","","Martin E. Leckebusch * Copyright © 2000 Kevin Mayhew Ltd","Martin E. Leckebusch","","", -"Come, ye thankful people, come,","","Henry Alford. *","Henry Alford","","", -"Confidence, we have confidence","","Chris Bowater. * Copyright © 1994 Sovereign Lifestyle Music.","Chris Bowater","","", -"Create in me a clean heart","","David Fellingham. * Copyright © 1983 Kingsway's Thankyou Music.","David Fellingham","","", -"Create in me thr purest of hearts","","Matt Redman * Copyright © 1996 Thankyou Music","Matt Redman","","", -"Crown Him with many crowns,","","Matthew Bridges & Godfrey Thring. *","Matthew Bridges | Godfrey Thring","","", -"Darkness like a shroud","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Day after day, I'll search to find you","","Tim Hughes * Copyright © 2001 Thankyou Music","Tim Hughes","","", -"Day by day","","Geoff Bullock. * Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","Geoff Bullock","","", -"Day of favour,","","David Fellingham. * Copyright © 1995 Kingsway's Thankyou Music.","David Fellingham","","", -"Days of heaven","","David Fellingham. * Copyright © 1994 Kingsway's Thankyou Music.","David Fellingham","","", -"Dear Lord and Father of mankind,","","John G. Whittier. *","John G. Whittier","","", -"Did You feel the mountains tremble?","","Martin Smith. * Copyright © 1994 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", -"Do not be afraid","","Gerard Markland * Copyright © 1978 Kevin Mayhew Ltd","Gerard Markland","","", -"Do something new, Lord,","","Chris Bowater. * Copyright © 1986 Sovereign Lifestyle Music.","Chris Bowater","","", -"Do You love to praise the Lord?","","Wayne Drain, Noel Richards, Wayne Freeman, * Neil Costello & Bradley Mason Copyright © 2001 Thankyou Music","Wayne Drain | Noel Richards | Wayne Freeman","","", -"Don't be lazy,","","Ian Smale. * Copyright © 1987 Kingsway's Thankyou Music.","Ian Smale","","", -"Don't build Your house","","Karen Lafferty * Copyright © 1981 Maranatha! Praise Inc./Adm. by CopyCare","Karen Lafferty","","", -"Don't let my love grow cold;","","Brian Doerksen. * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen","","", -"Down the mountain the river flows,","","Andy Park. * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Andy Park","","", -"Draw me close to the cross,","","Geoff & Judith Roberts. * Copyright © 1996 Kingsway's Thankyou Music.","Geoff Roberts | Judith Roberts","","", -"Draw me close to You,","","Kelly Carpenter * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare","Kelly Carpenter","","", -"Draw me closer, Lord","","Stuart DeVane & Glenn Gore. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Stuart DeVane | Glenn Gore","","", -"Draw me closer, precious Saviour","","Ian Hannah * Copyright © 2001 Thankyou Music","Ian Hannah","","", -"Draw me near to You","","Dave Doran * Copyright © 2001 Thankyou Music","Dave Doran","","", -"Draw me to Your side, ,","","Brian Houston & Tom Brock * Copyright © 2002 Thankyou Music","Brian Houston | Tom Brock","","", -"Drawn from every tribe,","","David Lyle Morris & Faith Forster * Copyright © 2000 Thankyou Music","David Lyle Morris | Faith Forster","","", -"Eat this bread","","Taizé, music: Jacques Berthier (1923-94) * Copyright © Ateliers et Presses de Taizé","Taizé | music: Jacques Berthier (1923-94)","","", -"El-shaddai,","","John Thompson & Michael Card. * Copyright © 1981 Whole Armor Publishing/ Full Armor Publishing/Songs for Today Windswept Pacific Music Limited.","John Thompson | Michael Card","","", -"Emmanuel,","","Bob McGee. * Copyright © 1976 C A Music/Music Services/CopyCare.","Bob McGee","","", -"Endless Hallelujah (SH12 88)!","","2011 Thankyou Music/Said and Done Music","Matt Redman","SOF #2642","", -"Enter in","","Carol Mundy. * Copyright © 1988 Kingsway's Thankyou Music.","Carol Mundy","","", -"Eternal covenant","","David Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham","","", -"Eternal Father, strong to save","","William Whiting (1825-78) *","William Whiting (1825-78)","","", -"Eternal God,","","David Fellingham. * Copyright © 1983 Kingsway's Thankyou Music.","David Fellingham","","", -"Even though I walk (SH08-26}","","","Author Unknown","","", -"Everlasting","","Sue Rinaldi & Caroline Bonnett * Copyright © 2001 Thankyou Music","Sue Rinaldi | Caroline Bonnett","","", -"Every breath I breathe","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", -"Every day He is watching","","Robin Mark * Copyright © 2001 Thankyou Music","Robin Mark","","", -"Every day, I see your beauty more","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", -"Every morning","","Noel Richards & Wayne Drain * Copyright © 2001 Thankyou Music","Noel Richards | Wayne Drain","","", -"Everyone needs compassion;","","2006 Ben Fielding & Reuben Morgan/Hillsong Publishing","Reuben Morgan | Ben Fielding","SOF #1757","", -"Exalt the Lord our God,","","Rick Ridings. * Copyright © 1977 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Rick Ridings","","", -"Exalted, You are exalted,","","Dave Bilbrough. * Copyright © 1990 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Facing a task unfinished;","","Frank Houghton. * Copyright © Overseas Missionary Fellowship.","Frank Houghton","","", -"Faithful and true","","Dave Bilbrough. * Copyright © 1995 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Faithful God,","","Chris Bowater. * Copyright © 1990 Sovereign Lifestyle Music.","Chris Bowater","","", -"Faithful one, so unchanging;","","Brian Doerksen. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Brian Doerksen","SOF #89","", -"Falling, moving closer","","Dave Wellington * Copyright © 1999 Thankyou Music","Dave Wellington","","", -"Far above all other loves,","","David Fellingham. * Copyright © 1997 Kingsway's Thankyou Music.","David Fellingham","","", -"Far and near","","Graham Kendrick. * Copyright © 1996 Make Way Music.","Graham Kendrick","","", -"Father God, I give you","","Jack Hayford. * Copyright © 1981 Rocksmith Music/ Leosong Copyright Service.","Jack Hayford","","", -"Father God, I wonder","","Copyright © 1984 Kingsway's * Thankyou Music.","Copyright © 1984 Kingsway's","","", -"Father God, fill this place","","Dave Bilbrough. * Copyright © 1995 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Father God, we worship you","","Graham Kendrick. * Copyright © 1981 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Father, hear the prayer we offer","","Love Maria Willis (1824-1908) *","Love Maria Willis (1824-1908)","","", -"Father here I am","","Danny Daniels. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", -"Father, I come to You,","","John Barnett. * Copyright © 1989 Mercy/Vineyard Publishing/ Adm. by CopyCare.","John Barnett","","", -"Father, I place into Your hands","","Jenny Hewer. * Copyright © 1975 Kingsway's Thankyou Music.","Jenny Hewer","","", -"Father in heaven, how we love You;","","Bob Fitts. * Copyright © 1985 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Bob Fitts","SOF #96","", -"Father in heaven, holy is your name","","Jim Bailey. * Copyright © 1996 Kingsway's Thankyou Music.","Jim Bailey","","", -"Father in heaven, our voices we raise","","Dave Bilbrough. * Copyright © 1985 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Father, into Your courts I will enter","","Andrew Ulugia & Wayne Huirua * Copyright © 2001 Parachute Music New Zealand/ Adm. by Kingsway Music","Andrew Ulugia | Wayne Huirua","","", -"Father, like rain from the skies,","","Paul McWilliams & William Thompson. * Copyright © 1993 Kingsway's Thankyou Music.","Paul McWilliams | William Thompson","","", -"Father, make us one,","","Rick Ridings. * Copyright © 1976 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Rick Ridings","","", -"Father of creation,","","David Ruis. * Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","David Ruis","","", -"Father of life, draw me closer,","","Darlene Zschech * Copyright © 1995 Darlene Zschech/Hillsong Publishing/ Kingsway Music","Darlene Zschech","","", -"Father, we adore You, we are your children","","Philip Lawson Johnston. * Copyright © 1989 Kingsway's Thankyou Music.","Philip Lawson Johnston","","", -"Father, we adore You, lay our lives","","Terry Coelho. * Copyright © 1972 Maranatha! Music/ Adm. by CopyCare.","Terry Coelho","","", -"Father, we adore You,","","Carl Tuttle. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare.","Carl Tuttle","","", -"Father, we have sinned against You","","Geoff Twigg * Copyright © Geoff Twigg/Jubilate Hymns Ltd","Geoff Twigg","","", -"Father, we love You,","","Donna Adkins. * Copyright © 1976 Maranatha! Music/ Adm. by CopyCare.","Donna Adkins","","", -"Father, You are my portion","","Andy Park. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", -"Father, You have given","","Copyright © 1996 Kingsway's * Thankyou Music.","Copyright © 1996 Kingsway's","","", -"Father, Your love is precious","","Everett Perry. * Copyright © 1983 Kingsway's Thankyou Music.","Everett Perry","","", -"Father, I can call you Father","","Danny Daniels. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", -"Fear not, rejoice and be glad,","","Priscilla Wright Porter. * Copyright © 1971, 1975 Celebration/ Kingsway's Thankyou Music.","Priscilla Wright Porter","","", -"Fear not, for I am with you","","Phil Pringle. * Copyright © 1987 Seam of Gold/ Kingsway's Thankyou Music.","Phil Pringle","","", -"Fight the good fight","","John S. B. Monsell. *","John S. B. Monsell","","", -"Fill thou my life,","","Horatius Bonar. *","Horatius Bonar","","", -"Fill Your hearts with joy","","Timothy Dudley-Smith. * Copyright © 1970 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", -"Filled with compassion","","Noel & Tricia Richards. * Copyright © 1994 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"Find rest, all the earth,","","Keith Getty & Kristyn Lennox * Copyright © 2002 Thankyou Music","Keith Getty | Kristyn Lennox","","", -"Fire, there's a fire","","Paul Oakley. * Copyright © 1995 Kingsway's Thankyou Music.","Paul Oakley","","", -"Focus my eyes","","Ian White. * Copyright © 1988 Little Misty Music/ Kingsway's Thankyou Music.","Ian White","","", -"For all the saints,","","W. W. How. *","W. W. How","","", -"For His name is exalted,","","Dale Garratt. * Copyright © 1972 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Dale Garratt","","", -"For l'm building a people of power,","","Dave Richards. * Copyright © 1977 Kingsway's Thankyou Music.","Dave Richards","","", -"For the beauty of the earth,","","Folliot S. Pierpoint. *","Folliot S. Pierpoint","","", -"For the fruits of His creation","","Fred Pratt Green (1903-2000) * Copyright © 1970 Stainer & Bell Ltd","Fred Pratt Green (1903-2000)","","", -"For the healing of the nations","","Fred Kaan * Copyright © 1968 Stainer & Bell Ltd","Fred Kaan","","", -"For the joys and for the sorrows,","","Graham Kendrick. * Copyright © 1994 Make Way Music.","Graham Kendrick","","", -"For the Lord is good,","","Lynn DeShazo & Gary Sadler * Copyright © 1997 Integrity's Hosanna! Music/ Sovereign Music UK","Lynn DeShazo | Gary Sadler","","", -"For the Lord is marching on,","","Bonnie Low. * Copyright © 1977 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Bonnie Low","","", -"For this purpose","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", -"For thou O Lord art high","","Pete Sanchez Jnr. * Copyright © 1977 Pete Sanchez Jnr/ Gabriel Music.","Pete Sanchez Jnr","","", -"For unto us a child is born,","","Author unknown. *","Author unknown","","", -"For we see Jesus","","Susan Hutchinson. * Copyright © 1979 Word's Spirit of Praise Music/Adm. by CopyCare.","Susan Hutchinson","","", -"For Your wonderful deeds","","David J. Hadden. * Copyright © 1990 Restoration Music Ltd./ Adm. by Sovereign Music UK.","David J. Hadden","","", -"Forth in thy name, O Lord, I go","","Charles Wesley (1707-88) *","Charles Wesley (1707-88)","","", -"Friend of sinners,","","Matt Redman. * Copyright © 1994 Kingsway's Thankyou Music.","Matt Redman","","", -"From all that dwell below theskies","","Isaac Watts. *","Isaac Watts","","", -"From every tongue,","","Wayne Drain. * Copyright © 1996 Kingsway's Thankyou Music.","Wayne Drain","","", -"From heaven You came;","","Graham Kendrick. * Copyright © 1983 Kingsway's Thankyou Music.","Graham Kendrick","SOF #120","", -"From the rising of the sun","","Paul S. Deming. * Copyright © 1976 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Paul S. Deming","","", -"From the rising of the sun","","Viola Grafstrom * Copyright © 2002 Thankyou Music","Viola Grafstrom","","", -"From the sleep of ages,","","Stuart Townend. * Copyright © 1995 Kingsway's Thankyou Music. La la la la la la. (x4)","Stuart Townend","","", -"From the squalor of a borrowed stable:","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","SOF #1239","", -"From the sun's rising","","Graham Kendrick. * Copyright © 1987 Make Way Music.","Graham Kendrick","","", -"From Your throne, O Lord,","","Chris Cartwright. * Copyright © 1991 Kingsway's Thankyou Music.","Chris Cartwright","","", -"Give me a heart of compassion,","","Jim Bailey. * Copyright © 1997 Kingsway's Thankyou Music.","Jim Bailey","","", -"Give me life, Holy Spirit,","","Danny Daniels. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", -"Give me, Lord, a dream from heaven,","","Dave Bilbrough. * Copyright © 1994 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Give me oil in my lamp,","","Author unknown. *","Author unknown","","", -"Give thanks to the Lord, call upon his name","","Kevin Gould. * Copyright © 1988 Coronation/ Kingsway's Thankyou Music.","Kevin Gould","","", -"Give thanks to the Lord, our God and King;","Forever God is faithful;","Chris Tomlin * Copyright © 2000 worshiptogether.com songs/Six Steps Music/Adm. by Kingsway Music","Chris Tomlin","SOF #1241","", -"Give thanks with a grateful heart","","Henry Smith. * Copyright © 1978 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Henry Smith","","", -"Give Your thanks to the risen Son.","","Dave Bilbrough. * Copyright © 1994 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Giver of grace,","","Stuart Townend * Copyright © 1998 Thankyou Music","Stuart Townend","","", -"Giving it all to You","","Geraldine Latty * Copyright © 2000 Thankyou Music","Geraldine Latty","","", -"Glorious Father,","","Danny Reed. * Copyright © 1987 Kingsway's Thankyou Music.","Danny Reed","","", -"Glorious things of thee are spoken,","","John Newton. *","John Newton","","", -"Glory, glory in the highest","","Danny Daniels. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", -"Go forth and tell!","","James E. Seddon. * Copyright © Mrs M Seddon/Jubilate Hymns.","James E. Seddon","","", -"Go to all nations,","","Bryn Haworth. * Copyright © 1991 Kingsway's Thankyou Music.","Bryn Haworth","","", -"God forgave my sin","","Carol Owens. * Copyright © 1972 Bud John Songs/ EMI Christian Music Publishing/ Adm. by CopyCare.","Carol Owens","","", -"God gave us His Son","","Kate & Miles Simmonds * Copyright © 2002 Thankyou Music","Kate Simmonds | Miles Simmonds","","", -"God has exalted Him","","Austin Martin. * Copyright © 1984 Kingsway's Thankyou Music.","Austin Martin","","", -"God has spoken to His people,","","Stuart Baugh. * Copyright © 1982 Restoration Music Ltd./ Adm. by Sovereign Music UK.","Stuart Baugh","","", -"God in my living (SH08-39)","","2005 Thankyou Music","Tim Hughes","SH08- #39","", -"God is good all the time!","","Don Moen & Paul Overstreet * Copyright © 1995 Integrity's Hosanna! Music/Sovereign Music UK/ Scarlet Moon Music/Adm. by Copyright Management Services","Don Moen | Paul Overstreet","","", -"God is good, we sing and shout","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", -"God is great,","","Graham Kendrick & Steve Thompson. * Copyright © 1993 Make Way Music.","Graham Kendrick | Steve Thompson","","", -"God is here, God is present,","","lan Smale. * Copyright © 1987 Kingsway's Thankyou Music.","lan Smale","","", -"God is our Father in heaven above","","David Lyle Morris & Nick Wynne-Jones * Copyright © 2001 Thankyou Music","David Lyle Morris | Nick Wynne-Jones","","", -"God is our Father, for He made us His own","","Alex Simons & Freda Kimmey. * Copyright © 1977 Celebration/ Kingsway's Thankyou Music.","Alex Simons | Freda Kimmey","","", -"God is raising up an army","","Jim Bailey. * Copyright © 1997 Kingsway's Thankyou Music.","Jim Bailey","","", -"God is so good, God is good","","Author unknown. * Copyright Control.","Author unknown","","", -"God is so good. he rides upon the wings","","Kevin Prosch. * Copyright © 1990 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Kevin Prosch","","", -"God is working His purpose out,","","Arthur C. Ainger. *","Arthur C. Ainger","","", -"God of all comfort,","","John Wimber. * Copyright © 1988 Mercy/Vineyard Publishing/Adm. by CopyCare.","John Wimber","","", -"God of glory,","","David Fellingham. * Copyright © 1982 Kingsway's Thankyou Music.","David Fellingham","","", -"God of grace and God of glory,","","H. E. Fosdick. *","H. E. Fosdick","","", -"God of grace, I turn my face","","Chris Bowater. * Copyright © 1990 Sovereign Lifestyle Music.","Chris Bowater","","", -"God of heaven,","","Stuart Townend. * Copyright © 1992 Kingsway's Thankyou Music.","Stuart Townend","","", -"God of mercy","","Louise Fellingham * Copyright © 2002 Thankyou Music","Louise Fellingham","","", -"God of restoration","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", -"God of the mountains","","Sue Rinaldi, Caroline Bonnett & Steve Bassett * Copyright © 2001 Thankyou Music","Sue Rinaldi | Caroline Bonnett | Steve Bassett","","", -"God, our God, blesses us,","","Rosie Fellingham. * Copyright © 1984 Kingsway's Thankyou Music.","Rosie Fellingham","","", -"God sent His Son,","","Gloria & William J Gaither. * Copyright © 1971 Gaither Music Company/ WJG Inc./Kingsway's Thankyou Music.","Gloria Gaither | William J Gaither","","", -"God, You are an awesome God,","","Charlotte Exon & Andy Thorpe. * Copyright © 1991 Kingsway's Thankyou Music.","Charlotte Exon | Andy Thorpe","","", -"God, You are good","","Brian Houston * Copyright © 2002 Thankyou Music","Brian Houston","","", -"Good and gracious","","Gareth Robinson * Copyright © 2001 Thankyou Music","Gareth Robinson","","", -"Good Christian men, rejoice","","John Mason Neale, altd. *","John Mason Neale | altd","","", -"Good news, good news to You we bring,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"Grace and mercy","","Dave Bilbrough * Copyright © 2000 Thankyou Music","Dave Bilbrough","","", -"Great and marvellous are thy works,","","Kevin Prosch. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Kevin Prosch","","", -"Great and marvellous are Your deeds","","Ian Hannah * Copyright © 2001 Thankyou Music","Ian Hannah","","", -"Great and marvellous","","Bob Pitcher. * Copyright © 1980 Kingsway's Thankyou Music.","Bob Pitcher","","", -"Great and marvellous","","Geraldine Latty & Carey Luce * Copyright © 2002 Thankyou Music","Geraldine Latty | Carey Luce","","", -"Great, great, brill, brill,","","Doug Horley. * Copyright © 1993 Kingsway's Thankyou Music.","Doug Horley","","", -"Great is He SOF-1254","","","unknown","SOF #1254","", -"Great is the darkness","","Noel Richards & Gerald Coates. * Copyright © 1992 Kingsway's Thankyou Music.","Noel Richards | Gerald Coates","","", -"Great is the Lord and greatly to be praised","","Author unknown. *","Author unknown","","", -"Great is the Lord and mighty in power,","","Dale Garratt. * Copyright © 1980 Scripture in Song, a division of Integrity Music/ Adm. by Kingsway's Thankyou Music.","Dale Garratt","","", -"Great is the Lord and most worthy of praise;","","Steve McEwan. * Copyright © 1985 Body Songs/Adm. by CopyCare.","Steve McEwan","SOF #145","", -"Great is the Lord; Sovereign King","","David & Nathan Fellingham. * Copyright © 1994 Kingsway's Thankyou Music.","David Fellingham | Nathan Fellingham","","", -"Great is thy faithfulness;","","Thomas O. Chisholm (1866–1960) * William M. Runyan (1870–1957) Copyright © 1951 Hope Publishing Co/ Adm. by CopyCare.","Thomas O. Chisholm (1866–1960)","SOF #147","", -"Guide me, O thou great jehovah,","","William Williams. * Tr. Peter Williams.","William Williams","","", -"Hail, thou once despisèd Jesus,","","John Bakewell. *","John Bakewell","","", -"Hail to the Lord's anointed,","","James Montgomery. *","James Montgomery","","", -"Hallelujah;","Be High and lifted up;","2007 Thankyou Music","Ben Cantelon","SH10 #27","", -"Hallelujah! Jesus is alive,","","Ron Kenoly. * Copyright © 1987 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Ron Kenoly","","", -"Hallelujah, for the Lord our God","","Dale Garratt. * Copyright © 1972 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Dale Garratt","","", -"Hallelujah, hosanna","","Malcolm du Plessis & Victor S. Masondo * Copyright © 1993 Maranatha! Music/Adm. by CopyCare/& Isondo Music","Malcolm du Plessis | Victor S. Masondo","","", -"Hallelujah, my Father,","","Tim Cullen. * Copyright © 1975 Celebration/ Kingsway's Thankyou Music.","Tim Cullen","","", -"Hold me closer to You each day;","","Noel & Tricia Richards. * Copyright © 1996 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"Hold me Lord,","","Danny Daniels. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare. (Men and women in canon)","Danny Daniels","","", -"Holiness is Your life in me,","","Brian Doerksen. * Copyright © 1990 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen","","", -"Holiness unto the Lord,","","Danny Daniels. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", -"Holy child,","","Timothy Dudley-Smith. * Copyright © 1966 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", -"Holy ghost,","","Bjorn Aslakson. * Copyright © 1992 His Music/Kingsway's Thankyou Music.","Bjorn Aslakson","","", -"Holy, Holy are You, Lord","","Reuben Morgan * Copyright © 2002 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", -"Holy, Holy, God Almighty","","Brenton Brown * Copyright © 2001 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Brenton Brown","","", -"Holy, Holy, Holy, Holy,","","Jimmy Owens. * Copyright © 1972 Bud John Songs/EMI Christian Music Publishing/Adm. by CopyCare.","Jimmy Owens","","", -"Holy, Holy, Holy is the Lord God Almighty","","Andy Park. * Copyright © 1990 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", -"Holy, Holy, Holy is the Lord","","1995 Kingsway’s Thankyou Music.","Nathan Fellingham","SOF #771","", -"Holy, Holy, Holy is the Lord;(182)","","Author unknown. *","Author unknown","SOF #182","", -"Holy, Holy, Holy is the Lord.","","Bryn Haworth. * Copyright © 1991 Kingsway's Thankyou Music.","Bryn Haworth","","", -"Holy, Holy, Holy, Lord God Almighty!;","","Reginald Heber. *","Reginald Heber","SOF #183","", -"Holy, Holy, Holy Lord,","","Author unknown. *","Author unknown","","", -"Holy, Holy, Holy Lord","","Keith Getty, Emma Vardy & Noel Robinson * Copyright © 2001 Thankyou Music","Keith Getty | Emma Vardy | Noel Robinson","","", -"Holy, Holy, Holy","","Words unknown (Argentina) * Spanish and English Copyright Control","Words unknown (Argentina)","","", -"Holy, Holy is the Lord our God","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", -"Holy, Holy, Lord God Almighty,","","Richard Lewis. * Copyright © 1997 Kingsway's Thankyou Music.","Richard Lewis","","", -"Holy, Holy, Holy, Holy","","Robin Mark * Copyright © 2000 Thankyou Music","Robin Mark","","", -"Holy is the Lord,","","Kelly Green. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare. (Men and women in canon)","Kelly Green","","", -"Holy is Your name,","","John Paculabo. * Copyright © 1993 Kingsway's Thankyou Music.","John Paculabo","","", -"Holy one, Holy one","","Chris Bowater. * Copyright © 1991 Sovereign Music UK.","Chris Bowater","","", -"Holy one, my life is in Your hand","","Mick Gisbey. * Copyright © 1993 Kingsway's Thankyou Music.","Mick Gisbey","","", -"Holy one, righteous King","","Andrew Ulugia * Copyright © 1998 Parachute Music New Zealand/ Adm. by Kingsway Music","Andrew Ulugia","","", -"Holy Spirit, how I love You","","Peter Brooks, Stuart Townend & Kate Simmonds * Copyright © 2002 Thankyou Music","Peter Brooks | Stuart Townend | Kate Simmonds","","", -"Holy Spirit, lead me to my Father,","","Alan Leppitt. * Copyright © 1991 Kingsway's Thankyou Music.","Alan Leppitt","","", -"Holy Spirit, move within me,","","Charlotte Exon. * Copyright © 1991 Kingsway's Thankyou Music.","Charlotte Exon","","", -"Holy Spirit, rain down,","","Russell Fragar * Copyright © 1997 Russell Fragar/Hillsong Publishing/ Kingsway Music","Russell Fragar","","", -"Holy Spirit, we welcome You.","","Chris Bowater. * Copyright © 1986 Sovereign Lifestyle Music.","Chris Bowater","","", -"Hope has found its home within me","","Joel Houston * Copyright © 2000 Joel Houston/Hillsong Publishing/Kingsway Music","Joel Houston","","", -"Hope of the world,","","Robert Newey. * Copyright © 1994 Kingsway's Thankyou Music.","Robert Newey","","", -"Hosanna;","","Carl Tuttle. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Carl Tuttle","SOF #189","", -"Hover o'er me,","","Elwood H. Stokes (1815-95) *","Elwood H. Stokes (1815-95)","","", -"How can I be free from sin?","","Graham Kendrick & Steve Thompson. * Copyright © 1991 Make Way Music.","Graham Kendrick | Steve Thompson","","", -"How can I not praise You","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", -"How can I repay You,","","Geraldine Latty * Copyright © 2000 Thankyou Music","Geraldine Latty","","", -"How deep the father's love for us;","","Stuart Townend. * Copyright © 1995 Kingsway's Thankyou Music.","Stuart Townend","SOF #780","", -"How good You have been to me","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", -"How great are You, Lord,","","Lynn DeShazo * Copyright © 1999 Integrity's Hosanna! Music/Sovereign Music UK","Lynn DeShazo","","", -"How I love You,","","Keith & Melody Green. * Copyright © 1982 BMG Songs Inc/Birdwing Music/Ears to Hear Music/EMI Christian Music Publishing/Adm. by CopyCare.","Keith Green | Melody Green","","", -"How lovely is thy dwelling place, O Lord of hosts","","Author unknown. *","Author unknown","","", -"How lovely is Your dwelling place, O Lord Almighty;","Better is on day in your courts","Matt Redman. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman","SOF #781","", -"How lovely on the mountains","","Leonard E. Smith Jnr. * Copyright © 1974, 1978 Kingsway's Thankyou Music. Popular version","Leonard E. Smith Jnr","","", -"How precious, O Lord,","","Phil Rogers. * Copyright © 1982 Kingsway's Thankyou Music.","Phil Rogers","","", -"How shall I find","","Neil Bennetts * Copyright © 2002 Thankyou Music","Neil Bennetts","","", -"How sweet the name of Jesus sounds","","John Newton. *","John Newton","","", -"How wonderful,","","Dave Bilbrough. * Copyright © 1994 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"How You bless our lives,","","Chris Welch. * Copyright © 1987 Kingsway's Thankyou Music.","Chris Welch","","", -"Humble yourselves","","Dave Bilbrough. * Copyright © 1997 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Hungry, I come to You,","","Kathryn Scott * Copyright © 1999 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Kathryn Scott","","", -"I am a lighthouse,","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"I am a new creation;","","Dave Bilbrough. * Copyright © 1983 Kingsway's Thankyou Music.","Dave Bilbrough","SOF #197","", -"I am a wounded soldier","","Danny Daniels. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", -"I am amazed","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2000 Lara Martin/Abundant Life Ministries/ Adm. by Kingsway Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", -"I am helplessly in love with You","","Sue Rinaldi, Caroline Bonnett & Steve Bassett * Copyright © 2001 Thankyou Music","Sue Rinaldi | Caroline Bonnett | Steve Bassett","","", -"I am not ashamed","","John Pantry. * Copyright © 1990 Kingsway's Thankyou Music.","John Pantry","","", -"I am the apple of God's eye,","","Jim Bailey. * Copyright © 1996 Kingsway's Thankyou Music.","Jim Bailey","","", -"I am the bread of life,","","S. Suzanne Toolan. * Copyright © 1971 G. I. A. Publications/ Adm. by Calamus.","S. Suzanne Toolan","","", -"I am the God that healeth thee,","","Don Moen. * Copyright © 1985 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Don Moen","","", -"I am the one with the unclean lips","","Brian Houston * Copyright © 2002 Thankyou Music","Brian Houston","","", -"I am trusting thee, Lord Jesus,","","Frances Ridley Havergal. *","Frances Ridley Havergal","","", -"I am yours","","David Gate. * Copyright © 1997 Kingsway's Thankyou Music.","David Gate","","", -"I behold Your power and glory","","Darlene Zschech * Copyright © 2001 Darlene Zschech/Hillsong Publishing/Kingsway Music","Darlene Zschech","","", -"I believe in everything You do","","James Taylor * Copyright © 1999 Thankyou Music","James Taylor","","", -"I believe in God the Father,","","Wayne Drain. * Copyright © 1996 Kingsway's Thankyou Music.","Wayne Drain","","", -"I believe in God the Father","","Stuart Townend & Keith Getty * Copyright © 2003 Thankyou Music","Stuart Townend | Keith Getty","","", -"I believe in Jesus:","","Marc Nelson. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Marc Nelson","","", -"I believe there is a God in heaven","","Dave Bilbrough. * Copyright © 1991 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"I bow down","","David Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham","","", -"I call on You, Almighty Lord","","Johnny Parks * Copyright © 2001 Thankyou Music","Johnny Parks","","", -"I can almost see","","Peter & Hanneke Jacobs. * Copyright © 1985 Maranatha! Music/ Adm. by CopyCare.","Peter Jacobs | Hanneke Jacobs","","", -"I can do all (all!), all (all!), all things","","Jim Bailey * Copyright © 1994 Thankyou Music","Jim Bailey","","", -"I can feel Your arms","","Ken Riley * Copyright © 1995 McKenzie Music/Adm. by Kingsway Music","Ken Riley","","", -"I cannot tell","","William Y. Fullerton. *","William Y. Fullerton","","", -"I come as I am","","Ken Riley * Copyright © 1999 Thankyou Music","Ken Riley","","", -"I come running","","Paul Oakley * Copyright © 2000 Thankyou Music","Paul Oakley","","", -"I come to bow down","","Kate Simmonds * Copyright © 2002 Thankyou Music","Kate Simmonds","","", -"I come to You, to sit at Your feet","","Louise & Nathan Fellingham * Copyright © 2001 Thankyou Music","Louise Fellingham | Nathan Fellingham","","", -"I come to You, Lord of all hope","","Matt Parker & Paul Oakley * Copyright © 1999 Thankyou Music","Matt Parker | Paul Oakley","","", -"I come, wanting just to be with You;","","Paul Booth * Copyright © 1998 Thankyou Music","Paul Booth","","", -"I could sing unending songs","","Martin Smith. * Copyright © 1994 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", -"I count as nothing every earthly treasure","","Neil Bennetts * Copyright © 2001 Thankyou Music","Neil Bennetts","","", -"I cry out","","Craig Musseau. * Copyright © 1990 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Craig Musseau","","", -"I danced in the morning","","Sydney Carter * Copyright © 1963 Stainer & Bell Ltd","Sydney Carter","","", -"I delight greatly in the Lord,","","Chris Bowater. * Copyright © 1981 Sovereign Lifestyle Music.","Chris Bowater","","", -"I don't know why,","","Noel & Tricia Richards & Wayne Drain * Copyright © 1998 Thankyou Music","Noel Richards | Tricia Richards | Wayne Drain","","", -"I don't want to be a pharisee","","Ian Smale. * Copyright © 1996 Kingsway's Thankyou Music.","Ian Smale","","", -"I dream","","Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Matt Redman","","", -"I enter in","","Bethan Stevens (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Bethan Stevens (Abundant Life Ministries | Bradford | England)","","", -"I exalt You,","","Cecily Feldman. * Copyright © 1989 Cecily Feldman/ Kingsway's Thankyou Music.","Cecily Feldman","","", -"I get so excited, Lord,","","Mick Ray. * Copyright © 1978 Kingsway's Thankyou Music.","Mick Ray","","", -"I give my heart to what I treasure","","Noel Richards & Wayne Drain * Copyright © 2001 Thankyou Music","Noel Richards | Wayne Drain","","", -"I give You all the honour;","","Carl Tuttle. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare.","Carl Tuttle","SOF #210","", -"I give You now","","Amy Rose. * Copyright © 1988 Samsongs/Coronation/ Kingsway's Thankyou Music.","Amy Rose","","", -"I have a destiny","","Mark Altrogge. * Copyright © 1986 People of Destiny International/ Word Music/Adm. by CopyCare.","Mark Altrogge","","", -"I have a maker,","","Tommy Walker. * Copyright © 1996 WeMobile Music/Doulos Publishing/Adm. by CopyCare.","Tommy Walker","","", -"I have come home,","","Noel & Tricia Richards * Copyright © 1998 Thankyou Music","Noel Richards | Tricia Richards","","", -"I have come to love You, for You have won my heart","","Martin Cooper & Paul Oakley * Copyright © 1999 Thankyou Music","Martin Cooper | Paul Oakley","","", -"I have come to love You,","","Matt Redman. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman","","", -"I have come to realise","","Andrew Rogers * Copyright © 2001 Thankyou Music","Andrew Rogers","","", -"I have found","","Marc Nelson. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Marc Nelson","","", -"I have heard so many songs;","","Matt Redman * Copyright © 2000 Thankyou Music","Matt Redman","SOF #1321","", -"I have heard that You are swift","","Stuart Townend. * Copyright © 1997 Kingsway's Thankyou Music.","Stuart Townend","","", -"I have His word,","","Lex Loizides * Copyright © 2000 Thankyou Music","Lex Loizides","","", -"I have loved You","","Kent Henry. * Copyright © 1993 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Kent Henry","","", -"I have made a covenant","","Karen Barrie. * Copyright © 1973 Karen Barrie.","Karen Barrie","","", -"I have made You too small in my eyes;","","Lynn DeShazo. * Copyright © 1992 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Lynn DeShazo","","", -"I hear the sound of rustling","","Ronnie Wilson. * Copyright © 1979 Kingsway's Thankyou Music.","Ronnie Wilson","","", -"I hear the sound of the army of the Lord,","","Dave Moody. * Copyright © 1984 C A Music/ Music Services/CopyCare.","Dave Moody","","", -"I heard the voice of Jesus say:","","Horatius Bonar. *","Horatius Bonar","","", -"I just want to be where You are,","","Don Moen. * Copyright © 1989 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Don Moen","","", -"I just want to love,","","Tim Hughes * Copyright © 1998 Thankyou Music","Tim Hughes","","", -"I just want to praise You, I just want to sing","","Dave Bilbrough. * Copyright © 1988 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"I just want to praise You, lift my hands","","Arthur Tannous. * Copyright © 1984 Acts Music/ Kingsway's Thankyou Music.","Arthur Tannous","","", -"I know a place, a wonderful place,","","Randy &Terry Butler. * Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Randy Butler | Terry Butler","","", -"I know a place where blessings","","Nathan Fellingham. * Copyright © 1997 Kingsway's Thankyou Music.","Nathan Fellingham","","", -"I know He rescued my soul","","Reuben Morgan * Copyright © 1998 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", -"I know not why God's wondrous grace (Townend)","","D.W. Whittle (1840-1901) adapt. Stuart Townend * Copyright © 1999 Thankyou Music","D.W. Whittle (1840-1901) adapt. Stuart Townend","","", -"I know not why God's wondrous grace","","D.W. Whittle. *","D.W. Whittle","","", -"I know You love an offering","","David Gate * Copyright © 1999 Thankyou Music","David Gate","","", -"I know You love to crown the humble,","","Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Matt Redman","","", -"I lift my eyes to the quiet hills,","","Timothy Dudley-Smith. * Copyright © 1968 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", -"I lift my eyes up to the mountains","","Brian Doerksen. * Copyright © 1990 Mercy/Vineyard Publishing/Adm. by CopyCare.","Brian Doerksen","","", -"I lift my hands, I raise my voice","","Eddie Espinosa. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare.","Eddie Espinosa","","", -"I lift my hands to the coming King","","Andre Kempen. * Copyright © 1989 Kempen Music/ Kingsway's Thankyou Music.","Andre Kempen","","", -"I lift my voice","","Dave Bilbrough. * Copyright © 1985 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"I lift You high","","Matt Redman * Copyright © 2000 Thankyou Music","Matt Redman","","", -"I live my life to worship You","","Gareth Robinson * Copyright © 2002 Thankyou Music","Gareth Robinson","","", -"I live,","","Rich Cook. * Copyright © 1976 John T. Benson Publishing Co./Adm. by CopyCare.","Rich Cook","","", -"I long for You, O Lord.","","Steve & Vikki Cook. * Copyright © 1988 People of Destiny Int./Word Music/Adm. by CopyCare.","Steve Cook | Vikki Cook","","", -"I love the Lord","","Ian White. * Copyright © 1996 Little Misty Music/Kingsway's Thankyou Music.","Ian White","","", -"I love You, Lord, and I lift my voice;","","Laurie Klein. * Copyright © 1978 Maranatha! Music/ Adm. by CopyCare.","Laurie Klein","SOF #226","", -"I love You, Lord, my strength,","","Phil Lawson Johnston. * Copyright © 1993 Kingsway's Thankyou Music.","Phil Lawson Johnston","","", -"I love You more each day","","Ken Riley * Copyright © 2001 Thankyou Music","Ken Riley","","", -"I love You, my Lord,","","David Fellingham. * Copyright © 1984 Kingsway's Thankyou Music.","David Fellingham","","", -"I love You with the love of the Lord,","","James Gilbert. * Copyright © 1975 Bud John Songs/ EMIChristian Music Publishing/ Adm. by CopyCare.","James Gilbert","","", -"I love You, Lord, I worship You","","John Ellis * Copyright © 1999 Thankyou Music","John Ellis","","", -"I met You","","Ken Riley * Copyright © 2001 Thankyou Music","Ken Riley","","", -"I need You likw dew","","Chris Bowater. * Copyright © 1995 Sovereign Lifestyle Music.","Chris Bowater","","", -"I need You like the summer","","Paul Oakley & Martin Cooper * Copyright © 2002 Thankyou Music","Paul Oakley | Martin Cooper","","", -"I need You now,","","Paul Oakley * Copyright © 1998 Thankyou Music","Paul Oakley","","", -"I once was frightened of spiders,","","Ian Smale. * Copyright © 1994 Kingsway's Thankyou Music.","Ian Smale","","", -"I reach up high","","Judy Bailey * Copyright © 1993 Daybreak Music Ltd","Judy Bailey","","", -"I receive Your love,","","Paul Armstrong. * Copyright © 1980 Word's Spirit of Praise Music/Adm. by CopyCare.","Paul Armstrong","","", -"I see the King of Glory","","","Author Unknown","","", -"I see the King of Glory (SH09-35)","","","Author Unknown","","", -"I see the Lord seated on the throne","","Chris Falson. * Copyright © 1993 Chris Falson Music/ Maranatha! Music/Adm. by CopyCare.","Chris Falson","","", -"I see the Lord, and He is high","","Paul Oakley * Copyright © 1999 Thankyou Music","Paul Oakley","","", -"I see the Lord, I see the Lord","","Author unknown. *","Author unknown","","", -"I see You hanging there","","Michael Sandeman * Copyright © 2001 Thankyou Music","Michael Sandeman","","", -"I sing a simple song of love","","Craig Musseau. * Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Craig Musseau","","", -"I sing praises to Your name,","","Terry MacAlmon. * Copyright © 1989 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Terry MacAlmon","","", -"I stand amazed in the presence","","Charles Gabriel. * Copyright © Rodeheaver Co/Word Music/ Adm. by CopyCare.","Charles Gabriel","","", -"I stand amazed when I realise","","Paul Oakley. * Copyright © 1990 Kingsway's Thankyou Music.","Paul Oakley","","", -"I thank You for the cross","","Ken Riley * Copyright © 1999 Thankyou Music","Ken Riley","","", -"I the Lord of sea and sky;","","Daniel L. Schutte. * Copyright © 1991 Daniel L. Schutte and New Dawn Music.","Daniel L. Schutte","SOF #830","", -"I tremble in Your presence,","","Rohn Bailey * Copyright © 1999 Thankyou Music","Rohn Bailey","","", -"I waited patiently","","Ian White. * Copyright © 1987 Little Misty Music/Kingsway's Thankyou Music.","Ian White","","", -"I walk by faith,","","Chris Falson. * Copyright © 1990 Chris Falson Music/ Maranatha! Music/Adm. by CopyCare.","Chris Falson","","", -"I wanna sing,","","Dave Renehan. * Copyright © 1982 Kingsway's Thankyou Music.","Dave Renehan","","", -"I want to be a history maker,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"I want to be before Your throne","","Paul Oakley * Copyright © 2000 Thankyou Music","Paul Oakley","","", -"I want to be Holy,","","Paul Oakley & Alan Rose. * Copyright © 1997 Kingsway's Thankyou Music.","Paul Oakley | Alan Rose","","", -"I want to be out of my depth in Your love,","","Doug Horley & Noel Richards. * Copyright © 1995 Kingsway's Thankyou Music.","Doug Horley | Noel Richards","","", -"I want to know","","Evan Rogers. * Copyright © 1997 Kingsway's Thankyou Music.","Evan Rogers","","", -"I want to serve the purpose of God;","","Mark Altrogge. * Copyright © 1982 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","SOF #260","", -"I want to walk with Jesus Christ","","C. Simmonds. * Copyright © 1964 C. Simmonds.","C. Simmonds","","", -"I was lost","","Paul Oakley. * Copyright © 1995 Kingsway's Thankyou Music.","Paul Oakley","","", -"I was made to praise You,","","For permission to reproduce this song for non-commercial purposes, * please contact C. Simmonds, 22 St Michael's Road, Bedford, Bedfordshire, MK40 2LT Chris Christensen. Copyright © 1986 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","For permission to reproduce this song for non-commercial purposes","","", -"I was once in darkness,","","Joan Parsons. * Copyright © 1978 Kingsway's Thankyou Music.","Joan Parsons","","", -"I will be yours,","","Brian Doerksen. * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen","","", -"I will build my church,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"I will call upon the Lord, who is worthy","","Victor Rubbo. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare. (Men and women in canon)","Victor Rubbo","","", -"I will call upon the Lord,","","Michael O'Shields. * Copyright © 1981 Word Music/ Adm. by CopyCare.","Michael O'Shields","","", -"I will call upon the name of the Lord","","Robert Critchley * Copyright © 2001 Thankyou Music","Robert Critchley","","", -"I will change Your name,","","D. J. Butler. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","D. J. Butler","","", -"I will come and bow down","","Martin J. Nystrom. * Copyright © 1984 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Martin J. Nystrom","","", -"I will come, come, come","","Tim Sherrington * Copyright © 2000 Thankyou Music","Tim Sherrington","","", -"I will cry mercy,","","Steve Bassett & Sue Rinaldi. * Copyright © 1994 Kingsway's Thankyou Music.","Steve Bassett | Sue Rinaldi","","", -"I will dance,","","Matt Redman. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman","","", -"I will enter His gates","","Leona Von Brethorst. * Copyright © 1976 Maranatha! Music/ Adm. by CopyCare.","Leona Von Brethorst","","", -"I will enter Your house","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", -"I will extol the Lord","","Ian White. * Copyright © 1992 Little Misty Music/ Kingsway's Thankyou Music.","Ian White","","", -"I will follow You to the cross","","Sue Rinaldi. * Copyright © 1997 Kingsway's Thankyou Music.","Sue Rinaldi","","", -"I will give thanks to the Lord","","Mark Altrogge. * Copyright © 1988 Integrity's Praise! Music/ People of Destiny Music/Adm. by Kingsway's Thankyou Music.","Mark Altrogge","","", -"I will give thanks to thee,","","Brent Chambers. * Copyright © 1977 Scripture in Song, a division of Integrity Music/ Adm. by Kingsway's Thankyou Music.","Brent Chambers","","", -"I will give You praise,","","Tommy Walker. * Copyright © 1985 Kingsway's Thankyou Music.","Tommy Walker","","", -"I will love You for the cross;","","Matt & Beth Redman * Copyright © 1998 Thankyou Music","Matt Redman | Beth Redman","SOF #1373","", -"I will magnify","","Scott Palazzo. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Scott Palazzo","","", -"I will never be the same","","Ian Hannah * Copyright © 2001 Thankyou Music","Ian Hannah","","", -"I will never be the same,","","Paul Oakley & J.K. Jamieson * Copyright © 1998 Thankyou Music","Paul Oakley | J.K. Jamieson","","", -"I will offer up my life;","","Matt Redman. * Copyright © 1994 Kingsway's Thankyou Music.","Matt Redman","SOF #851","", -"I will praise You all my life;","","Mark Altrogge. * Copyright © 1987 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", -"I will praise You with the harp","","Ian White. * Copyright © 1987 Little Misty Music/ Kingsway's Thankyou Music.","Ian White","","", -"I will praise You,","","Bryn Haworth. * Copyright © 1992 Signalgrade/Kingsway's Thankyou Music.","Bryn Haworth","","", -"I will rejoice, I will rejoice,","","David Fellingham. * Copyright © 1982 Kingsway's Thankyou Music.","David Fellingham","","", -"I will rejoice in You and be glad,","","Author unknown. *","Author unknown","","", -"I will rest in Christ","","Geoff Bullock. * Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","Geoff Bullock","","", -"I will rise and bless You, Lord,","","Diane Fung. * Copyright © 1983 Kingsway's Thankyou Music.","Diane Fung","","", -"I will seek Your face,","","Noel & Tricia Richards. * Copyright © 1990 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"I will sing, I will sing","","Max Dyer. * Copyright © 1974 Celebration/Kingsway's Thankyou Music.","Max Dyer","","", -"I will sing of the Lamb,","","Stuart Townend. * Copyright © 1997 Kingsway's Thankyou Music.","Stuart Townend","","", -"I will sing of the mercies","","J. H. Fillmore. *","J. H. Fillmore","","", -"I will sing the wondrous story","","Francis Rawley (1854–1952). * Words Copyright © 1952 HarperCollins Religious/Adm. by CopyCare.","Francis Rawley (1854–1952)","","", -"I will sing unto the Lord","","Donya Brockway. * Copyright © 1972 His Eye Music/ Multisongs/EMI Christian Music Publ./Adm. by CopyCare.","Donya Brockway","","", -"I will speak out","","Dave Bankhead, Sue Rinaldi, Ray Goudie & * Steve Bassett. Copyright © 1990 Word's Spirit of Praise Music/Adm. by CopyCare.","Dave Bankhead | Sue Rinaldi | Ray Goudie","","", -"I will wait","","Maggi Dawn. * Copyright © 1993 Kingsway's Thankyou Music.","Maggi Dawn","","", -"I will wave my hands","","Ian Smale. * Copyright © 1985 Kingsway's Thankyou Music.","Ian Smale","","", -"I will worship You, Lord,","","Daniel Gardner. * Copyright © 1981 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Daniel Gardner","","", -"I will worship;;","","David Ruis. * Copyright © 1991 Shade Tree Music/ Maranatha! Music/Adm. by CopyCare.","David Ruis","SOF #859","", -"I worship You, Almighty God,","","Sondra Corbett. * Copyright © 1986 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Sondra Corbett","","", -"I worship You, Almighty King,","","Nathan Fellingham, Luke Fellingham * & Louise Hunt. Copyright © 1997 Kingsway's Thankyou Music.","Nathan Fellingham | Luke Fellingham","","", -"I worship You, O Lord,","","Callie Gerbrandt. * Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Callie Gerbrandt","","", -"I would rather be","","Evan Rogers. * Copyright © 1996 Kingsway's Thankyou Music.","Evan Rogers","","", -"If I seek You","","Noel Richards & Wayne Drain * Copyright © 2001 Thankyou Music","Noel Richards | Wayne Drain","","", -"If I were a butterfly,","","Brian Howard. * Copyright © 1974 Mission Hills/ Adm. by Kingsway's Thankyou Music.","Brian Howard","","", -"If it wasn't for Your mercy","","Matt Redman & Tom Lane * Copyright © 2002 Thankyou Music/worshiptogether.com songs/ The Bridge Worx/Adm. by Kingsway Music","Matt Redman | Tom Lane","","", -"If my people, who are called by my name","","Ken Riley * Copyright © 1999 Thankyou Music","Ken Riley","","", -"If my people, who bear My name","","Graham Kendrick. * Copyright © 1987 Make Way Music.","Graham Kendrick","","", -"If we died with Christ","","David Lyle Morris & Faith Forster * Copyright © 2001 Thankyou Music","David Lyle Morris | Faith Forster","","", -"I'm a friend of Jesus Christ,","","Doug Horley. * Copyright © 1991 Kingsway's Thankyou Music.","Doug Horley","","", -"I'm accepted,","","Rob Hayward. * Copyright © 1985 Kingsway's Thankyou Music.","Rob Hayward","","", -"I'm calling out to You,","","Brian Houston * Copyright © 2000 Thankyou Music","Brian Houston","","", -"I'm cradled","","Dave Bilbrough * Copyright © 2002 Thankyou Music","Dave Bilbrough","","", -"I'm crying out,","","Wayne Drain & Noel Richards * Copyright © 1998 Thankyou Music","Wayne Drain | Noel Richards","","", -"I'm drawn a little bit closer","","Geraldine Latty & Noel Robinson * Copyright © 2000 Thankyou Music","Geraldine Latty | Noel Robinson","","", -"I'm forever in Your love,","","Doug Horley * Copyright © 1999 Thankyou Music","Doug Horley","","", -"I'm giving You my heart","","Marc James * Copyright © 2000 Vineyard Songs (UK/Eire)/ Adm. by CopyCare","Marc James","","", -"I'm gonna thank the Lord,","","Dave Bilbrough. * Copyright © 1977 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"I'm gonna trust in God,","","Steve Earl * Copyright © 1998 PDI Worship/Adm. by CopyCare","Steve Earl","","", -"I'm grateful","","Johnny Parks * Copyright © 2001 Thankyou Music","Johnny Parks","","", -"I'm in love with You,","","Danny Daniels. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", -"I'm learning to love You","","Paul Oakley * Copyright © 1998 Thankyou Music","Paul Oakley","","", -"I'm looking up to Jesus,","","Ian Smale. * Copyright © 1982 Kingsway's Thankyou Music.","Ian Smale","","", -"I'm making melody","","Matt Redman * Copyright © 2001 Thankyou Music","Matt Redman","","", -"I'm not alone","","Diane Davis Andrew. * Copyright © 1971, 1975 Celebration/ Kingsway's Thankyou Music.","Diane Davis Andrew","","", -"I'm on my knees","","Dave Bilbrough * Copyright © 2000 Thankyou Music","Dave Bilbrough","","", -"I'm special","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"I'm standing here to testify","","Kevin Prosch. * Copyright © 1992 7th Time Music/Kingsway's Thankyou Music.","Kevin Prosch","","", -"I'm working out what it means","","Jim Bailey * Copyright © 1994 Thankyou Music","Jim Bailey","","", -"Image of invisible God","","Stuart Townend & J.K. Jamieson * Copyright © 2002 Thankyou Music","Stuart Townend | J.K. Jamieson","","", -"Immanuel, O immanuel,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"Immanuel,","","Graham Kendrick. * Copyright © 1979 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Immortal, invisible,","","Walter Chalmers Smith. *","Walter Chalmers Smith","","", -"In awe of You,","","Reuben Morgan * Copyright © 1999 Reuben Morgan/Hillsong Publishing/ Kingsway Music","Reuben Morgan","","", -"In Christ alone;;","","Stuart Townend & Keith Getty * Copyright © 2001 Thankyou Music","Stuart Townend | Keith Getty","SOF #1346","", -"In every circumstance","","David Fellingham. * Copyright © 1994 Kingsway's Thankyou Music.","David Fellingham","","", -"In every day that dawns","","Kate Simmonds & Stuart Townend * Copyright © 2001 Thankyou Music","Kate Simmonds | Stuart Townend","","", -"In God alone","","Jacques Berthier/Taizé. * Copyright © 1995 Ateliers et Presses de Taizé.","Jacques Berthier/Taizé","","", -"In heavenly armour","","Jamie Owens-Collins. * Copyright © 1984 Fairhill Music/ Adm. by CopyCare.","Jamie Owens-Collins","","", -"In heavenly love abiding,","","Anna L. Waring. *","Anna L. Waring","","", -"In Him we live and move","","Randy Speir. * Copyright © 1981 Integrity's Hosanna! Music/Adm. by Kingsway's Thankyou Music.","Randy Speir","","", -"In Majesty He comes,","","David Fellingham. * Copyright © 1990 Kingsway's Thankyou Music.","David Fellingham","","", -"In moments like these","","David Graham. * Copyright © 1980 C A Music/ Music Services/CopyCare.","David Graham","","", -"In my life, Lord,","","Bob Kilpatrick. * Copyright © 1978 Bob Kilpatrick Music/ CopyCare.","Bob Kilpatrick","","", -"In my life proclaim Your glory,","","For permission to reproduce this song for non-commercial purposes, * please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB Geoff Bullock. Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","For permission to reproduce this song for non-commercial purposes","","", -"In my weakness","","Wayne Drain. * Copyright © 1996 Kingsway's Thankyou Music.","Wayne Drain","","", -"In mystery reigning,","","John Pantry. * Copyright © 1990 Kingsway's Thankyou Music.","John Pantry","","", -"In the bleak midwinter,","","Christina G. Rossetti. *","Christina G. Rossetti","","", -"In the Lord","","Jacques Berthier/Taizé. * Copyright © Ateliers et Presses de Taize.","Jacques Berthier/Taizé","","", -"In the name of Jesus,","","For permission to reproduce this song for non-commercial purposes, * please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB Author unknown.","For permission to reproduce this song for non-commercial purposes","","", -"In the presence of Your people","","Brent Chambers. * Copyright © 1977 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Brent Chambers","","", -"In the shadow of the cross,","","Paul Oakley * Copyright © 1999 Thankyou Music","Paul Oakley","","", -"In the tomb so cold","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"In these days of darkness,","","Sue Rinaldi & Steve Bassett. * Copyright © 1994 Kingsway's Thankyou Music.","Sue Rinaldi | Steve Bassett","","", -"In these days of refreshing,","","David Fellingham. * Copyright © 1996 Kingsway's Thankyou Music.","David Fellingham","","", -"In this place we gather","","Stuart Plumb * Copyright © 2001 Thankyou Music","Stuart Plumb","","", -"In this stillness","","Paul Oakley * Copyright © 1999 Thankyou Music","Paul Oakley","","", -"In through the veil","","Bruce Clewett. * Copyright © 1983 Kingsway's Thankyou Music.","Bruce Clewett","","", -"In thy presence","","Mike Kerry. * Copyright © 1982 Kingsway's Thankyou Music.","Mike Kerry","","", -"In You we live","","Graham Kendrick * Copyright © 2002 Make Way Music","Graham Kendrick","","", -"In Your arms of love I sing","","James Gregory * Copyright © 1999 Thankyou Music","James Gregory","","", -"In Your presence there is fullnes","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", -"In Your presence there is joy,","","Libby Huirua * Copyright © 1998 Parachute Music New Zealand/ Adm. by Kingsway Music","Libby Huirua","","", -"Infant Holy,","","Polish traditional carol, tr. Edith M.G. Reed (1885-1933) * Copyright Control","Polish traditional carol | tr. Edith M.G. Reed (1885-1933)","","", -"Into the darkness","","Maggi Dawn. * Copyright © 1993 Kingsway's Thankyou Music.","Maggi Dawn","","", -"Is anyone thirsty,","","Graham Kendrick. * Copyright © 1994 Make Way Music.","Graham Kendrick","","", -"Is it true today","","Martin Smith. * Copyright © 1996 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", -"Isn't He beautiful,","","John Wimber. * Copyright © 1980 Mercy/Vineyard Publishing/Adm. by CopyCare.","John Wimber","","", -"It came upon the midnight clear,","","E. H. Sears. *","E. H. Sears","","", -"It is a thing most wonderful,","","W. W. How. *","W. W. How","","", -"It is good for me","","Tim Blomdahl. * Copyright © 1976 Bible Temple Music/ Music Services/Adm. by CopyCare.","Tim Blomdahl","","", -"It is good to give thanks to the Lord,","","(NB. The above song is not covered by your CCL Licence. * For permission to reproduce this song for non-commercial purposes, please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB.) John L. Bell & Graham Maule. Copyright © 1988 Wild Goose Publications, Iona Community.","(NB. The above song is not covered by your CCL Licence","","", -"It is good, it is good","","Dan Adler * Copyright © 1999 Heart of the City Music/Word Music Inc./Adm. by CopyCare","Dan Adler","","", -"It is no longer I that liveth","","Sally Ellis. * Copyright © 1980 Kingsway's Thankyou Music.","Sally Ellis","","", -"It is the cry of my heart","","(From “Enemy of apathy” Wild Goose Publications 1988) * No permission is required to reproduce this song for non-commercial purposes Terry Butler. Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","(From “Enemy of apathy” Wild Goose Publications 1988)","","", -"It is to You","","Duke Kerr * Copyright © 1995 Remission Music UK/Adm. by Sovereign Music UK","Duke Kerr","","", -"It was on a starry night","","Joy Webb * Copyright © Salvationist Publishing & Supplies Ltd/Adm. by CopyCare","Joy Webb","","", -"It's a happy day,","","Gary Pfeiffer. * Copyright © 1973 Fred Bock Music/ Kingsway's Thankyou Music.","Gary Pfeiffer","","", -"It's a wonderful, wonderful,","","Ian Smale. * Copyright © 1993 Kingsway's Thankyou Music.","Ian Smale","","", -"It's getting clearer,","","Dave Bilbrough. * Copyright © 1995 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"It's rising up","","Matt Redman & Martin Smith. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman | Martin Smith","","", -"It's the presence of Your Spirit, Lord, we need,","","Len Magee. * Copyright © 1977 Len Magee Music.","Len Magee","","", -"It's Your blood","","Michael Christ. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Michael Christ","","", -"I've come to meet with You","","Tim Beck * Copyright © 1999 Thankyou Music","Tim Beck","","", -"I've fallen in love","","Pete Cant. * Copyright © 1997 Kingsway's Thankyou Music.","Pete Cant","","", -"I've filled my days with details","","David Gate * Copyright © 2001 Thankyou Music","David Gate","","", -"I've got a love song in my heart,","","Matt Redman. * Copyright © 1993 Kingsway's Thankyou Music.","Matt Redman","","", -"I've thrown it all away","","Matt Redman * Copyright © 2000 Thankyou Music","Matt Redman","","", -"Jehovah Jireh, my provider,","","Merla Watson. * Copyright © 1974 Tempo Music Publications/Adm. by CopyCare.","Merla Watson","","", -"Jehovah Jireh, God will provide","","lan Smale. * Copyright © 1987 Kingsway's Thankyou Music.","lan Smale","","", -"Jesus, all for Jesus;;","","Jennifer Atkinson & Robin Mark * Copyright © 1991 Authentic Publishing/Adm. by CopyCare","Jennifer Atkinson | Robin Mark","SOF #1376","", -"Jesus, at Your name","","Chris Bowater. * Copyright © 1982 Sovereign Lifestyle Music.","Chris Bowater","","", -"Jesus, be the centre;;","","Michael Frye * Copyright © 1999 Vineyard Songs (UK/Eire)/ Adm. by CopyCare","Michael Frye","SOF #1377","", -"Jesus Christ, Emmanuel","","Martyn Layzell * Copyright © 2001 Thankyou Music","Martyn Layzell","","", -"Jesus Christ, Holy one","","Nathan Fellingham * Copyright © 2002 Thankyou Music","Nathan Fellingham","","", -"Jesus Christ is risen today;","","Lyra Davidica. *","Lyra Davidica","","", -"Jesus Christ is the Lord of all,","","Steve Israel & Gerrit Gustafson. * Copyright © 1988 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Steve Israel | Gerrit Gustafson","","", -"Jesus Christ is waiting","","John L. Bell & Graham Maule * Copyright © 1998 WGRG, Iona Community","John L. Bell | Graham Maule","","", -"Jesus Christ, I think upom your sacrifice;;","","Matt Redman. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman","SOF #865","", -"Jesus Christ, You came","","Noel Richards * Copyright © 2001 Thankyou Music","Noel Richards","","", -"Jesus, draw me ever nearer","","Margaret Becker & Keith Getty * Copyright © 2001 Modern M. Music/Adm. by CopyCare/ & Thankyou Music","Margaret Becker | Keith Getty","","", -"Jesus, forgive me.","","Martin Lore. * Copyright © 1993 Kingsway's Thankyou Music.","Martin Lore","","", -"Jesus, God's righteousness revealed","","Geoff Bullock * Copyright © 1995 Word Music Inc./Maranatha! Music/Adm. by CopyCare","Geoff Bullock","","", -"Jesus has sat down","","Jonathan Wallis. * Copyright © 1983 Kingsway's Thankyou Music.","Jonathan Wallis","","", -"Jesus, high King of heaven,","","Philip Lawson Johnston * Copyright © 1997 Thankyou Music","Philip Lawson Johnston","","", -"Jesus, hope of the nations;","","Brian Doerksen * Copyright © 2002 Integrity's Hosanna! Music/Sovereign Music UK","Brian Doerksen","SOF #1385","", -"Jesus, how lovely You are,","","Dave Bolton. * Copyright © 1975 Kingsway's Thankyou Music.","Dave Bolton","","", -"Jesus, I am thirsty,","","Don Harris & Martin J Nystrom. * Copyright © 1993 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Don Harris | Martin J Nystrom","","", -"Jesus, I love You; I bow down before You","","Jude Del Hierro. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Jude Del Hierro","","", -"Jesus, I love You, I worship and adore You","","Judith Butler & Paul Hemingway. * Copyright © 1996 Kingdom Faith Ministries.","Judith Butler | Paul Hemingway","","", -"Jesus, I worship You,","","Chris Bowater. * Copyright © 1982 Sovereign Lifestyle Music.","Chris Bowater","","", -"Jesus is exalted","","Alan Rose * Copyright © 1999 Thankyou Music","Alan Rose","","", -"Jesus is King","","Wendy Churchill. * Copyright © 1982 Word's Spirit of Praise Music/Adm. by CopyCare.","Wendy Churchill","","", -"Jesus is Lord! Creation's voice","","David J. Mansell. * Copyright © 1982 Word's Spirit of Praise Music/Adm. by CopyCare.","David J. Mansell","","", -"Jesus is Lord of all,","","Marilyn Baker. * Copyright © 1986 Word's Spirit of Praise Music/Adm. by CopyCare.","Marilyn Baker","","", -"Jesus is lord - the cry that echoes","","Stuart Townend & Keith Getty * Copyright © 2003 Thankyou Music","Stuart Townend | Keith Getty","","", -"Jesus is the name we honour;","","Phil Lawson Johnston. * Copyright © 1991 Kingsway's Thankyou Music.","Phil Lawson Johnston","","", -"Jesus, Jesus, healer, Saviour,","","David Fellingham * Copyright © 1998 Thankyou Music","David Fellingham","","", -"Jesus, Jesus, Jesus, how I love Your name","","Dave Bilbrough * Copyright © 2000 Thankyou Music","Dave Bilbrough","","", -"Jesus, Jesus, Jesus, Your love has melted","","Copyright © 1979 Sovereign Music UK. *","Copyright © 1979 Sovereign Music UK","","", -"Jesus, Jesus, Holy and anointed One;;","","John Barnett. * Copyright © 1988 Mercy/Vineyard Publishing/Adm. by CopyCare.","John Barnett","SOF #293","", -"Jesus, Jesus, Son of God","","Bryn Haworth. * Copyright © 1993 Kingsway's Thankyou Music.","Bryn Haworth","","", -"Jesus, King of kings,","","Chris Rolinson. * Copyright © 1988 Kingsway's Thankyou Music.","Chris Rolinson","","", -"Jesus, King of the ages,","","David Lyle Morris & Faith Forster * Copyright © 2000 Thankyou Music","David Lyle Morris | Faith Forster","","", -"Jesus, Lamb of God,","","Alan Rose. * Copyright © 1997 Kingsway's Thankyou Music.","Alan Rose","","", -"Jesus lives! thy terrors now","","Christian F. Gellert. * Tr. Frances E. Cox.","Christian F. Gellert","","", -"Jesus loves the church,","","Mike Sandeman * Copyright © 1999 Thankyou Music","Mike Sandeman","","", -"Jesus, melt my cold heart","","Caroline Bonnett & Steve Bassett * Copyright © 2001 Thankyou Music","Caroline Bonnett | Steve Bassett","","", -"Jesus, my desire","","Martyn Layzell * Copyright © 2001 Thankyou Music","Martyn Layzell","","", -"Jesus, my passion","","Vicky Beeching * Copyright © 2001 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Vicky Beeching","","", -"Jesus, name above all names, Beautiful Saviour;","","Naida Hearn. * Copyright © 1974 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Naida Hearn","SOF #298","", -"Jesus, name above all names, my soul cries","","Owen Hurter * Copyright © 2000 Thankyou Music","Owen Hurter","","", -"Jesus put this song into ourhearts,","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Jesus, Redeemer","","Tim Hughes * Copyright © 2001 Thankyou Music","Tim Hughes","","", -"Jesus, remember me","","Jacques Berthier/Taizé. * Copyright © 1978 Ateliers et Presses de Taize.","Jacques Berthier/Taizé","","", -"Jesus, restore to us again","","For permission to reproduce this song for non-commercial purposes, * please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB Graham Kendrick. Copyright © 1992 Make Way Music.","For permission to reproduce this song for non-commercial purposes","","", -"Jesus, send more labourers,","","Chris Rolinson. * Copyright © 1988 Kingsway's Thankyou Music.","Chris Rolinson","","", -"Jesus shall reign","","Isaac Watts. *","Isaac Watts","","", -"Jesus shall take the highest honour,","","Chris Bowater. * Copyright © 1988 Sovereign Lifestyle Music.","Chris Bowater","","", -"Jesus, stand among us at the meeting of our lives","","Graham Kendrick. * Copyright © 1977 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Jesus, stand among us,in thy risen power,","","William Pennefather. *","William Pennefather","","", -"Jesus take me as I am,","","Dave Bryant. * Copyright © 1978 Kingsway's Thankyou Music.","Dave Bryant","","", -"Jesus taught us how to pray","","James Gregory * Copyright © 2000 Thankyou Music","James Gregory","","", -"Jesus, the name above all names,","","Hilary Davies. * Copyright © 1988 Samsongs/Coronation Music/Kingsway's Thankyou Music.","Hilary Davies","","", -"Jesus! the name high over all,","","Charles Wesley. *","Charles Wesley","","", -"Jesus, the very thought of thee","","St Bernard of Clairvaux. * Tr. Edward Caswall.","St Bernard of Clairvaux","","", -"Jesus, we celebrate Your victory:","","John Gibson. * Copyright © 1987 Kingsway's Thankyou Music.","John Gibson","","", -"Jesus, we enthrone You;","","Paul Kyle. * Copyright © 1980 Kingsway's Thankyou Music.","Paul Kyle","SOF #310","", -"Jesus, what a beautiful name.","","Tanya Riches. * Copyright © 1995 Tanya Riches/Hillsongs Australia/Kingsway's Thankyou Music.","Tanya Riches","","", -"Jesus, You alone","","Tim Hughes * Copyright © 1999 Thankyou Music","Tim Hughes","","", -"Jesus, You are changing me,","","Marilyn Baker. * Copyright © 1981 Word's Spirit of Praise Music/Adm. by CopyCare.","Marilyn Baker","","", -"Jesus, You are so precious","","Nathan Fellingham * Copyright © 1999 Thankyou Music","Nathan Fellingham","","", -"Jesus, You are the radiance","","David Fellingham. * Copyright © 1985 Kingsway's Thankyou Music.","David Fellingham","","", -"Jesus, Your beauty","","Sue Rinaldi & Caroline Bonnett * Copyright © 1998 Thankyou Music","Sue Rinaldi | Caroline Bonnett","","", -"Jesus, You're all I need,","","Darlene Zschech * Copyright © 1997 Darlene Zschech/Hillsong Publishing/ Kingsway Music","Darlene Zschech","","", -"Jesus, lover of my soul, I will never","","J. Ezzy, D. Grul, S. McPherson. * Copyright © 1992 Ezzy, Grul, McPherson/ Hillsongs Australia/Kingsway's Thankyou Music.","J. Ezzy | D. Grul | S. McPherson","","", -"Jesus, lover of my soul, let me to thy bosom","","Charles Wesley. *","Charles Wesley","","", -"Jesus, lover of my soul, all consuming fire","","Paul Oakley. * Copyright © 1995 Kingsway's Thankyou Music.","Paul Oakley","","", -"Jesus,","","Andy Thorpe. * Copyright © 1993 Kingsway's Thankyou Music.","Andy Thorpe","","", -"Join all the glorious names","","Isaac Watts. *","Isaac Watts","","", -"Joy has dawned upon the world","","","Author Unknown","","", -"Joy to the world!","","Isaac Watts. *","Isaac Watts","","", -"Jubilate, everybody,","","Fred Dunn. * Copyright © 1977, 1980 Kingsway's Thankyou Music.","Fred Dunn","","", -"Just as I am,","","Charlotte Elliot. *","Charlotte Elliot","","", -"Just like You promised,","","Patty Kennedy. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare.","Patty Kennedy","","", -"Just the mention of Your name","","Chris Bowater. * Copyright © 1991 Sovereign Lifestyle Music.","Chris Bowater","","", -"King forever,","","Jane Norton. * Copyright © 1986 Kingsway's Thankyou Music.","Jane Norton","","", -"King Jesus, I believe","","Martyn Layzell * Copyright © 2000 Thankyou Music","Martyn Layzell","","", -"King of history","","David Gate * Copyright © 2001 Thankyou Music","David Gate","","", -"King of kings, Majesty;","","Jarrod Cooper * Copyright © 1996 Sovereign Lifestyle Music","Jarrod Cooper","SOF #1404","", -"King of kings, Lord of Lords","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"King of love and grace (Guardian);","","Song/ATV Music Publishing LLC","Stuart Garrard | Ben Cantelon and Nick Herbert","SH13 #41","", -"King of love","","Doug Horley * Copyright © 1999 Thankyou Music","Doug Horley","","", -"King of our lives","","David Lyle Morris & Nick Wynne-Jones * Copyright © 2001 Thankyou Music","David Lyle Morris | Nick Wynne-Jones","","", -"King of the ages","","Stuart Townend & Keith Getty * Copyright © 2002 Thankyou Music","Stuart Townend | Keith Getty","","", -"Knowing Your grace","","Terry Virgo & Stuart Townend * Copyright © 2001 Thankyou Music","Terry Virgo | Stuart Townend","","", -"Kyrie, kyrie eleison","","Taizé, music: Jacques Berthier (1923-94) * Copyright © Ateliers et Presses de Taizé","Taizé | music: Jacques Berthier (1923-94)","","", -"Lamb of God,","","Chris Bowater. * Copyright © 1988 Sovereign Lifestyle Music.","Chris Bowater","","", -"Lamp unto my feet,","","Darlene Zschech * Copyright © 1999 Darlene Zschech/Hillsong Publishing/ Kingsway Music","Darlene Zschech","","", -"Laying aside everything","","David Fellingham * Copyright © 2000 Thankyou Music","David Fellingham","","", -"Lead us, heavenly Father, lead us","","James Edmeston, altd. *","James Edmeston | altd","","", -"Lead us, heavenly Father,","","James Edmeston (1791-1867) * In this version Copyright © Jubilate Hymns Ltd","James Edmeston (1791-1867)","","", -"Led like a Lamb","","Graham Kendrick. * Copyright © 1983 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Let all mortal flesh","","Liturgy of St James, c.4th cent. * Tr. Gerard Moultrie (1829-85)","Liturgy of St James | c.4th cent","","", -"Let all the world","","George Herbert. *","George Herbert","","", -"Let every tribe and every tongue","","Debbye Graafsma. * Copyright © 1992 WordPsalm Ministries Inc./ Kingsway's Thankyou Music.","Debbye Graafsma","","", -"Let everything that,","","Matt Redman. * Copyright © 1997 Kingsway's Thankyou Music.","Matt Redman","","", -"Let God arise","","Graham Kendrick. * Copyright © 1984 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Let God speak","","lan Smale. * Copyright © 1982 Kingsway's Thankyou Music.","lan Smale","","", -"Let me have my way among You,","","Graham Kendrick. * Copyright © 1977 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Let our praise to You be as incense,","","Brent Chambers. * Copyright © 1979 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Brent Chambers","","", -"Let praises ring,","","Mike & Claire McIntosh. * Copyright © 1982 Mike and Claire McIntosh.","Mike McIntosh | Claire McIntosh","","", -"Let the chimes of freedom ring","","Dave Bilbrough. * Copyright © 1997 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Let the church arise,","","Phil Wilthew. * Copyright © 1996 Kingsway's Thankyou Music.","Phil Wilthew","","", -"Let the poor man say, I am rich in Him;","","Darrell Patton Evans * Copyright © 1995 Mercy/Vineyard Publishing/Adm. by CopyCare","Darrell Patton Evans","","", -"Let the righteous sing,","","Bryn Haworth. * Copyright © 1991 Kingsway's Thankyou Music.","Bryn Haworth","","", -"Let the weak say I am strong,","","Reuben Morgan * Copyright © 1998 Reuben Morgan/Hillsong Publishing/ Kingsway Music","Reuben Morgan","SOF #1416","", -"Let there be glory and honour","","James & Elizabeth Greenelsh. * Copyright © Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music 1978. (1st part)","James Greenelsh | Elizabeth Greenelsh","","", -"Let there be joy","","Bruce Napier * Copyright © 1998 Bruce Napier","Bruce Napier","","", -"Let there be love","","Dave Bilbrough. * Copyright © 1979 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Let us break bread together, we are one.","","Author unknown. *","Author unknown","","", -"Let us draw near with confidence,","","Mark Altrogge. * Copyright © People of Destiny Int./Word Music/ Adm. by CopyCare.","Mark Altrogge","","", -"Let us draw near","","David Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham","","", -"Let us go to the house of the Lord.","","lan White. * Copyright © 1985 Little Misty Music/ Kingsway's Thankyou Music.","lan White","","", -"Let us go up to the house of God","","Paul Oakley. * Copyright © 1994 Kingsway's Thankyou Music.","Paul Oakley","","", -"Let us praise His name with dancing","","Pale Sauni. * Copyright © 1983 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Pale Sauni","","", -"Let us run with perseverance","","David Lyle Morris * Copyright © 2000 Thankyou Music","David Lyle Morris","","", -"Let us with a gladsome mind","","John Milton. *","John Milton","","", -"Let Your living water flow","","John Watson. * Copyright © 1986 Ampelos Music/ Adm. by CopyCare.","John Watson","","", -"Let Your love come down.","","Noel & Tricia Richards. * Copyright © 1996 Kingsway's Thankyou Music. Oh . . . Oh . . . Oh . . .","Noel Richards | Tricia Richards","","", -"Let Your word","","David & Nathan Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham | Nathan Fellingham","","", -"Lift high the cross.in majesty","","Graham Kendrick. * Copyright © 1989 Make Way Music.","Graham Kendrick","","", -"Lift high the cross the love of Christ","","G.W. Kitchin (1827-1912) & M.R. Newbolt (1874-1956) * Copyright © Hymns Ancient & Modern Ltd","G.W. Kitchin (1827-1912) | M.R. Newbolt (1874-1956)","","", -"Lift Him up,","","Dave Bilbrough. * Copyright © 1994 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Lift up Your heads, O ye gates,","","Terry Manship. * Copyright © 1986 Kingsway's Thankyou Music.","Terry Manship","","", -"Lift up Your heads to the coming King","","Steven Fry. * Copyright © 1974 BMG Songs Inc/ Birdwing Music/EMI Christian Music Publishing/ Adm. by CopyCare.","Steven Fry","","", -"Lift up Your heads, O ye gates","","Graham Kendrick. * Copyright © 1991 Make Way Music.","Graham Kendrick","","", -"Light a flame","","Mick Gisbey. * Copyright © 1987 Kingsway's Thankyou Music.","Mick Gisbey","","", -"Light has dawned","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"Light of the world you stepped down","","Tim Hughes * Copyright © 2000 Thankyou Music","Tim Hughes","","", -"Light of the world, shine your light","","Craig Musseau. * Copyright © 1990 Mercy/Vineyard Publishing/Adm. by CopyCare.","Craig Musseau","","", -"Lighten our darkness,","","Copyright © 1980 Central Board of Finance * of the Church of England. Used by permission.","Copyright © 1980 Central Board of Finance","","", -"Like a candle flame,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"Like a fragrant oil","","Paul Oakley * Copyright © 2001 Thankyou Music","Paul Oakley","","", -"Like a gentle breeze,","","Maggi Dawn. * Copyright © 1991 Kingsway's Thankyou Music.","Maggi Dawn","","", -"Like a river glorious","","Frances Ridley Havergal. *","Frances Ridley Havergal","","", -"Like the sunshine","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","","", -"Lion of Judah","","Ted Sandquist. * Copyright © 1976 Lion of Judah Music/ John T. Benson Music Publishing Co/ Adm. by CopyCare.","Ted Sandquist","","", -"Living under the shadow of His wing","","David J. Hadden & Bob Silvester. * Copyright © 1983 Restoration Music Ltd./ Adm. by Sovereign Music UK.","David J. Hadden | Bob Silvester","","", -"Lo, He comes with clouds descending,","","Charles Wesley. *","Charles Wesley","","", -"Look and see the glory of the King,","","Martin Ball. * Copyright © 1982 Integrity's Hosanna! Music/Restoration Music Ltd/ Adm. in Europe by Sovereign Music UK.","Martin Ball","","", -"Look to the skies","","Graham Kendrick * Copyright © 1984 Thankyou Music","Graham Kendrick","","", -"Look, ye saints, the sight isglorious;","","Thomas Kelly. *","Thomas Kelly","","", -"Looking in the sky;","","Thankyou music","Nathan Fellingham | Paul Oaklet","SH09 #53","", -"Lord and Father, King for ever,","","Noel Richards. * Copyright © 1982 Kingsway's Thankyou Music.","Noel Richards","","", -"Lord, come and heal Your church,","","Chris Rolinson. * Copyright © 1988 Kingsway's Thankyou Music.","Chris Rolinson","","", -"Lord, enthroned in heavenly splendour,","","G. H. Bourne. *","G. H. Bourne","","", -"Lord, for the years","","Timothy Dudley-Smith. * Copyright © 1967 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", -"Lord God, heavenly King,","","Susan Hutchinson. * Copyright © 1979 Word's Spirit of Praise Music/Adm. by CopyCare.","Susan Hutchinson","","", -"Lord have mercy","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Lord, have mercy,","","Dave Bilbrough. * Copyright © 1995 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Lord, hear the music of my heart","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", -"Lord how majestic You are,","","Stuart Townend. * Copyright © 1990 Kingsway's Thankyou Music.","Stuart Townend","","", -"Lord, I am not my own,","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", -"Lord, I come before Your throne of grace;","","Robert & Dawn Critchley. * Copyright © 1989 Kingsway's Thankyou Music.","Robert Critchley | Dawn Critchley","","", -"Lord, I come to You, let my heart be change","","Geoff Bullock. * Copyright © 1992 Word Music/Adm. by CopyCare.","Geoff Bullock","","", -"Lord, I come to You, broken and lost","","Colse Leung * Copyright © 2001 Thankyou Music","Colse Leung","","", -"Lord, I come, longing to know you","","Geraldine Latty * Copyright © 2000 Thankyou Music","Geraldine Latty","","", -"Lord, I have heard of Your fame,","","Brian Doerksen. * Copyright © 1992 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen","","", -"Lord, I lift Your name on high;","","Rick Founds. * Copyright © 1989 Maranatha! Music/Adm. by CopyCare.","Rick Founds","SOF #897","", -"Lord, I long to see You glorified","","Stephen McPherson. * Copyright © 1996 Stephen McPherson/ Hillsongs Australia/Kingsway's Thankyou Music.","Stephen McPherson","","", -"Lord, I want to tell You","","Marilyn Baker * Copyright © 1998 Marilyn Baker Music/Kingsway Music","Marilyn Baker","","", -"Lord, I will celebrate Your love,","","Dave Bilbrough. * Copyright © 1987 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Lord, I'm grateful","","Stuart Townend & Fred Heumann * Copyright © 2002 Thankyou Music","Stuart Townend | Fred Heumann","","", -"Lord Jesus Christ,","","Patrick Appleford. * Copyright © 1960 Josef Weinberger Ltd.","Patrick Appleford","","", -"Lord Jesus, here I stand","","Rae Ranford. * Copyright © 1990 Kingsway's Thankyou Music.","Rae Ranford","","", -"Lord Jesus, robed in splendour,","","Philip Lawson Johnston * Copyright © 1997 Thankyou Music","Philip Lawson Johnston","","", -"Lord, keep my heart tender,","","Jesus Fellowship Church. * Copyright © 1990 Jesus Fellowship Church/ Adm. by CopyCare.","Jesus Fellowship Church","","", -"Lord, let Your glory fall","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", -"Lord, look upon my need,","","Rick Founds. * Copyright © 1989 Maranatha! Music/Adm. by CopyCare.","Rick Founds","","", -"Lord make me an instrument,","","Robert Bicknell. * Copyright © 1977 ZionSong Music/ Adm. by CopyCare.","Robert Bicknell","","", -"Lord, my heart cries out,","","Darlene Zschech. * Copyright © 1997 Darlene Zschech/Hillsongs Australia/Kingsway's Thankyou Music.","Darlene Zschech","","", -"Lord, my request","","Mark Baldry * Copyright © 1999 Thankyou Music","Mark Baldry","","", -"Lord of all creation,","","Joe King. * Copyright © 1990 Kingsway's Thankyou Music.","Joe King","","", -"Lord of all hopefulness,","","Jan Struther. * Copyright © Oxford University Press","Jan Struther","","", -"Lord of every heart","","Stuart Townend * Copyright © 2001 Thankyou Music","Stuart Townend","","", -"Lord of lords,","","Jessy Dixon/Randy Scruggs/John Thompson. * Copyright © 1983 Whole Armor Publishing/ Full Armor Publishing/Songs for Today/Windswept Pacific Music Limited.","Jessy Dixon/Randy Scruggs/John Thompson","","", -"Lord of the church, we pray for our renewing","","Timothy Dudley-Smith * Copyright © Timothy Dudley-Smith","Timothy Dudley-Smith","","", -"Lord of the church, You hold us in Your hand","","David Lyle Morris & Nick Wynne-Jones * Copyright © 2001 Thankyou Music","David Lyle Morris | Nick Wynne-Jones","","", -"Lord of the dance,","","Kevin Prosch. * Copyright © 1995 7th Time Music/Kingsway's Thankyou Music.","Kevin Prosch","","", -"Lord of the heavens,","","Shaun & Mel Griffiths * Copyright © 1998 Parachute Music New Zealand/ Adm. by Kingsway Music","Shaun Griffiths | Mel Griffiths","","", -"Lord, pour out Your Spirit","","Ray Goudie, Dave Bankhead & Steve Bassett. * Copyright © 1993 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Ray Goudie | Dave Bankhead | Steve Bassett","","", -"Lord, the light of Your love;","Shine Jesus Shine;","Graham Kendrick. * Copyright © 1987 Make Way Music.","Graham Kendrick","SOF #362","", -"Lord, to love You more","","James & Hayley Gregory * Copyright © 2000 Thankyou Music","James Gregory | Hayley Gregory","","", -"Lord, we come in adoration,","","Dave Bilbrough. * Copyright © 1993 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Lord we come in Your name","","Graham Kendrick. * Copyright © 1991 Make Way Music.","Graham Kendrick","","", -"Lord, we cry to You:","","David Fellingham. * Copyright © 1994 Kingsway's Thankyou Music.","David Fellingham","","", -"Lord, we give You praise;","","Mick Ray. * Copyright © 1987 Kingsway's Thankyou Music.","Mick Ray","","", -"Lord, we long for You","","Trish Morgan, Ray Goudie, * lan Townend, Dave Bankhead. Copyright © 1986 Kingsway's Thankyou Music.","Trish Morgan | Ray Goudie","","", -"Lord, we long to see Your glory, Gaze upon","","Richard Lewis. * Copyright © 1997 Kingsway's Thankyou Music.","Richard Lewis","","", -"Lord, we long to see Your glory, Lord we long to feel","","Nathan Fellingham. * Copyright © 1996 Kingsway's Thankyou Music.","Nathan Fellingham","","", -"Lord, we thank You for the promise","","Martin E. Leckebusch * Copyright © 1999 Kevin Mayhew Ltd","Martin E. Leckebusch","","", -"Lord, we worship You,","","Dave Bilbrough. * Copyright © 1984 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Lord, we've come to worship You,","","Ian Smale. * Copyright © 1981 Kingsway's Thankyou Music.","Ian Smale","","", -"Lord, when I think of You","","Ken Riley * Copyright © 2001 Thankyou Music","Ken Riley","","", -"Lord, You are calling","","Simon and Lorraine Fenner. * Copyright © 1989 Kingsway's Thankyou Music.","Simon and Lorraine Fenner","","", -"Lord, You are more precious","","Lynn DeShazo. * Copyright © 1985 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Lynn DeShazo","","", -"Lord, You are my righteousness","","Andrew Rogers * Copyright © 2001 Thankyou Music","Andrew Rogers","","", -"Lord, You are so precious to me,","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Lord, You are the author of my life,","","Judy Pruett. * Copyright © 1985 Kingsway's Thankyou Music.","Judy Pruett","","", -"Lord, You are worthy,","","David Baroni. * Copyright © 1992 Pleasant Hill Music/John T. Benson Publishing Co/Adm. by CopyCare.","David Baroni","","", -"Lord, You have my heart;","","Martin Smith. * Copyright © 1992 Kingsway's Thankyou Music.","Martin Smith","SOF #912","", -"Lord, You put a tongue in my mouth","","lan Smale. * Copyright © 1983 Kingsway's Thankyou Music.","lan Smale","","", -"Lord, You see me","","John Hartley & Gary Sadler * Copyright © 2000 worshiptogether.com songs/Adm. by Kingsway Music/& Integrity's Hosanna! Music/Sovereign Music UK","John Hartley | Gary Sadler","","", -"Lord, Your glory fills my heart,","","Craig Musseau. * Copyright © 1990 Mercy/Vineyard Publishing/Adm. by CopyCare.","Craig Musseau","","", -"Lord, Your name is Holy,","","Tom Shirey. * Copyright © 1987 Mercy Publishing/ Kingsway's Thankyou Music.","Tom Shirey","","", -"Lord, Your name is wonderful,","","Barry Taylor. * Copyright © 1990 Kingsway's Thankyou Music.","Barry Taylor","","", -"Lord, You're faithful and just,","","Don Moen. * Copyright © 1986 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Don Moen","","", -"Lord, you've been good to me","","Graham Kendrick * Copyright © 2001 Make Way Music","Graham Kendrick","","", -"Lost in the shuffle,","","Wayne Drain. * Copyright © 1996 Kingsway's Thankyou Music.","Wayne Drain","","", -"Love beyond measure,","","Dave Bilbrough. * Copyright © 1984 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Love came down at christmas,","","Christina Rossetti (1830–94). *","Christina Rossetti (1830–94)","","", -"Love divine,","","Charles Wesley. *","Charles Wesley","","", -"Love is patient,","","Stuart Townend * Copyright © 2000 Thankyou Music","Stuart Townend","","", -"Love, joy, peace","","David Lyle Morris * Copyright © 2000 Thankyou Music","David Lyle Morris","","", -"Love like a jewel","","Steve Bassett & Sue Rinaldi * Copyright © 2002 Thankyou Music","Steve Bassett | Sue Rinaldi","","", -"Love songs from heaven","","Noel & Tricia Richards. * Copyright © 1996 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"Low in the grave He lay;","","Robert Lowry. *","Robert Lowry","SOF #378","", -"Magnificat,","","Taizé, music: Jacques Berthier (1923-94) * Copyright © Ateliers et Presses de Taizé","Taizé | music: Jacques Berthier (1923-94)","","", -"Magnificent warrior","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Majesty,","","Jack W. Hayford. * Copyright © 1976 Rocksmith Music/ Leosong Copyright Service.","Jack W. Hayford","","", -"Make a joyful melody,","","Dave Bilbrough. * Copyright © 1988 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Make me a channel of Your peace.","","Sebastian Temple. * Copyright © 1967 Sebastian Temple/ OCP Publications/Adm. by Calamus.","Sebastian Temple","","", -"Make me, Lord, a dreamer","","For permission to reproduce this song for non-commercial purposes, * please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB Chris Bowater. Copyright © 1983 Sovereign Lifestyle Music.","For permission to reproduce this song for non-commercial purposes","","", -"Make us a house of prayer,","","Daniel Brymer. * Copyright © 1990 Grace! Music.","Daniel Brymer","","", -"Make us one, Lord,","","Maldwyn Pope. * Copyright © 1988 Samsongs/Coronation Music/ Kingsway's Thankyou Music.","Maldwyn Pope","","", -"Make way,","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Makes You wanna dance,","","Russell Fragar. * Copyright © 1993 Russell Fragar/Hillsongs Australia/Kingsway's Thankyou Music.","Russell Fragar","","", -"Man of sorrows!","","Philipp Bliss. *","Philipp Bliss","","", -"Many are the words we speak,","","Matt Redman * Copyright © 1997 Thankyou Music","Matt Redman","","", -"Mary's Boy Child","","Sony/ATV Music Publishing LLC, BOURNE CO","Frank Farian | Fred Jay | Jester Hairstone","","", -"Master, speak! thy servant heareth,","","Frances Ridley Havergal. *","Frances Ridley Havergal","","", -"May God be gracious to us","","Ian White. * Copyright © 1987 Little Misty Music/Kingsway's Thankyou Music.","Ian White","","", -"May I sing a song of love","","David Gate. * Copyright © 1997 Kingsway's Thankyou Music.","David Gate","","", -"May my eyes see more of You,","","Doug Horley * Copyright © 1999 Thankyou Music","Doug Horley","","", -"May my life","","Dave Bilbrough. * Copyright © 1990 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"May our worship be as fragrance,","","Chris Bowater. * Copyright © 1992 Sovereign Lifestyle Music.","Chris Bowater","","", -"May the fragrance","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"May the mind of Christ my Saviour","","Kate B. Wilkinson (1859-1928) *","Kate B. Wilkinson (1859-1928)","","", -"May the words of my mouth","","Tim Hughes & Rob Hill * Copyright © 2000 Thankyou Music","Tim Hughes | Rob Hill","","", -"May we be a shining light","","Chris Christensen. * Copyright © 1986 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Chris Christensen","","", -"Meekness and Majesty,","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Men of faith, rise up and sing;","Shout to the north;","Martin Smith. * Copyright © 1995 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","SOF #921","", -"Merciful God and Father,","","John Chisum & Gary Sadler. * Copyright © 1994 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","John Chisum | Gary Sadler","","", -"Merciful Lord","","S. Monteiro, English: Word & Music * Copyright © S. Monteiro / Copyright Control English words © 1995 Word & Music/Jubilate Hymns Ltd","S. Monteiro | English: Word | Music","","", -"Mercy, mercy, Lord","","Lynn DeShazo & Gary Sadler * Copyright © 1997 Integrity's Hosanna! Music/Sovereign Music UK","Lynn DeShazo | Gary Sadler","","", -"Mighty God, everlasting Father","","Chris Bowater and Mark & Helen Johnson. * Copyright © 1991 Sovereign Lifestyle Music.","Chris Bowater and Mark | Helen Johnson","","", -"Mighty God, gracious King","","Maggi Dawn. * Copyright © 1987 Kingsway's Thankyou Music.","Maggi Dawn","","", -"Mighty is our God,","","Eugene Greco, Gerrit Gustafson, Don Moen * Copyright © 1989 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Eugene Greco | Gerrit Gustafson | Don Moen","","", -"Mighty is the Lord","","A. P. Douglas. * Copyright © 1997 Kingsway's Thankyou Music.","A. P. Douglas","","", -"Mighty, mighty Lord.","","Carol Owen. * Copyright © 1994 Kingsway's Thankyou Music.","Carol Owen","","", -"More love more power","","Jude Del Hierro. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Jude Del Hierro","","", -"More than I could hope or dream of,","","Reuben Morgan * Copyright © 1999 Reuben Morgan/Hillsong Publishing/ Kingsway Music","Reuben Morgan","","", -"More than oxygen,","","Brian Doerksen. * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen","","", -"Morning has broken","","Eleanor Farjeon. * Copyright © David Higham Associates Ltd.","Eleanor Farjeon","","", -"Most Holy judge,","","Steve & Vikki Cook. * Copyright © 1991 People of Destiny International/Word Music/Adm. by CopyCare.","Steve Cook | Vikki Cook","","", -"Move Holy Spirit,","","For permission to reproduce this song for non-commercial purposes, * please contact David Higham Associates, 5-8 Lower John Street, Golden Square, London, W1R 3PE Patricia Morgan. Copyright © 1984 Kingsway's Thankyou Music.","For permission to reproduce this song for non-commercial purposes","","", -"Mukti dilaye","","Author unknown. *","Author unknown","","", -"My first love","","Stuart Townend. * Copyright © 1996 Kingsway's Thankyou Music.","Stuart Townend","","", -"My friend and King,","","James Taylor * Copyright © 1997 Thankyou Music","James Taylor","","", -"My God, how wonderful thou art,","","Frederick W. Faber. *","Frederick W. Faber","","", -"My God is a rock","","Kate Simmonds & Mark Edwards * Copyright © 2002 Thankyou Music","Kate Simmonds | Mark Edwards","","", -"My God is so big","","Author unknown * Copyright control","Author unknown","","", -"My God shall supply all my needs,","","Ian Smale. * Copyright © 1993 Kingsway's Thankyou Music.","Ian Smale","","", -"My heart is captivated, Lord","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", -"My heart is filled with thankfulness","","© 2003 Thankyou Music","Keith Getty and Stuart Townend","","", -"My heart is full","","Graham Kendrick. * Copyright © 1991 Make Way Music.","Graham Kendrick","","", -"My heart is not raised up too high,","","Maggi Dawn. * Copyright © 1996 Kingsway's Thankyou Music.","Maggi Dawn","","", -"My heart, I want to give","","Chris Williams. * Copyright © 1993 Kingsway's Thankyou Music.","Chris Williams","","", -"My hope is in the Lord","","Robin Mark * Copyright © 2000 Thankyou Music","Robin Mark","","", -"My hope rests firm","","Keith Getty & Richard Creighton * Copyright © 2001 Thankyou Music","Keith Getty | Richard Creighton","","", -"My Jesus, my lifeline,","","Tim Hughes. * Copyright © 1997 Kingsway's Thankyou Music.","Tim Hughes","","", -"My Jesus, my Saviour;","","Darlene Zschech. * Copyright © 1993 Darlene Zschech/Hillsongs Australia/Kingsway's Thankyou Music.","Darlene Zschech","SOF #935","", -"My life is in You, Lord,","","Daniel Gardner. * Copyright © 1986 Integrity's Hosanna! Music/ Adm. Kingsway's Thankyou Music.","Daniel Gardner","","", -"My lips shall praise You,","","Noel & Tricia Richards. * Copyright © 1991 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"My Lord, He is the fairest of the fair,","","Joan Parsons. * Copyright © 1978 Kingsway's Thankyou Music.","Joan Parsons","","", -"My Lord, what love is this","","Graham Kendrick. * Copyright © 1989 Make Way Music.","Graham Kendrick","","", -"My peace I give unto you","","Keith Routledge. * Copyright © 1975 Sovereign Music UK.","Keith Routledge","","", -"My song is love unknown,","","Samuel Crossman. *","Samuel Crossman","","", -"My soul longs for You,","","David Fellingham. * Copyright © 1988 Kingsway's Thankyou Music.","David Fellingham","","", -"My troubled soul","","Robert Critchley * Copyright © 2001 Thankyou Music","Robert Critchley","","", -"My trust is in the name of the Lord","","Laurie Jasurda. * Copyright © 1990 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Laurie Jasurda","","", -"Name above all names","","Neil Bennetts * Copyright © 2000 Daybreak Music Ltd","Neil Bennetts","","", -"Name of all Majesty,","","Timothy Dudley-Smith. * Copyright © 1979 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", -"Nearer, my God, to thee,","","Sarah Flower Adams. *","Sarah Flower Adams","","", -"Never let my heart grow cold.","","Chris Roe. * Copyright © 1990 Kingsway's Thankyou Music.","Chris Roe","","", -"New covenant people","","David Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham","","", -"No eye has seen, no ear has heard,","","Paul & Rita Baloche & Ed Kerr. * Copyright © 1992 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Paul Baloche | Rita Baloche | Ed Kerr","","", -"No eye has seen,","","Mark Altrogge. * Copyright © 1990 Integrity's Hosanna! Music/ People of Destiny Int./Adm. by Kingsway's Thankyou Music.","Mark Altrogge","","", -"No longer just servants","","Matt Redman * Copyright © 1993 Thankyou Music","Matt Redman","","", -"No one is like You, O Lord;","","Carol Owen. * Copyright © 1994 Kingsway's Thankyou Music.","Carol Owen","","", -"No other name","","Robert Gay. * Copyright © 1988 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Robert Gay","","", -"No scenes of stately Majesty","","Graham Kendrick * Copyright © 1997 Make Way Music","Graham Kendrick","","", -"No weapon formed,","","Tom Dowell. * Copyright © 1984 Christian Fellowship of Columbia.","Tom Dowell","","", -"None other is more worthy","","Geraldine Latty * Copyright © 2002 Thankyou Music","Geraldine Latty","","", -"No-one but You, Lord","","Andy Park. * Copyright © 1988 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", -"Not by words and not by deeds","","Martyn Layzell * Copyright © 1999 Thankyou Music","Martyn Layzell","","", -"Not unto us,","","Philip Lawson Johnston. * Copyright © 1989 Kingsway's Thankyou Music.","Philip Lawson Johnston","","", -"Not without a cause","","Bill Anderson. * Copyright © 1985 Kingsway's Thankyou Music.","Bill Anderson","","", -"Nothing in this world,","","Tim Hughes * Copyright © 1998 Thankyou Music","Tim Hughes","","", -"Nothing is too much to ask","","Matt Redman & Mike Pilavachi * Copyright © 2000 Thankyou Music","Matt Redman | Mike Pilavachi","","", -"Nothing shall separate us;","","Noel & Tricia Richards. * Copyright © 1989 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","SOF #947","", -"Now has come salvation","","Mark Stevens (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Mark Stevens (Abundant Life Ministries | Bradford | England)","","", -"Now, in reverence and awe","","Graham Kendrick * Copyright © 1993 Make Way Music","Graham Kendrick","","", -"Now thank we all our God,","","Martin Rinkart. * Tr. Catherine Winkworth.","Martin Rinkart","","", -"Now unto the King","","Joey Holder. * Copyright © 1984 Far Lane Music Publishing/ Kingsway's Thankyou Music.","Joey Holder","","", -"O breath of God, breathe on us now,","","Alfred Vine. *","Alfred Vine","","", -"O breath of life, come sweeping through us,","","Elizabeth Porter Head. *","Elizabeth Porter Head","","", -"O changeless Christ","","Timothy Dudley-Smith * Copyright © Timothy Dudley-Smith","Timothy Dudley-Smith","","", -"O come, all ye faithful,","","Tr. Frederick Oakeley, altd. *","Tr. Frederick Oakeley | altd","","", -"O come let us adore Him,","","Author unknown. *","Author unknown","","", -"O come, O come, Emmanuel,","","Tr. John Mason Neale, altd. *","Tr. John Mason Neale | altd","","", -"O dear God, we ask for Your favour","","Marty Sampson * Copyright © 1999 Marty Sampson/Hillsong Publishing/Kingsway Music","Marty Sampson","","", -"O Father of the fatherless,","","Graham Kendrick. * Copyright © 1992 Make Way Music.","Graham Kendrick","","", -"O for a closer walk with God (Getty)","","William Cowper (1731-1800), adapt. Keith Getty * Copyright © 2001 Thankyou Music","William Cowper (1731-1800) | adapt. Keith Getty","","", -"O for a closer walk with God,","","William Cowper. *","William Cowper","","", -"O for a heart to praise my God,","","Charles Wesley. *","Charles Wesley","","", -"O for a thousand tongues","","Charles Wesley. *","Charles Wesley","","", -"O give thanks","","Joanne Pond. * Copyright © 1980 Kingsway's Thankyou Music.","Joanne Pond","","", -"O God, be my strength","","John Paculabo. * Copyright © 1993 Kingsway's Thankyou Music.","John Paculabo","","", -"O God beyond all praising,","","Michael Perry. * Copyright © Mrs B Perry/Jubilate Hymns.","Michael Perry","","", -"O God, most high,","","Jamie Owens-Collins. * Copyright © Fairhill Music/Adm. by CopyCare.","Jamie Owens-Collins","","", -"O God my creator,","","Graham Kendrick. * Copyright © 1979 Kingsway's Thankyou Music.","Graham Kendrick","","", -"O God of burning, cleansing flame:","","William Booth. * Adpt. Lex Loizides. Copyright © 1994 Kingsway's Thankyou Music.","William Booth","","", -"O God of love","","Louise & Nathan Fellingham * Copyright © 2000 Thankyou Music","Louise Fellingham | Nathan Fellingham","","", -"O God, our help in ages past,","","Isaac Watts. *","Isaac Watts","","", -"O heaven, is in my heart.","","Graham Kendrick. * Copyright © 1991 Make Way Music.","Graham Kendrick","","", -"O Jesus, I have promised","","John Ernest Bode. *","John Ernest Bode","","", -"O Jesus, Son of God,","","Matt Redman * Copyright © 1999 Thankyou Music","Matt Redman","","", -"O l will sing unto You with joy,","","Shona Sauni. * Copyright © 1982 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Shona Sauni","","", -"O let the Son of God enfold You","","John Wimber. * Copyright © 1979 Mercy/Vineyard Publishing/Adm. by CopyCare.","John Wimber","","", -"O little town of bethlehem,","","Philips Brooks. *","Philips Brooks","","", -"O Lord, arise,","","Craig Musseau. * Copyright © 1992 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Craig Musseau","","", -"O Lord, give me an undivided heart","","Chris Roe/Dave Markee. * Copyright © 1990 Kingsway's Thankyou Music.","Chris Roe/Dave Markee","","", -"O Lord, have mercy on me,","","Carl Tuttle. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Carl Tuttle","","", -"O Lord, hear my prayer;","","Jacques Berthier/Taizé. * Copyright © 1982 Ateliers et Presses de Taize (France).","Jacques Berthier/Taizé","SOF #423","", -"O Lord, how I love to sing Your praises.","","Chris DuPré. * Copyright © Heart of David Music.","Chris DuPré","","", -"O Lord, I am devoted to You,","","Martyn Layzell * Copyright © 1998 Thankyou Music","Martyn Layzell","","", -"O Lord I want to sing Your praises,","","Andy Park. * Copyright © 1991 Andy Park/Kingsway's Thankyou Music.","Andy Park","","", -"O Lord, most Holy God,","","For permission to reproduce this song for non-commercial purposes, * please contact Calamus, 30 North Terrace, Mildenhall, Suffolk, IP28 7AB Wendy Churchill. Copyright © 1980 Word's Spirit of Praise Music/Adm. by CopyCare.","For permission to reproduce this song for non-commercial purposes","","", -"O Lord my God;","","Stuart K. Hine. * Copyright © 1953 Stuart K. Hine/ Kingsway's Thankyou Music.","Stuart K. Hine","SOF #425","", -"O Lord our God, You are a great God,","","Mike Kerry. * Copyright © 1982 Kingsway's Thankyou Music.","Mike Kerry","","", -"O Lord our God, how majestic is Your name","","Phil Lawson Johnston. * Copyright © 1982 Kingsway's Thankyou Music.","Phil Lawson Johnston","","", -"O Lord, our Lord, how excellent is your name","","Hilary Davies. * Copyright © 1988 Samsongs/Coronation Music/ Kingsway's Thankyou Music.","Hilary Davies","","", -"O Lord, our Lord, Your name is great","","Andrew & Shirley Rogers * Copyright © 2000 Thankyou Music","Andrew Rogers | Shirley Rogers","","", -"O Lord our Lord,","","Michael W. Smith. * Copyright © 1981 Meadowgreen Music/EMI Christian Music Publishing/Adm. by CopyCare.","Michael W. Smith","","", -"O Lord, the clouds are gathering,;","","Graham Kendrick. * Copyright © 1987 Make Way Music.","Graham Kendrick","","", -"O Lord, when I wake up","","Brian Houston * Copyright © 2000 Thankyou Music","Brian Houston","","", -"O Lord, You are first in my life","","Jonathan James (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Jonathan James (Abundant Life Ministries | Bradford | England)","","", -"O Lord, You are my God,","","David J. Hadden. * Copyright © 1983 Restoration Music Ltd./ Adm. by Sovereign Music UK.","David J. Hadden","","", -"O Lord, You are my light,","","David Fellingham. * Copyright © 1983 Kingsway's Thankyou Music.","David Fellingham","","", -"O Lord, You are my rock and my Redeemer;","","Jon Soper, Mark Robinson & John Peters. * Copyright © 1994 Kingsway's Thankyou Music.","Jon Soper | Mark Robinson | John Peters","","", -"O Lord, Your tenderness","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"O Lord, You're beautiful,","","Keith Green. * Copyright © 1980 Birdwing Music/ BMGSongs/EMIChristian Music Publishing/ Adm. by CopyCare.","Keith Green","","", -"O Lord, You're great,","","Ian Smale. * Copyright © 1985 Kingsway's Thankyou Music.","Ian Smale","","", -"O love that wilt not let me go,","","George Matheson. *","George Matheson","","", -"O magnify the Lord","","Maggi Dawn. * Copyright © 1986 Kingsway's Thankyou Music.","Maggi Dawn","","", -"O my Lord, You are most glorious,","","Geoff Roberts. * Copyright © 1990 Kingsway's Thankyou Music.","Geoff Roberts","","", -"O my Saviour, lifted","","William W. How. *","William W. How","","", -"O my soul, arise and bless Your maker,","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","","", -"O praise ye the Lord!","","Henry W. Baker. *","Henry W. Baker","","", -"O precious sight;","","2007 Thank You music","Vicky Beeching","SH09 #65","", -"O righteous God","","Maldwyn Pope. * Copyright © 1989 Samsongs/Coronation Music Publishing/Kingsway's Thankyou Music.","Maldwyn Pope","","", -"O sacred head, once wounded,","","Paulus Gerhardt. * Tr. James W. Alexander.","Paulus Gerhardt","","", -"O sacred King,","","Matt Redman * Copyright © 1999 Thankyou Music","Matt Redman","","", -"O taste and see (Bilborough)","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", -"O taste and see that the Lord is good","","Phil Rogers. * Copyright © 1984 Kingsway's Thankyou Music.","Phil Rogers","","", -"O, that You would bless me,","","Phil Rogers. * Copyright © 1988 Kingsway's Thankyou Music.","Phil Rogers","","", -"O the deep, deep love of Jesus!","","Samuel Trevor Francis. *","Samuel Trevor Francis","","", -"O, the joy of Your forgiveness,","","Dave Bilbrough. * Copyright © 1988 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"O, the love of God is boundless","","D.R. Edwards. adapt. by Graham Kendrick * Words in this version Copyright © 2001 Make Way Music","D.R. Edwards. adapt. by Graham Kendrick","","", -"O the valleys shall ring","","Dave Bilbrough. * Copyright © 1980 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"O thou who camest from above","","Charles Wesley. *","Charles Wesley","","", -"O, we are more than conquerors.","","Steven Fry. * Copyright © 1986 Birdwing Music/ Adm. by CopyCare.","Steven Fry","","", -"O worship the King,","","Robert Grant. *","Robert Grant","","", -"O worship the Lord","","John S. B. Monsell. *","John S. B. Monsell","","", -"Oh fallen one","","James Gregory * Copyright © 2000 Thankyou Music","James Gregory","","", -"Oh kneel me down again","","Brenton Brown * Copyright © 1999 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Brenton Brown","","", -"Oh, lead me","","Martin Smith. * Copyright © Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", -"Oh, our Lord and King,","","Alan Rose. * Copyright © 1997 Kingsway's Thankyou Music.","Alan Rose","","", -"Oh, the mercy of God,","","Geoff Bullock. * Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","Geoff Bullock","","", -"Oi, oi, we are gonna praise the Lord","","Doug Horley * Copyright © 1997 Thankyou Music","Doug Horley","","", -"On Holy Ground (SH08-77)","","2006 Thankyou Music/The Livingstone Collective","Martyn Layzell | Nathan Fellingham | busbee","","", -"Once I was far away","","Kristyn Lennox & Keith Getty * Copyright © 2002 Thankyou Music","Kristyn Lennox | Keith Getty","","", -"Once, in royal david's city,","","Cecil F. Alexander. *","Cecil F. Alexander","","", -"One more step along the world I go","","Sydney Carter * Copyright © 1971 Stainer & Bell Ltd","Sydney Carter","","", -"One sacrifice and I am free","","James Gregory * Copyright © 2000 Thankyou Music","James Gregory","","", -"One shall tell another,","","Graham Kendrick. * Copyright © 1981 Kingsway's Thankyou Music.","Graham Kendrick","","", -"One thing I ask (Oakley)","","Paul Oakley * Copyright © 2000 Thankyou Music","Paul Oakley","","", -"One thing I ask, one thing I seek","","Andy Park. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", -"One thing I have been asking","","Evan Rogers * Copyright © 2000 Thankyou Music","Evan Rogers","","", -"One thing remains (SH12 24)","","","Author Unknown","","", -"One voice,","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", -"Only by grace","","Gerrit Gustafson. * Copyright © 1989 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Gerrit Gustafson","","", -"Only one thing","","Maggi Dawn. * Copyright © 1992 Kingsway's Thankyou Music.","Maggi Dawn","","", -"Only You","","James Taylor * Copyright © 2000 Thankyou Music","James Taylor","","", -"Onward, Christian soldiers,","","Sabine Baring-Gould. *","Sabine Baring-Gould","","", -"Open our eyes, Lord,","","Robert Cull. * Copyright © 1976 Maranatha! Music/ Adm. by CopyCare.","Robert Cull","","", -"Open the doors of praise.","","Ian White. * Copyright © 1997 Little Misty Music/Kingsway's Thankyou Music.","Ian White","","", -"Open the eyes of my heart;","","Paul Baloche * Copyright © 1997 Integrity Hosanna! Music/Sovereign Music UK","Paul Baloche","SOF #1490","", -"Open up the gates of heaven.","","Paul Oakley * Copyright © 1998 Thankyou Music","Paul Oakley","","", -"Open up the skies","","Chris Tomlin, Louie Giglio & Jesse Reeves * Copyright © 2000 worshiptogether.com songs/Six Steps Music/ Adm. by Kingsway Music","Chris Tomlin | Louie Giglio | Jesse Reeves","","", -"Open Your eyes,","","Carl Tuttle. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Carl Tuttle","","", -"Opening our hearts to You","","James Gregory * Copyright © 2002 Thankyou Music","James Gregory","","", -"Our confidence is in the Lord,","","Noel & Tricia Richards. * Copyright © 1989 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"Our Father in heaven, Hallowed be Your name;","","Keith Routledge. * Copyright © 1992 Kingsway's Thankyou Music/Sovereign Music UK.","Keith Routledge","SOF #970","", -"Our Father in heaven, Holy is your name","","Brian Doerksen & Michael Hansen. * Copyright © 1990 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen | Michael Hansen","","", -"Our God is an awesome God;","","Rich Mullins. * Copyright © 1989 Edward Grant Inc/ BMG Music Publishing Ltd/Adm. by CopyCare.","Rich Mullins","SOF #453","", -"Our God is awesome in power,","","Noel & Tricia Richards. * Copyright © 1992 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"Our God is great.","","Dave Bilbrough. * Copyright © 1996 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Our God is Greater;;","Water You turned into wine;","Copyright 2010 Thankyou Music/Kingswaysongs","Matt Redman | Jonas Myrin | Chris Tomlin | Jesse Reeves","SH11 #84","", -"Our God is strong and mighty,","","Stuart Townend & Gary Sadler * Copyright © 2000 Integrity's Hosanna! Music/Sovereign Music UK/ & Thankyou Music","Stuart Townend | Gary Sadler","","", -"Our master, our Saviour,","","Viola Grafstrom * Copyright © 1998 Thankyou Music","Viola Grafstrom","","", -"Our passion is for You,","","John Gibson. * Copyright © 1994 Kingsway's Thankyou Music.","John Gibson","","", -"Out of Your great love,","","Patricia Morgan. * Copyright © 1986 Kingsway's Thankyou Music.","Patricia Morgan","","", -"Over all the earth,","","Brenton Brown * Copyright © 1998 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Brenton Brown","","", -"Over, over","","Noel Robinson * Copyright © 2000 Thankyou Music","Noel Robinson","","", -"Over the heavens above,","","Nigel Leppitt. * Copyright © 1992 Kingsway's Thankyou Music.","Nigel Leppitt","","", -"Over the mountains and the sea;","","Martin Smith. * Copyright © 1994 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","SOF #975","", -"Overwhelmed by love,","","Noel Richards. * Copyright © 1994 Kingsway's Thankyou Music.","Noel Richards","","", -"Peace is flowing like a river,","","Author unknown. *","Author unknown","","", -"Peace like a river,","","John Watson. * Copyright © 1989 Ampelos Music/ Adm. by CopyCare.","John Watson","","", -"Peace, perfect peace is the gift of Christ","","Kevin Mayhew * Copyright © 1976 Kevin Mayhew Ltd","Kevin Mayhew","","", -"Peace, perfect peace, in this dark world of sin","","E. H. Bickersteth. *","E. H. Bickersteth","","", -"Peace to You.","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"Power from on high,","","Ian White. * Copyright © 1993 Little Misty Music/Kingsway's Thankyou Music.","Ian White","","", -"Praise and glory,","","Eddie Espinosa. * Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Eddie Espinosa","","", -"Praise God for the body,","","Anne Ortlund. * Copyright © 1970 Singspiration Music/ John T. Benson Publishing Co./ Adm. by CopyCare.","Anne Ortlund","","", -"Praise God from whom all blessings flow, Doxology","","Ken Thomas. * Copyright © 1972 Bud John Songs/ EMI Christian Music Publishing/ Adm. by CopyCare.","Ken Thomas","","", -"Praise God from whom all blessings flow,","","Dave Clifton and Andy Piercy. * Copyright © 1993 I Q Music.","Dave Clifton and Andy Piercy","","", -"Praise Him on the trumpet,","","John Kennett * Copyright © 1981 Kingsway's Thankyou Music.","John Kennett","","", -"Praise Him, praise Him! Jesus, our blessèd Redeemer;","","Fanny J. Crosby. *","Fanny J. Crosby","","", -"Praise Him, You heavens","","Russell Fragar * Copyright © 1998 Russell Fragar/Hillsong Publishing/ Kingsway Music","Russell Fragar","","", -"Praise Him, praise Him","","Twila Paris. * Copyright © Singspiration Music/John T. Benson Publishing Co./Adm. by CopyCare.","Twila Paris","","", -"Praise is rising;","","2006 Thankyou Music /Integrity’s Hosanna! Music","Paul Baloche and Brenton Brown","SH08- #79","", -"Praise my soul, the King of heaven;","","Henry Francis Lyte. *","Henry Francis Lyte","SOF #466","", -"Praise the Lord, all you servants of the Lord","","Ian White. * Copyright © 1985 Little Misty Music/Kingsway's Thankyou Music.","Ian White","","", -"Praise the Lord, praise Him in His temple","","David Fellingham. * Copyright © 1986 Kingsway's Thankyou Music.","David Fellingham","","", -"Praise the name of Jesus,","","Roy Hicks Jnr. * Copyright © 1975 Latter Rain Music/ EMIChristian Music Publishing/ Adm. by CopyCare.","Roy Hicks Jnr","","", -"Praise to Christ, the Lord incarnate","","Martin E. Leckebusch / Chorus words: Graham Kendrick * Copyright © 2000 Kevin Mayhew Ltd Chorus words Copyright © 2002 Make Way Music","Martin E. Leckebusch / Chorus words: Graham Kendrick","","", -"Praise to the holiest in the height,","","John H. Newman. *","John H. Newman","","", -"Praise to the Lord, the Almighty,","","Joachim Neander. * Tr. Catherine Winkworth 1863, and P. Dearmer 1906.","Joachim Neander","","", -"Praise ye the Lord,","","Chris Bowater. * Copyright © 1980 Sovereign Lifestyle Music.","Chris Bowater","","", -"Praise You, Lord,","","Nettie Rose. * Copyright © 1977 Kingsway's Thankyou Music.","Nettie Rose","","", -"Praises,","","David Gate * Copyright © 1999 Thankyou Music","David Gate","","", -"Prayer is like a telephone","","Paul Crouch & David Mudie * Copyright © 1991 Daybreak Music Ltd","Paul Crouch | David Mudie","","", -"Prepare the way (Bilborough)","","Dave Bilbrough * Copyright © 2000 Thankyou Music","Dave Bilbrough","","", -"Prepare the way of the Lord","","Mary Smail. * Copyright © Mary Smail.","Mary Smail","","", -"Prince of peace You are,","","Robert Gay. * Copyright © 1988 Integrity's Hosannal Music. Adm. Kingsway's Thankyou Music.","Robert Gay","","", -"Promise of the Father,","","David Fellingham. * Copyright © 1995 Kingsway's Thankyou Music.","David Fellingham","","", -"Purify my heart,","","Brian Doerksen. * Copyright © 1990 Mercy/Vineyard Publishing/Adm. by CopyCare.","Brian Doerksen","","", -"Quiet my mind,","","Tracy Orrison. * Copyright © 1990 Sound Truth Publishing/ Kingsway's Thankyou Music.","Tracy Orrison","","", -"Raise up an army,","","Steve and Vikki Cook. * Copyright © 1988 People of Destiny International/Word Music/Adm. by CopyCare.","Steve and Vikki Cook","","", -"Reconciled,","","Mike Kerry. * Copyright © 1984 Kingsway's Thankyou Music.","Mike Kerry","","", -"Reign in me,","","Chris Bowater. * Copyright © 1985 Sovereign Lifestyle Music.","Chris Bowater","","", -"Reigning in all splendour,","","Dave Bilbrough. * Copyright © 1984 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Rejoice in the Lord always","","Evelyn Tarner * Copyright © 1967 Sacred Songs/Word Music/Adm. by CopyCare","Evelyn Tarner","","", -"Rejoice, rejoice, rejoice!","","Chris Bowater. * Copyright © 1986 Sovereign Lifestyle Music.","Chris Bowater","","", -"Rejoice, the Lord is King!","","Charles Wesley. *","Charles Wesley","","", -"Rejoice!","","Graham Kendrick. * Copyright © 1983 Kingsway's Thankyou Music.","Graham Kendrick","","", -"Release Your power among us","","Luke & Nathan Fellingham. * Copyright © 1997 Kingsway's Thankyou Music.","Luke Fellingham | Nathan Fellingham","","", -"Release Your power, O God.","","Stuart Garrard. * Copyright © 1994 Kingsway's Thankyou Music.","Stuart Garrard","","", -"Remember Your creator","","Jim Bailey. * Copyright © 1994 Kingsway's Thankyou Music.","Jim Bailey","","", -"Restore, O Lord,","","Graham Kendrick & Chris Rolinson. * Copyright © 1981 Kingsway's Thankyou Music.","Graham Kendrick | Chris Rolinson","","", -"Revival!","","Doug Horley. * Copyright © 1991 Kingsway's Thankyou Music.","Doug Horley","","", -"Ride on, ride on in Majesty!","","H. H. Milman. *","H. H. Milman","","", -"Righteousness, peace, joy in the Holy ghost;","","Helena Barrington. * Copyright © 1988 Integrity's Praise! Music/ Adm. by Kingsway's Thankyou Music.","Helena Barrington","","", -"Rise up, let your Kingdom arise","","Peter Arajs. * Copyright © 1989 Kingsway's Thankyou Music.","Peter Arajs","","", -"Rise up, you champions of God","","Mark Altrogge. * Copyright © 1982 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", -"River of God,","","Paul Oakley. * Copyright © 1996 Kingsway's Thankyou Music.","Paul Oakley","","", -"River, wash over me,","","Dougie Brown. * Copyright © 1980 Kingsway's Thankyou Music.","Dougie Brown","","", -"Rock of ages (Kendrick)","","Augustus M. Toplady (1740-78) * adapt. by Graham Kendrick Words in this version Copyright © 2001 Make Way Music","Augustus M. Toplady (1740-78)","","", -"Rock of ages,","","Augustus Montague Toplady. *","Augustus Montague Toplady","","", -"Ruach,","","David Fellingham. * Copyright © 1994 Kingsway's Thankyou Music.","David Fellingham","","", -"Sacred","","Sue Rinaldi, Caroline Bonnett & Steve Bassett * Copyright © 2001 Thankyou Music","Sue Rinaldi | Caroline Bonnett | Steve Bassett","","", -"Safe in the shadow of the Lord,","","Timothy Dudley-Smith. * Copyright © 1970 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", -"Salvation belongs to our God,","","Adrian Howard & Pat Turner. * Copyright © 1985 Restoration Music Ltd/ Adm. by Sovereign Music UK.","Adrian Howard | Pat Turner","","", -"Salvation, spring up","","Charlie Hall * Copyright © 1997 worshiptogether.com songs/Six Steps Music/ Adm. by Kingsway Music","Charlie Hall","","", -"Say the word,","","Stuart Townend. * Copyright © 1994 Kingsway's Thankyou Music.","Stuart Townend","","", -"Search me, O God,","","Paul Oakley. * Copyright © 1997 Kingsway's Thankyou Music.","Paul Oakley","","", -"Search my soul,","","Tim Sherrington * Copyright © 1998 Thankyou Music","Tim Sherrington","","", -"See, amid the winter's snow,","","Edward Caswall. *","Edward Caswall","","", -"See Him come,","","Hilary Davies. * Copyright © 1988 Samsongs/Coronation Music/ Kingsway's Thankyou Music.","Hilary Davies","","", -"See Him lying on a bed of straw,","","Michael Perry. * Copyright © Mrs B Perry/ Jubilate Hymns.","Michael Perry","","", -"See His glory,","","Chris Bowater. * Copyright © 1986 Sovereign Lifestyle Music.","Chris Bowater","","", -"See how the Father","","Robert Critchley * Copyright © 1996 Thankyou Music","Robert Critchley","","", -"See, what a morning;","","© 2003 Thankyou Music","Stuart Townend and Keith Getty","SOF #2020","", -"Seek ye first","","Karen Lafferty. * Copyright © 1972 Maranatha! Music/ Adm. by CopyCare.","Karen Lafferty","","", -"Send forth Your light and Your truth,","","Geoff Twigg. * Copyright © 1994 Kingsway's Thankyou Music.","Geoff Twigg","","", -"Send me out from here,","","John Pantry. * Copyright © HarperCollins Religious/Adm. by CopyCare.","John Pantry","","", -"Send us the rain, Lord,","","David Wellington. * Copyright © 1995 Kingsway's Thankyou Music.","David Wellington","","", -"Send Your rain","","Dave Bilbrough. * Copyright © 1995 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Send Your Spirit","","Dave Bilbrough * Copyright © 2002 Thankyou Music","Dave Bilbrough","","", -"Set my Spirit free","","Author unknown. *","Author unknown","","", -"Shine Your light on us","","Marc James & Tré Sheppard * Copyright © 2001 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Marc James | Tré Sheppard","","", -"Shout for joy and sing your praises","","David Fellingham. * Copyright © 1988 Kingsway's Thankyou Music.","David Fellingham","","", -"Shout for joy and sing","","Dave Bilbrough. * Copyright © 1983 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Show me, dear Lord,","","Andy Park. * Copyright © 1989 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Andy Park","","", -"Show me the way of the cross","","Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Matt Redman","","", -"Show Your power, O Lord,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"Silent night,","","Joseph Mohr. * Tr. S. A. Brooke.","Joseph Mohr","","", -"Sing a song of celebration,","","David Ruis. * Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","David Ruis","","", -"Sing hallelujah to the Lord,","","Linda Stassen. * Copyright © 1974 New Song Ministries. (Men)","Linda Stassen","","", -"Sing, praise and bless the Lord","","Taizé, music: Jacques Berthier (1923-94) * Copyright © 1982 Ateliers et Presses de Taizé","Taizé | music: Jacques Berthier (1923-94)","","", -"Sing praises, all You peoples","","Jacques Berthier (1923-94) * Copyright © Ateliers et Presses de Taizé","Jacques Berthier (1923-94)","","", -"Sing praises to our God","","David Lyle Morris * Copyright © 2001 Thankyou Music","David Lyle Morris","","", -"Sing praises unto God,","","Melva Lea. * Copyright © Larry Lea Ministries.","Melva Lea","","", -"Sing to God new songs","","Michael Baughen. * Copyright © Michael Baughen/Jubilate Hymns.","Michael Baughen","","", -"Sing to the Lord with all your heart","","Stuart Garrard. * Copyright © 1994 Kingsway's Thankyou Music.","Stuart Garrard","","", -"Sing to the Lord, be joyful","","Noel & Tricia Richards. * Copyright © 1990 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"Sing unto the Lord a new song,","","Mick Ray. * Copyright © 1977 Kingsway's Thankyou Music .","Mick Ray","","", -"So freely,","","Dave Bilbrough. * Copyright © 1983 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Soften my heart, Lord, soften my heart","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"Soften my heart Lord, I want to meet You","","Cindy Gough. * Copyright © 1989 Mercy/Vineyard Publishing/Adm. by CopyCare.","Cindy Gough","","", -"Soften my heart, that I may know","","Michael Sandeman. * Copyright © 1997 Kingsway's Thankyou Music.","Michael Sandeman","","", -"Soldiers of Christ, arise,","","Charles Wesley. *","Charles Wesley","","", -"Soldiers of our God, arise!","","Robert Johnson, altd Lex Loizides * Copyright © 1998 Thankyou Music","Robert Johnson | altd Lex Loizides","","", -"Sometimes when I feel Your love","","Paul Oakley. * Copyright © 1995 Kingsway's Thankyou Music.","Paul Oakley","","", -"Son of God,","","John Wimber. * Copyright © 1979 Mercy/Vineyard Publishing/Adm. by CopyCare.","John Wimber","","", -"Son of man","","Paul Oakley. * Copyright © 1996 Kingsway's Thankyou Music.","Paul Oakley","","", -"Soon, and very soon,","","Andrae Crouch. * Copyright © 1976 BudJohn Songs/Crouch Music Co./EMI Christian Music Publishing/ Adm. by CopyCare.","Andrae Crouch","","", -"Sound the trumpet,","","Dave Bilbrough. * Copyright © 1991 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Sovereign Lord, I am Yours","","Noel & Tricia Richards. * Copyright © 1990 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"Sovereign Lord, over all","","Martyn Layzell * Copyright © 2002 Thankyou Music","Martyn Layzell","","", -"Spirit breathe on us,","","Graham Kendrick & Dave Bilbrough. * Copyright © 1990 Kingsway's Thankyou Music/ Make Way Music.","Graham Kendrick | Dave Bilbrough","","", -"Spirit, move on this land","","Tim Sherrington * Copyright © 2001 Thankyou Music","Tim Sherrington","","", -"Spirit of God, show me Jesus,","","Chris Bowater. * Copyright © 1978 Sovereign Lifestyle Music.","Chris Bowater","","", -"Spirit of holiness,","","Christopher Idle. * Copyright © Christopher Idle/Jubilate Hymns.","Christopher Idle","","", -"Spirit of the living God (Fill me);","","Paul Armstrong. * Copyright © 1984 Restoration Music Ltd./ Adm. by Sovereign Music UK.","Paul Armstrong","SOF #511","", -"Spirit of the living God, (Break me);","","Daniel Iverson. * Copyright © 1935 Birdwing Music/EMI Christian Music Publishing/Adm. by CopyCare.","Daniel Iverson","SOF #510","", -"Spirit of the Lord,","","Ian White * Copyright © 1997 Thankyou Music","Ian White","","", -"Stand up, and bless the Lord,","","James Montgomery. *","James Montgomery","","", -"Stand up! stand up for Jesus,","","George Duffield. *","George Duffield","","", -"Standing in Your presence,","","Darlene Zschech. * Copyright © 1996 Darlene Zschech/Hillsongs Australia/Kingsway's Thankyou Music.","Darlene Zschech","","", -"Standing on Holy ground","","Paul Oakley & Martin Cooper * Copyright © 2001 Thankyou Music","Paul Oakley | Martin Cooper","","", -"Stay with me","","Taizé, music: Jacques Berthier (1923-94) * Copyright © 1980 Ateliers et Presses de Taizé","Taizé | music: Jacques Berthier (1923-94)","","", -"Strength will Rise (SH08-82)","","2005 Thankyou Music","Brenton Brown | Ken Riley","","", -"Such love! Such grace!","","Dave Bryant. * Copyright © 1982 Kingsway's Thankyou Music.","Dave Bryant","","", -"Such love, pure as the whitest snow","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"Surely our God","","David Lyle Morris & Liz Morris * Copyright © 2000 Thankyou Music","David Lyle Morris | Liz Morris","","", -"Sweet fellowship,","","Ronnie Wilson. * Copyright © 1978 Kingsway's Thankyou Music.","Ronnie Wilson","","", -"Swing wide the gates,","","Chris Bowater. * Copyright © 1986 Sovereign Lifestyle Music.","Chris Bowater","","", -"Take, eat, this is my body,","","Paul Simmons. * Copyright © 1985 Kingsway's Thankyou Music.","Paul Simmons","","", -"Take me past the outer courts,","","Dave Browning. * Copyright © 1986 Glory Alleluia Music/Tempo Music Publications/Adm. by CopyCare.","Dave Browning","","", -"Take me to Your sacred place,","","Noel & Tricia Richards * Copyright © 2000 Thankyou Music","Noel Richards | Tricia Richards","","", -"Take my life, and let it be;","","Frances Ridley Havergal. *","Frances Ridley Havergal","SOF #519","", -"Take us to the river;","","Robin Mark * Copyright © 1998 Thankyou Music","Robin Mark","SOF #1525","", -"Teach me of Your ways","","David Gate * Copyright © 2001 Thankyou Music","David Gate","","", -"Teach me to dance","","Graham Kendrick & Steve Thompson. * Copyright © 1993 Make Way Music.","Graham Kendrick | Steve Thompson","","", -"Teach us, O Lord,","","Kevin Prosch. * Copyright © 1981 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Kevin Prosch","","", -"Tell out, my soul,","","Timothy Dudley-Smith. * Copyright © 1961 Timothy Dudley-Smith.","Timothy Dudley-Smith","","", -"Tell the world","","Dave Bilbrough * Copyright © 1998 Thankyou Music","Dave Bilbrough","","", -"Thank You for saving me;;","","Martin Smith. * Copyright © 1993 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","SOF #1015","", -"Thank You for the cross, Lord","","Darlene Zschech * Copyright © 2000 Darlene Zschech/Hillsong Publishing/Kingsway Music","Darlene Zschech","","", -"Thank You for the cross;","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","SOF #522","", -"Thank You, Jesus,","","Alison Huntley. * Copyright © 1978 Kingsway's Thankyou Music.","Alison Huntley","","", -"Thank You, Lord, for this fine day,","","Copyright © 1971, 1975 Celebration/ * Kingsway's Thankyou Music.","Copyright © 1971 | 1975 Celebration/","","", -"Thank You, Lord, for Your love to me","","Paul Booth * Copyright © 1999 Thankyou Music","Paul Booth","","", -"Thank You, Lord, You love us","","Paul Oakley & Megamix Kids * Copyright © 2001 Thankyou Music","Paul Oakley | Megamix Kids","","", -"Thank You, thank You for the blood","","Matt Redman * Copyright © 1999 Thankyou Music","Matt Redman","","", -"Thanks be to God","","Robert Stoodley. * Copyright © 1978 Sovereign Music UK.","Robert Stoodley","","", -"The angels around Your throne,","","Richard Lewis. * Copyright © 1996 Kingsway's Thankyou Music.","Richard Lewis","","", -"The angels, Lord, they sing","","Matt Redman. * Copyright © 1993 Kingsway's Thankyou Music.","Matt Redman","","", -"The battle is the Lord's,","","Doug Horley. * Copyright © 1994 Kingsway's Thankyou Music.","Doug Horley","","", -"The birds don't worry","","Stuart Townend * Copyright © 2000 Thankyou Music","Stuart Townend","","", -"The church's one foundation","","Samuel John Stone. *","Samuel John Stone","","", -"The church's one foundation","","Dave Bilbrough. * Copyright © 1986 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"The cross before me","","Chris Tomlin & Jesse Reeves * Copyright © 2002 worshiptogether.com songs/ Six Steps Music/Adm. by Kingsway Music","Chris Tomlin | Jesse Reeves","","", -"The cross has said it all,","","Matt Redman & Martin Smith. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman | Martin Smith","","", -"The crucible for silver","","Martin Smith. * Copyright © 1993 Kingsway's Thankyou Music.","Martin Smith","","", -"The day of the streams","","Dave Bilbrough & Andy Piercy. * Copyright © 1995 Kingsway's Thankyou Music/I Q Music.","Dave Bilbrough | Andy Piercy","","", -"The day thou gavest, Lord, is ended,","","John Ellerton. *","John Ellerton","","", -"The earth is the Lord's","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"The earth resounds in songs of praise;","","Geoff Bullock. * Copyright © 1997 Watershed Productions/Kingsway's Thankyou Music.","Geoff Bullock","","", -"The first nowell","","Author unknown. *","Author unknown","","", -"The God of Abraham praise,","","Thomas Olivers. *","Thomas Olivers","","", -"The grace of God","","Judy Pruett. * Copyright © 1990 Judy Pruett/Kingsway's Thankyou Music.","Judy Pruett","","", -"The Greatest Day in History;","","© 2006 Thankyou Music","Tim Hughes | Ben Cantelon","SOF #2046","", -"The greatest thing in all my life","","Mark Pendergrass * Copyright © Garden Valley Music/Birdwing Music/BMG Songs Inc./EMI Christian Music Publishing/Adm. by CopyCare","Mark Pendergrass","","", -"The head that once was crowned with thorns","","Thomas Kelly. *","Thomas Kelly","","", -"The heavens they preach,","","Lex Loizides. * Copyright © 1997 Kingsway's Thankyou Music.","Lex Loizides","","", -"The King is among us,","","Graham Kendrick. * Copyright © 1981 Kingsway's Thankyou Music.","Graham Kendrick","","", -"The King of love","","Henry Williams Baker. *","Henry Williams Baker","","", -"The King of love is my delight;","","Stuart Townend & Kevin Jamieson. * Copyright © 1997 Kingsway's Thankyou Music.","Stuart Townend | Kevin Jamieson","SOF #1025","", -"The light of Christ","","Donald Fishel. * Copyright © 1974 The Word of God Music/ The Copyright Company/Adm. by CopyCare.","Donald Fishel","","", -"The Lord fills me with His strength,","","Merrilyn Billing. * Copyright © 1989 Arise Ministries/ Kingsway's Thankyou Music.","Merrilyn Billing","","", -"The Lord has given","","Author unknown. *","Author unknown","","", -"The Lord has led forth","","Chris Bowater. * Copyright © 1982 Sovereign Lifestyle Music.","Chris Bowater","","", -"The Lord has spoken.","","Paul Oakley. * Copyright © 1991 Kingsway's Thankyou Music.","Paul Oakley","","", -"The Lord is marching out","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"The Lord reigns,","","Daniel C Stradwick. * Copyright © 1980 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Daniel C Stradwick","","", -"The Lord Your God is in Your midst,","","Author unknown. *","Author unknown","","", -"The Lord's my Shepherd,","","Scottish Psalter. *","Scottish Psalter","","", -"The Lord's my Shepherd,","","Stuart Townend. * Copyright © 1996 Kingsway's Thankyou Music.","Stuart Townend","","", -"The love of God,","","Geoff Bullock. * Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","Geoff Bullock","","", -"The name of the Lord","","Louise Hunt & Nathan Fellingham. * Copyright © 1997 Kingsway's Thankyou Music.","Louise Hunt | Nathan Fellingham","","", -"The narrow pathway","","David Ruis * Copyright © 2001 Vineyard Songs (Canada)/Adm. by CopyCare","David Ruis","","", -"The nations are waiting","","Mark Altrogge. * Copyright © 1986 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", -"The people who walk in darkness","","David Lyle Morris & Jussi Miettinen * Copyright © 2000 Thankyou Music","David Lyle Morris | Jussi Miettinen","","", -"The place where You dwell","","Ed Pask * Copyright © 2001 Thankyou Music","Ed Pask","","", -"The power of Your love","","Gary Sadler * Copyright © 1998 Integrity's Hosanna! Music/Sovereign Music UK","Gary Sadler","","", -"The price is paid,","","Graham Kendrick. * Copyright © 1983 Kingsway's Thankyou Music.","Graham Kendrick","","", -"The sky is filled","","Mick Gisbey. * Copyright © 1985 Kingsway's Thankyou Music.","Mick Gisbey","","", -"The Spirit lives to set us free","","Damian Lundy * Copyright © 1978 Kevin Mayhew Ltd","Damian Lundy","","", -"The Spirit of the Lord,","","Chris Bowater. * Copyright © 1985 Sovereign Lifestyle Music.","Chris Bowater","","", -"The Spirit of the sovereign Lord","","Andy Park. * Copyright © 1992 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Andy Park","","", -"The splendour of the King;;","How great is our God","2004 sixsteps Music/worshiptogether.com songs/kingswaysongs.com/","Chris Tomlin | Jesse Reeves | Ed Cash","SH08 #90","", -"The steadfast love of the Lord","","Edith McNeil. * Copyright © 1974, 1975 Celebration/ Kingsway's Thankyou Music.","Edith McNeil","","", -"The trumpets sound,","","Graham Kendrick. * Copyright © 1989 Make Way Music.","Graham Kendrick","","", -"The virgin mary had a baby boy,","","Author unknown. *","Author unknown","","", -"The voice of God","","Dave Bilbrough * Copyright © 2000 Thankyou Music","Dave Bilbrough","","", -"The waves are breaking,","","Dave Bilbrough. * Copyright © 1996 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"The wonder of forgiveness","","Stuart Townend & Gary Sadler * Copyright © 2002 Thankyou Music & Paintbrush Music","Stuart Townend | Gary Sadler","","", -"The wonder of Your mercy,","","Don Wallace * Copyright © 1999 PDI Worship/Adm. by CopyCare","Don Wallace","","", -"The world is looking for a hero;","","Noel & Tricia Richards. * Copyright © 1994 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"There is a day;","","Nathan Fellingham * Copyright © 2001 Thankyou Music","Nathan Fellingham","SOF #1539","", -"There is a deeper love to know","","James Taylor * Copyright © 1999 Thankyou Music","James Taylor","","", -"There is a green hill far away,","","Cecil Frances Alexander. *","Cecil Frances Alexander","","", -"There is a higher throne;","","Kristyn Lennox & Keith Getty * Copyright © 2002 Thankyou Music","Kristyn Lennox | Keith Getty","SOF #1541","", -"There is a home","","Stuart Townend. * Copyright © 1994 Kingsway's Thankyou Music.","Stuart Townend","","", -"There is a hope so sure","","Graham Kendrick * Copyright © 2002 Make Way Music","Graham Kendrick","","", -"There is a louder shout to come,","","Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Matt Redman","","", -"There is a name I love to hear,","","Frederick Whitfield. *","Frederick Whitfield","","", -"There is a name","","Nathan Fellingham * Copyright © 2001 Thankyou Music","Nathan Fellingham","","", -"There is a passion","","David Fellingham & Kim Morgan * Copyright © 2001 Thankyou Music","David Fellingham | Kim Morgan","","", -"There is a Redeemer;;","","Melody Green. * Copyright © 1982 Birdwing Music/ BMGSongs/EMIChristian Music Publishing/ Adm. by CopyCare.","Melody Green","SOF #544","", -"There is a voice that must be heard,","","Paul Oakley * Copyright © 1998 Thankyou Music","Paul Oakley","","", -"There is no one like our God","","Noel & Tricia Richards. * Copyright © 1996 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"There is no other friend,","","David Ruis. * Copyright © 1996 Mercy/Vineyard Publishing/ Adm. by CopyCare.","David Ruis","","", -"There is no other name","","Robin Mark * Copyright © 1999 Integrity's Hosanna! Music/Sovereign Music UK","Robin Mark","","", -"There is none like You,","","Lenny LeBlanc. * Copyright © 1991 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Lenny LeBlanc","","", -"There is one name","","Robert Critchley. * Copyright © 1993 Kingsway's Thankyou Music.","Robert Critchley","","", -"There is power in the name of Jesus;;","","Noel Richards. * Copyright © 1989 Kingsway's Thankyou Music.","Noel Richards","SOF #545","", -"There must be more","","Tim Hughes * Copyright © 2002 Thankyou Music","Tim Hughes","","", -"Therefore the redeemed","","Ruth Lake. * Copyright © 1972 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Ruth Lake","","", -"There's a call","","Stuart Townend * Copyright © 2001 Thankyou Music","Stuart Townend","","", -"There's a calling to the nations","","Ken Riley * Copyright © 1999 Thankyou Music","Ken Riley","","", -"There's a light that shines,","","Geoff Bullock. * Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","Geoff Bullock","","", -"There's a new song upon my lips","","Johnny Parks * Copyright © 2001 Thankyou Music","Johnny Parks","","", -"There's a pageant of triumph in glory,","","David Fellingham * Copyright © 1999 Thankyou Music","David Fellingham","","", -"There's a people","","Terry Virgo & Stuart Townend * Copyright © 2000 Thankyou Music","Terry Virgo | Stuart Townend","","", -"There's a place where the streets shine;","","Paul Oakley. * Copyright © 1995 Kingsway's Thankyou Music.","Paul Oakley","SOF #1041","", -"There's a quiet understanding","","Ted Smith. * Copyright © 1973 Hope Publishing Co/ Adm. by CopyCare.","Ted Smith","","", -"There's a river of joy","","Taran Ash, James Mott & Matthew Pryce. * Copyright © 1997 Kingsway's Thankyou Music.","Taran Ash | James Mott | Matthew Pryce","","", -"There's a river","","Malcolm du Plessis. * Copyright © 1991 Maranatha! Music/ Adm. by CopyCare.","Malcolm du Plessis","","", -"There's a sound on the wind","","Graham Kendrick. * Copyright © 1978 Kingsway's Thankyou Music.","Graham Kendrick","","", -"There's a wind a-blowing","","David Ruis. * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare.","David Ruis","","", -"There's an awesome sound","","Richard Lewis. * Copyright © 1997 Kingsway's Thankyou Music.","Richard Lewis","","", -"There's no love greater than Your love","","James Taylor * Copyright © 2000 Thankyou Music","James Taylor","","", -"There's no one like our God","","Vicky Beeching & Steve Mitchinson * Copyright © 1999 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Vicky Beeching | Steve Mitchinson","","", -"There's no one like You,","","Eddie Espinosa * Copyright © 1990 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Eddie Espinosa","","", -"There's nothing I like better","","Ian Smale. * Copyright © 1994 Kingsway's Thankyou Music.","Ian Smale","","", -"These are the days of Elijah,!","","Robin Mark. * Copyright © 1997 Daybreak Music Ltd.","Robin Mark","SOF #1047","", -"They that wait on the Lord","","Kevin Prosch. * Copyright © 1995 7th Time Music/ Kingsway's Thankyou Music.","Kevin Prosch","","", -"Thine be the glory,","","Edmond Louis Budry. * Tr. R. Birch Hoyle.","Edmond Louis Budry","","", -"Thine, O Lord, is the greatness,","","Suella Behrns. * Copyright © 1983 Christian Fellowship of Columbia.","Suella Behrns","","", -"This child","","Graham Kendrick * Copyright © 1988 Make Way Music","Graham Kendrick","","", -"This earth belongs to God,","","Christopher Idle. * Copyright © Christopher Idle/Jubilate Hymns.","Christopher Idle","","", -"This God is our God,","","Kent Henry & David Ortinau. * Copyright © 1995 Kent Henry Ministries/Kingsway's Thankyou Music.","Kent Henry | David Ortinau","","", -"This I know,","","Mark Altrogge. * Copyright © 1992 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", -"This is Holy ground,","","Christopher Beatty. * Copyright © 1979 Birdwing Music/BMG Songs/EMI Christian Music Publishing/Adm. by CopyCare.","Christopher Beatty","","", -"This is love","","Kristyn Lennox & Keith Getty * Copyright © 2002 Thankyou Music","Kristyn Lennox | Keith Getty","","", -"This is my belovèd Son","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", -"This is my desire, to honour you;;","","Reuben Morgan * Copyright © 1995 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","SOF #1561","", -"This is my pilgrimage,","","Sue Rinaldi. * Copyright © 1996 Kingsway's Thankyou Music.","Sue Rinaldi","","", -"This is the air I breathe;;","","Marie Barnett * Copyright © 1995 Mercy/Vineyard Publishing/Adm. by CopyCare","Marie Barnett","SOF #1562","", -"This is the best place,","","Ian White * Copyright © 1997 Thankyou Music.","Ian White","","", -"This is the day, that the Lord has made;","","Les Garrett. * Copyright © 1967 Scripture in Song, a division of Integrity Music/ Adm. by Kingsway's Thankyou Music.","Les Garrett","SOF #553","", -"This is the mystery,","","Chris Bowater & Phil Lawson Johnston. * Copyright © 1992 Sovereign Lifestyle Music.","Chris Bowater | Phil Lawson Johnston","","", -"This is the place","","Dave Bilbrough. * Copyright © 1997 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"This love,","","Geoff Bullock. * Copyright © 1994 Word Music/Adm. by CopyCare.","Geoff Bullock","","", -"This means I love You","","Matt Redman * Copyright © 1995 Thankyou Music","Matt Redman","","", -"Thou art worthy,","","Pauline Michael Mills. * Copyright © 1963, 1975 Fred Bock Music/ Kingsway's Thankyou Music.","Pauline Michael Mills","","", -"Thou didst leave thy throne","","Emily E. Steele Elliott. *","Emily E. Steele Elliott","","", -"Thou, O Lord, art a shield about me,","","Donn Thomas & Charles Williams. * Copyright © 1980 Spoone Music/ Word Music/Adm. by CopyCare.","Donn Thomas | Charles Williams","","", -"Thou, whose Almighty word","","John Marriott. *","John Marriott","","", -"Though I feel afraid","","Ian White. * Copyright © 1996 Little Misty Music/ Kingsway's Thankyou Music.","Ian White","","", -"Though trials will come","","Graham Kendrick * Copyright © 2001 Make Way Music","Graham Kendrick","","", -"Through all the changing scenes of life","","","N. Tate (1652-1715) | N. Brady (1659-1726)","","", -"Through days of rage and wonder","","Graham Kendrick * Copyright © 1998 Make Way Music","Graham Kendrick","","", -"Through our God","","Dale Garratt. * Copyright © 1979 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Dale Garratt","","", -"Throughout the earth Your glory will come,","","James Wright. * Copyright © 1996 Kingsway's Thankyou Music.","James Wright","","", -"Thy hand, O God has guided","","Edward Hayes Plumptre. *","Edward Hayes Plumptre","","", -"Thy word is a lamp unto my feet;","","Amy Grant & Michael W. Smith. * Copyright © 1983 Bug & Bear Music/LCS Music Group Inc./Meadowgreen Music/EMI Christian Music Publishing/Adm. by CopyCare.","Amy Grant | Michael W. Smith","SOF #1066","", -"Time is too short","","Matt Redman * Copyright © 2000 Thankyou Music","Matt Redman","","", -"To be in Your presence,","","Noel Richards. * Copyright © 1991 Kingsway's Thankyou Music.","Noel Richards","","", -"To God be the glory!","","Fanny J. Crosby. *","Fanny J. Crosby","","", -"To Him we come","","James E. Seddon (1915-83) * Copyright © Mrs M. Seddon/Jubilate Hymns Ltd","James E. Seddon (1915-83)","","", -"To Him who loves us,","","Bryn Haworth. * Copyright © 1996 Kingsway's Thankyou Music.","Bryn Haworth","","", -"To Him who sits on the throne","","Debbye Graafsma. * Copyright © 1985 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Debbye Graafsma","","", -"To walk with You,","","Matthew Bridle * Copyright © 1998 Thankyou Music","Matthew Bridle","","", -"To You, King Jesus","","Nathan Fellingham * Copyright © 2002 Thankyou Music","Nathan Fellingham","","", -"To You, O Lord","","Graham Kendrick * Copyright © 1997 Make Way Music","Graham Kendrick","","", -"To Your Majesty,","","Sue Rinaldi & Steve Bassett. * Copyright © 1988 Word's Spirit of Praise Music/Adm. by CopyCare.","Sue Rinaldi | Steve Bassett","","", -"Ubi caritas","","Taizé, music: Jacques Berthier (1923-94) * Copyright © 1980 Ateliers et Presses de Taizé","Taizé | music: Jacques Berthier (1923-94)","","", -"Unto thee, O Lord,","","Charles F. Monroe. * Copyright © 1971 Maranatha! Music/ Adm. by CopyCare.","Charles F. Monroe","","", -"Unto us a boy is born","","Latin, 15th Century * Tr. Percy Dearmer (1867-1936) Copyright © Oxford University Press","Latin | 15th Century","","", -"Unto You, O Lord,","","Phil Townend. * Copyright © 1986 Kingsway's Thankyou Music.","Phil Townend","","", -"Visit us, O Lord,","","Kirk & Deby Dearman. * Copyright © Ariose Music/EMI Christian Music Publishing/Adm. by CopyCare.","Kirk Dearman | Deby Dearman","","", -"Wait for the Lord","","Jacques Berthier (1923-94) * Copyright © Ateliers et Presses de Taizé","Jacques Berthier (1923-94)","","", -"Waiting for Your Spirit,","","Mick Gisbey. * Copyright © 1995 Kingsway's Thankyou Music.","Mick Gisbey","","", -"Wake up, my soul,","","Matt Redman. * Copyright © 1994 Kingsway's Thankyou Music.","Matt Redman","","", -"Wake up, wake up O sleeper,","","Nathan Fellingham. * Copyright © 1996 Kingsway's Thankyou Music.","Nathan Fellingham","","", -"Wash me clean","","Maggi Dawn. * Copyright © 1994 Kingsway's Thankyou Music.","Maggi Dawn","","", -"We are a chosen people,","","David J. Hadden. * Copyright © 1982 Restoration Music Ltd./ Adm. by Sovereign Music UK.","David J. Hadden","","", -"We are a people of power,","","Trevor King. * Copyright © 1986 Trevor King/ Kingsway's Thankyou Music.","Trevor King","","", -"We are all together","","Danny Daniels. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels","","", -"We are being built into a temple,","","lan Traynar. * Copyright © 1977 Kingsway's Thankyou Music.","lan Traynar","","", -"We are called to be prophets to this nation,","","Brian Houston * Copyright © 1999 Thankyou Music","Brian Houston","","", -"We are heirs of God Almighty","","Stuart Townend * Copyright © 2002 Thankyou Music","Stuart Townend","","", -"We are here to praise You,","","Graham Kendrick. * Copyright © 1985 Kingsway's Thankyou Music.","Graham Kendrick","","", -"We are His people,","","Kevin Prosch. * Copyright © 1991 Mercy/Vineyard Publishing/Adm. by CopyCare.","Kevin Prosch","","", -"We are in God's army,","","lan Smale. * Copyright © 1987 Kingsway's Thankyou Music.","lan Smale","","", -"We are joined by angels","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", -"We are marching in the light of God,","","Tr. Anders Nyberg. * Copyright © 1990 Wild Goose Publications.","Tr. Anders Nyberg","","", -"We are marching to a different anthem,","","No permission is required to reproduce this song for non-commercial purposes * Lex Loizides. Copyright © 1997 Kingsway's Thankyou Music.","No permission is required to reproduce this song for non-commercial purposes","","", -"We are salt","","Bob Fitts. * Copyright, © 1992 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Bob Fitts","","", -"We are standing","","Geron Davis. * Copyright © 1983 Songchannel Music Co. Meadowgreen Music /EMIChristian Music Publishing/Adm. by CopyCare.","Geron Davis","","", -"We are the army of God,","","Kevin Prosch. * Copyright © 1990 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Kevin Prosch","","", -"We are the hands of God,","","John Pantry. * Copyright © 1990 Kingsway's Thankyou Music.","John Pantry","","", -"We are Your inheritance,","","Paul Oakley. * Copyright © 1996 Kingsway's Thankyou Music.","Paul Oakley","","", -"We are Your people","","David Fellingham. * Copyright © 1986 Kingsway's Thankyou Music.","David Fellingham","","", -"We ask You, O Lord,","","Richard Lewis. * Copyright © 1994 Kingsway's Thankyou Music.","Richard Lewis","","", -"We behold Your glory,","","David & Nathan Fellingham. * Copyright © 1995 Kingsway's Thankyou Music.","David Fellingham | Nathan Fellingham","","", -"We believe in hebrews thirteen, eight,","","Ian Smale. * Copyright © 1996 Kingsway's Thankyou Music.","Ian Smale","","", -"We bow down and confess","","Viola Grafstrom. * Copyright © 1996 Kingsway's Thankyou Music.","Viola Grafstrom","","", -"We bow our hearts","","Charlie Hall * Copyright © 2000 worshiptogether.com songs/Six Steps Music/ Adm. by Kingsway Music","Charlie Hall","","", -"We break this bread","","Copyright © 1980 Central Board of Finance * of the Church of England. Used by permission.","Copyright © 1980 Central Board of Finance","","", -"We bring the sacrifice of praise","","Kirk Dearman. * Copyright © 1981 Stamps Baxter Music/ John T. Benson Publishing Co/ Adm. by CopyCare.","Kirk Dearman","","", -"We come in Your name","","Kate Simmonds & Mark Edwards * Copyright © 2002 Thankyou Music","Kate Simmonds | Mark Edwards","","", -"We confess the sins of our nation,","","Kevin Prosch. * Copyright © 1991 Mercy/Vineyard Publishing/Adm. by CopyCare.","Kevin Prosch","","", -"We could watch You from afar","","Matt Redman * Copyright © 2002 Thankyou Music","Matt Redman","","", -"We declare that the kingdom of God is here,","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music. (Men and women in canon)","Graham Kendrick","","", -"We declare there's only one Lord,","","Pete Roe. * Copyright © 1985 Kingsway's Thankyou Music.","Pete Roe","","", -"We declare Your Majesty,","","Malcolm du Plessis. * Copyright © 1984 Kingsway's Thankyou Music.","Malcolm du Plessis","","", -"We extol You,","","David Fellingham. * Copyright © 1987 Kingsway's Thankyou Music.","David Fellingham","","", -"We fall down","","Chris Tomlin * Copyright © 1998 worshiptogether.com songs/ Adm. by Kingsway Music","Chris Tomlin","","", -"We give thanks to You,","","Mark Altrogge. * Copyright © 1992 Integrity's Hosanna! Music/ People of Destiny Int./Adm. by Kingsway's Thankyou Music.","Mark Altrogge","","", -"We have a gospel to proclaim","","Edward J. Burns * Copyright © Edward J. Burns","Edward J. Burns","","", -"We have a vision","","Chris Falson. * Copyright © 1990 Chris Falson Music/Adm. by Kingsway's Thankyou Music.","Chris Falson","","", -"We have called on You, Lord,","","Stuart Garrard. * Copyright © 1992 Kingsway's Thankyou Music.","Stuart Garrard","","", -"We have come into this place","","Bruce Ballinger. * Copyright © 1976 Sound III/Tempo Music Publications/CopyCare.","Bruce Ballinger","","", -"We have come to mount Zion,","","Robert Newey. * Copyright © 1989 Kingsway's Thankyou Music.","Robert Newey","","", -"We have come to seek Your face,","","Robert Newey. * Copyright © 1997 Kingsway's Thankyou Music.","Robert Newey","","", -"We have flooded the altar","","Martin Smith. * Copyright © 1994 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", -"We have prayed that You would have mercy;","","Paul Oakley. * Copyright © 1994 Kingsway's Thankyou Music.","Paul Oakley","","", -"We have sung our songs of victory,","","Stuart Townend. * Copyright © 1997 Kingsway's Thankyou Music.","Stuart Townend","","", -"We have this treasure in jars of clay.","","Doug Horley * Copyright © 1999 Thankyou Music","Doug Horley","","", -"We know that all things","","David J. Hadden. * Copyright © 1983 Restoration Music Ltd./ Adm. by Sovereign Music UK.","David J. Hadden","","", -"We lift up our heads,","","David Fellingham. * Copyright © 1997 Kingsway's Thankyou Music.","David Fellingham","","", -"We look to You, Almighty God","","Alan Rose * Copyright © 2000 Thankyou Music","Alan Rose","","", -"We place You on the highest place,","","Ramon Pink. * Copyright © 1983 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music.","Ramon Pink","","", -"We plough the fields","","Matthias Claudius. * Tr. Jane M. Campbell.","Matthias Claudius","","", -"We really want to thank You, Lord,","","Ed Baggett. * Copyright © 1974, 1975 Celebration/ Kingsway's Thankyou Music.","Ed Baggett","","", -"We rejoice in the goodness of our God,","","Carol Owen. * Copyright © 1994 Kingsway's Thankyou Music.","Carol Owen","","", -"We rest on thee, our shield and our defender!","","Edith G. Cherry. *","Edith G. Cherry","","", -"We see the Lord","","Robin Mark * Copyright © 2000 Integrity's Hosanna! Music/Sovereign Music UK","Robin Mark","","", -"We shall be as one,","","Joan Parsons. * Copyright © 1978 Kingsway's Thankyou Music.","Joan Parsons","","", -"We shall stand","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"We stand together","","Lex Loizides. * Copyright © 1996 Kingsway's Thankyou Music.","Lex Loizides","","", -"We wanna change this world,","","Sue Rinaldi. * Copyright © 1996 Kingsway's Thankyou Music.","Sue Rinaldi","","", -"We want to see Jesus lifted high;","","Doug Horley. * Copyright © 1993 Kingsway's Thankyou Music.","Doug Horley","SOF #1105","", -"We will give ourselves no rest","","Steve Cantellow & Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Steve Cantellow | Matt Redman","","", -"We will glorify","","Twila Paris. * Copyright © 1982 Singspiration Music/John T. Benson Publishing Co./Adm. by CopyCare.","Twila Paris","","", -"We will honour You,","","Phil Lawson Johnston. * Copyright © 1987 Kingsway's Thankyou Music.","Phil Lawson Johnston","","", -"We will seek Your face, ,","","Reuben Morgan * Copyright © 1997 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", -"We will tear down every stronghold","","Dave Bilbrough. * Copyright © 1991 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"We will worship the Lamb of glory,","","Dennis Jernigan. * Copyright © 1989 Shepherd's Heart Music/ Sovereign Lifestyle Music.","Dennis Jernigan","","", -"We worship and adore You,","","Ge Baas. * Copyright © 1983 Kingsway's Thankyou Music.","Ge Baas","","", -"Welcome, King of kings!","","Noel Richards. * Copyright © 1991 Kingsway's Thankyou Music.","Noel Richards","","", -"Well, I call upon my Father","","Ken Riley * Copyright © 2001 Thankyou Music","Ken Riley","","", -"Well, I hear they're singing","","Martin Smith. * Copyright © 1995 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", -"Well, I thank You, Lord,","","Bob Baker. * Copyright © 1994 Mercy/Vineyard Publishing/Adm. by CopyCare.","Bob Baker","","", -"We'll sing a new song","","Diane Fung. * Copyright © 1979 Word's Spirit of Praise Music/Adm. by CopyCare.","Diane Fung","","", -"We'll walk the land;","","Graham Kendrick. * Copyright © 1989 Make Way Music.","Graham Kendrick","SOF #583","", -"We're gonna sing like the saved","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", -"We're here for the harvest,","","Chris Bowater. * Copyright © 1996 Sovereign Lifestyle Music.","Chris Bowater","","", -"We're longing for Your presence,","","Stuart Townend * Copyright © 1998 Thankyou Music","Stuart Townend","","", -"We're looking to Your promise","","Matt Redman. * Copyright © 1997 Kingsway's Thankyou Music.","Matt Redman","","", -"We're reaching out to You again.","","Ian White. * Copyright © 1997 Little Misty Music/ Kingsway's Thankyou Music.","Ian White","","", -"We're so thankful to You,","","Richard Lewis & Chris Cartwright. * Copyright © 1994 Kingsway's Thankyou Music.","Richard Lewis | Chris Cartwright","","", -"We're standing here","","Stuart Garrard. * Copyright © 1993 Kingsway's Thankyou Music.","Stuart Garrard","","", -"Were You there","","American Folk Hymn *","American Folk Hymn","","", -"We've come to praise You","","Kate Simmonds & Stuart Townend * Copyright © 2001 Thankyou Music","Kate Simmonds | Stuart Townend","","", -"What a day to be alive","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", -"What a friend I've found,","","Martin Smith. * Copyright © 1996 Curious? Music UK/Adm. by Kingsway's Thankyou Music.","Martin Smith","","", -"What a friend we have in Jesus,","","Joseph M. Scriven. *","Joseph M. Scriven","","", -"What can I say","","Neil Bennetts * Copyright © 2001 Thankyou Music","Neil Bennetts","","", -"What child is this","","William Chatterton Dix (1837-98) *","William Chatterton Dix (1837-98)","","", -"What kind of love is this","","Bryn & Sally Haworth. * Copyright © 1983 Signalgrade/ Kingsway's Thankyou Music.","Bryn Haworth | Sally Haworth","","", -"What love is this, that took my place","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", -"What love is this? The love of Jesus","","Doug Horley & Steve Whitehouse * Copyright © 2001 Thankyou Music","Doug Horley | Steve Whitehouse","","", -"What to say, Lord?","","Joel Houston * Copyright © 1999 Joel Houston/Hillsong Publishing/Kingsway Music","Joel Houston","","", -"What wisdom once devised the plan","","Bob Kauflin * Copyright © 2000 PDI Praise/Adm. by CopyCare","Bob Kauflin","","", -"What wonder of grace","","Stuart Townend * Copyright © 2002 Thankyou Music","Stuart Townend","","", -"Whatever I have gained,","","Geoff Bullock. * Copyright © 1997 Watershed Productions/ Kingsway's Thankyou Music.","Geoff Bullock","","", -"When a knight won His spurs","","Jan Struther (1901-53) * Copyright © Oxford University Press","Jan Struther (1901-53)","","", -"When can I go and meet with God?","","Matt Redman. * Copyright © 1996 Kingsway's Thankyou Music.","Matt Redman","","", -"When deep calls to deep","","Paul Oakley * Copyright © 1998 Thankyou Music","Paul Oakley","","", -"When I come face to face","","Drew Land * Copyright © 2000 Thankyou Music","Drew Land","","", -"When I feel the touch","","Keri Jones & David Matthews. * Copyright © 1978 Word's Spirit of Praise Music/Adm. by CopyCare.","Keri Jones | David Matthews","","", -"When I look into Your holiness,","","Wayne & Cathy Perrin. * Copyright © 1980 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Wayne Perrin | Cathy Perrin","","", -"When I needed a neighbour","","Sydney Carter * Copyright © 1965 Stainer & Bell Ltd","Sydney Carter","","", -"When I sing my praise","","Noel & Tricia Richards * Copyright © 1999 Thankyou Music","Noel Richards | Tricia Richards","","", -"When I survey (Oh, the wondeerful cross)","","Isaac Watts (1674-1748) * Refrain lyrics: Chris Tomlin & J.D. Walt Copyright © 2000 worshiptogether.com songs/Six Steps Music/ Adm. by Kingsway Music","Isaac Watts (1674-1748)","","", -"When I survey the wondrous cross","","Isaac Watts. *","Isaac Watts","","", -"When I was lost","","Kate & Miles Simmonds * Copyright © 2001 Thankyou Music","Kate Simmonds | Miles Simmonds","","", -"When love came down","","Stuart Townend * Copyright © 2001 Thankyou Music","Stuart Townend","","", -"When morning gilds the skies","","Tr. Edward Caswall. *","Tr. Edward Caswall","","", -"When my heart is faint","","Alan Rose * Copyright © 2000 Thankyou Music","Alan Rose","","", -"When my heart runs dry","","Matt Redman * Copyright © 2001 Thankyou Music","Matt Redman","","", -"When the darkness fills my senses,","","Reuben Morgan * Copyright © 1998 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", -"When the music fades;","","Matt Redman. * Copyright © 1997 Kingsway's Thankyou Music.","Matt Redman","SOF #1113","", -"When the road is rough and steep","","Norman J. Clayton * Copyright © 1985 Wordspring Music/Adm. by CopyCare","Norman J. Clayton","","", -"When the Spirit of the Lord","","Author unknown. *","Author unknown","","", -"When we turn our hearts to heaven","","Noel Richards & Ken Riley * Copyright © 2001 Thankyou Music","Noel Richards | Ken Riley","","", -"When we walk with the Lord","","John Henry Sammis. *","John Henry Sammis","","", -"When we're in trouble,","","Noel Richards. * Copyright © 1996 Kingsway's Thankyou Music.","Noel Richards","","", -"When words are not enough","","Martyn Layzell * Copyright © 1998 Thankyou Music","Martyn Layzell","","", -"When You prayed beneath the trees","","Christopher Idle * Copyright © Christopher Idle/Jubilate Hymns Ltd","Christopher Idle","","", -"When you've been broken,","","Kevin Prosch. * Copyright © 1995 7th Time Music/ Kingsway's Thankyou Music.","Kevin Prosch","","", -"Where can I go","","Brian Houston * Copyright © 2001 Thankyou Music","Brian Houston","","", -"Where could I find someone like You?","","Robin Mark * Copyright © 2000 Thankyou Music","Robin Mark","","", -"Where there once was only hurt,","","Tommy Walker. * Copyright © 1992 Integrity's Hosanna! Music/ Adm. by Kingsway's Thankyou Music.","Tommy Walker","","", -"Where You go I will go,","","Author unknown. *","Author unknown","","", -"Whether You're one","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"While shepherds watched","","Nahum Tate. *","Nahum Tate","","", -"Who can compare","","Gareth Robinson * Copyright © 2001 Thankyou Music","Gareth Robinson","","", -"Who can ever say they understand","","Dave Bilbrough. * Copyright © 1989 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Who can sound the depths of sorrow","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"Who can stand before the Lord","","Geraldine Latty & Carey Luce * Copyright © 2002 Thankyou Music","Geraldine Latty | Carey Luce","","", -"Who could offer us abundant life?","","Evan Rogers * Copyright © 1998 Thankyou Music","Evan Rogers","","", -"Who has laid (SH00-145)","","","Johnny Markin","","", -"Who is He in yonder stall,","","Benjamin R. Hanby, alt. *","Benjamin R. Hanby | alt","","", -"Who is like unto thee, O Lord, amongst gods","","Judy Horner-Montemayor. * Copyright © 1975 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","Judy Horner-Montemayor","","", -"Who is like You","","Joannah Oyeniran * Copyright © 2002 Thankyou Music","Joannah Oyeniran","","", -"Who is on the Lord's side?","","Frances R. Havergal. *","Frances R. Havergal","","", -"Who is there like the Lord our God","","Neil Bennetts * Copyright © 2002 Thankyou Music","Neil Bennetts","","", -"Who is there like You;;","","Paul Oakley. * Copyright © 1995 Kingsway's Thankyou Music.","Paul Oakley","SOF #1117","", -"Who is this","","Phil Rogers. * Copyright © 1984 Kingsway's Thankyou Music.","Phil Rogers","","", -"Who paints the skies","","Stuart Townend. * Copyright © 1995 Kingsway's Thankyou Music.","Stuart Townend","","", -"Who put the colours in the rainbow","","J.A.P. Booth * Copyright © Paul Booth/Adm. by CopyCare","J.A.P. Booth","","", -"Whom have I but You?","","David Ruis * Copyright © 1996 Mercy/Vineyard Publishing/Adm. by CopyCare","David Ruis","","", -"Who's the King of the jungle?","","Annie Spiers * Copyright © 1992 Annie Spiers","Annie Spiers","","", -"Who's the only light","","Scott Underwood * Copyright © 1999 Mercy/Vineyard Publishing/Adm. by CopyCare","Scott Underwood","","", -"Whose lips will plead","","Alex Muir. * Copyright © 1993 Kingsway's Thankyou Music.","Alex Muir","","", -"Will You come and follow me","","Graham Maule & John L. Bell. * Copyright © 1987 WGRG, Iona Community.","Graham Maule | John L. Bell","","", -"Wind, wind, blow on me,","","Jane & Betsy Clowe. * Copyright © 1974, 1975 Celebration/ Kingsway's Thankyou Music.","Jane Clowe | Betsy Clowe","","", -"With a prayer","","Stuart Townend * Copyright © 2002 Thankyou Music","Stuart Townend","","", -"With all my heart","","Paul Field. * Copyright © 1987 Kingsway's Thankyou Music.","Paul Field","","", -"With His hands He made me,","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","","", -"With my whole heart","","Graham Kendrick. * Copyright © 1981 Kingsway's Thankyou Music.","Graham Kendrick","","", -"With the choir of angels singing","","Matt Redman * Copyright © 1998 Thankyou Music","Matt Redman","","", -"Within the veil","","(From “Heaven shall not wait” Wild Goose Publications 1987) * No permission is required to reproduce this song for non-commercial purposes Ruth Dryden. Copyright © 1978 Genesis Music/ Kingsway's Thankyou Music.","(From “Heaven shall not wait” Wild Goose Publications 1987)","","", -"Wonderful grace,","","John Pantry * Copyright © 1990 HarperCollins Religious/Adm. by CopyCare","John Pantry","","", -"Wonderful love","","David Fellingham. * Copyright © 1990 Kingsway's Thankyou Music.","David Fellingham","","", -"Wonderful Redeemer","","Ashton Gardner * Copyright © 2001 Thankyou Music","Ashton Gardner","","", -"Wonderful, so wonderful","","Tim Hughes * Copyright © 2002 Thankyou Music","Tim Hughes","","", -"Worship the Lord!","","John Watson. * Copyright © 1986 Ampelos Music/ Adm. by CopyCare.","John Watson","","", -"Worship the Lord","","Louise Fellingham * Copyright © 1999 Thankyou Music","Louise Fellingham","","", -"Worthy art thou,","","Dave Richards. * Copyright © 1979 Kingsway's Thankyou Music.","Dave Richards","","", -"Worthy is the Lamb seated on the throne,","","David J. Hadden. * Copyright © 1983 Restoration Music Ltd./ Adm. by Sovereign Music UK.","David J. Hadden","","", -"Worthy is the Lamb who was slain.","","Andy Park. * Copyright © 1990 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", -"Worthy is the Lamb,","","Carol Owen. * Copyright © 1995 Kingsway's Thankyou Music.","Carol Owen","","", -"Worthy, O worthy are You, Lord,","","Mark Kinzer. * Copyright © 1976 The Word of God Music/ Adm. by CopyCare.","Mark Kinzer","","", -"Worthy, the Lord is worthy,","","lan White. * Copyright © 1986 Little Misty Music/ Kingsway's Thankyou Music.","lan White","","", -"Worthy, You are worthy,","","Matt Redman * Copyright © 1999 Thankyou Music","Matt Redman","","", -"Woven together","","Stuart Townend * Copyright © 1997 Thankyou Music","Stuart Townend","","", -"Ye Holy angels bright,","","Richard Baxter. * John H. Gurney & Richard R. Chope altd.","Richard Baxter","","", -"Ye servants of God,","","Charles Wesley. *","Charles Wesley","","", -"Yes, I thank You","","Kevin Simpson * Copyright © 2000 Thankyou Music","Kevin Simpson","","", -"Yesterday, today and forever","","Marilyn Baker * Copyright © 1998 Marilyn Baker Music/Kingsway Music","Marilyn Baker","","", -"Yet this will I call to mind,","","Carl Tuttle. * Copyright © 1992 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Carl Tuttle","","", -"Yet will I praise Him","","Geraldine Latty * Copyright © 2001 Thankyou Music","Geraldine Latty","","", -"You alone are worthy (SH10 92)","","","Al Gordon | Luke Hellebronth | Hanif Williams","","", -"You are all I want","","Gareth Robinson * Copyright © 2001 Thankyou Music","Gareth Robinson","","", -"You are beautiful","","Mark Altrogge. * Copyright © 1987 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", -"You are compassionate","","Mark Altrogge. * Copyright © 1989 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", -"You are crowned with many crowns,","","John Sellers. * Copyright © 1984 Integrity's Hosanna! Music. Adm. Kingsway's Thankyou Music.","John Sellers","","", -"You are forever in my life","","Reuben Morgan * Copyright © 2001 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", -"You are God in heaven,","","Matt & Beth Redman * Copyright © 2000 Thankyou Music","Matt Redman | Beth Redman","","", -"You are here","","Patty Kennedy. * Copyright © 1985 Mercy/Vineyard Publishing/ Adm. by CopCare.","Patty Kennedy","","", -"You are Holy, Holy","","Reuben Morgan * Copyright © 1997 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", -"You are Holy, You are mercy","","Tré Sheppard * Copyright © 2002 Thankyou Music","Tré Sheppard","","", -"You are known as the rock of ages,","","Robin Mark * Copyright © 2000 Thankyou Music","Robin Mark","","", -"You are Lord, You are Lord","","Neil Bennetts * Copyright © 2002 Thankyou Music","Neil Bennetts","","", -"You are merciful to me,","","Ian White. * Copyright © 1997 Little Misty Music/ Kingsway's Thankyou Music.","Ian White","","", -"You are mighty,","","Craig Musseau. * Copyright © 1989 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Craig Musseau","","", -"You are my anchor","","Stuart Townend * Copyright © 2001 Thankyou Music","Stuart Townend","","", -"You are my foundation","","Mark Stevens (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Mark Stevens (Abundant Life Ministries | Bradford | England)","","", -"You are my hiding place,","","Michael Ledner. * Copyright © 1981 Maranatha! Music/ Adm. by CopyCare.","Michael Ledner","","", -"You are my King, I live to know you","","Mark Stevens (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Mark Stevens (Abundant Life Ministries | Bradford | England)","","", -"You are my King,","","Brian Doerksen. * Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Brian Doerksen","","", -"You are my passion,","","Noel & Tricia Richards. * Copyright © 1995 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards","","", -"You are my Shepherd,","","Scott Underwood * Copyright © 1997 Mercy/Vineyard Publishing/Adm. by CopyCare","Scott Underwood","","", -"You are mystical","","Brian Houston * Copyright © 2001 Thankyou Music","Brian Houston","","", -"You are righteous","","Wynne Goss. * Copyright © 1992 Kingsway's Thankyou Music.","Wynne Goss","","", -"You are the fountain of my life","","Darren Clarke * Copyright © 1998 Mercy/Vineyard Publishing/Adm. by CopyCare","Darren Clarke","","", -"You are the great I am,","","Tommy Walker. * Copyright © 1991 WeMobile Music/Doulos Publishing/Adm. by CopyCare.","Tommy Walker","","", -"You are the Holy one,","","Andy Park. * Copyright © 1988 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", -"You are the King of glory,","","Mavis Ford. * Copyright © 1978 Word's Spirit of Praise Music/Adm. by CopyCare.","Mavis Ford","","", -"You are the King of glory","","Liz Fitzgibbon * Copyright © 2001 Moortown Music/Kingsway Music","Liz Fitzgibbon","","", -"You are the Lord, the famous one","","Chris Tomlin & Jesse Reeves * Copyright © 2002 worshiptogether.com songs/Six Steps Music/ Adm. by Kingsway Music","Chris Tomlin | Jesse Reeves","","", -"You are the Lord, the King of Heaven","","Eoghan Heaslip & Mick Goss * Copyright © 2002 Integrity's Hosanna! Music/Sovereign Music UK/ & Daybreak Music Ltd","Eoghan Heaslip | Mick Goss","","", -"You are the mighty King,","","Eddie Espinosa. * Copyright © 1982 Mercy/Vineyard Publishing/Adm. by CopyCare.","Eddie Espinosa","","", -"You are the one I love","","Sue Rinaldi & Caroline Bonnett * Copyright © 2001 Thankyou Music","Sue Rinaldi | Caroline Bonnett","","", -"You are the perfect and righteous God","","Steve & Vikki Cook. * Copyright © 1994 People of Destiny International/Word Music/Adm. by CopyCare.","Steve Cook | Vikki Cook","","", -"You are the song that I sing","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", -"You are the sovereign 'I am',","","Brian Doerksen * Copyright © 1999 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Brian Doerksen","","", -"You are the vine;","","Danny Daniels & Randy Rigby. * Copyright © 1985 Mercy/Vineyard Publishing/Adm. by CopyCare.","Danny Daniels | Randy Rigby","SOF #629","", -"You are wonderful,","","Per Soetorp. * Copyright © 1992 His Music/ Kingsway's Thankyou Music.","Per Soetorp","","", -"You are worthy to receive","","John Pantry. * Copyright © 1990 Kingsway's Thankyou Music.","John Pantry","","", -"You are worthy, Lord, You're worthy","","John Daniel Lawtum. * Copyright © 1982 Millenium Dawn Music/ Adm. by Sovereign Music UK.","John Daniel Lawtum","","", -"You bless my life,","","Terry Butler. * Copyright © 1992 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Terry Butler","","", -"You call us first","","Tim Hughes * Copyright © 2001 Thankyou Music","Tim Hughes","","", -"You came to heal the broken hearted","","Robert Newey. * Copyright © 1990 Kingsway's Thankyou Music.","Robert Newey","","", -"You came into my life","","Tim Hughes * Copyright © 1999 Thankyou Music","Tim Hughes","","", -"You can have my whole life","","James Taylor * Copyright © 2001 Thankyou Music","James Taylor","","", -"You chose the cross;","","Martyn Layzell * Copyright © 2002 Thankyou Music","Martyn Layzell","SOF #1661","", -"You confide in those who fear You","","Matt Redman * Copyright © 1996 Thankyou Music","Matt Redman","","", -"You did not wait for me","","Mark Altrogge. * Copyright © 1985 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", -"You gave Your only Son","","Martyn Layzell * Copyright © 2002 Thankyou Music","Martyn Layzell","","", -"You have become for us wisdom;","","Mark Altrogge. * Copyright © 1991 People of Destiny International/Word Music/Adm. by CopyCare.","Mark Altrogge","","", -"You have been given","","Bob Kauflin. * Copyright © 1988 People of Destiny International/Word Music/Adm. by CopyCare.","Bob Kauflin","","", -"You have called us chosen,","","Andy Park. * Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Andy Park","","", -"You have given me new life;","","Nathan & David Fellingham * Copyright © 1998 Thankyou Music","Nathan Fellingham | David Fellingham","","", -"You have laid Your hand on me,","","Noel Richards * Copyright © 1999 Thankyou Music","Noel Richards","","", -"You have lifted up the humble,","","Alun Leppitt. * Copyright © 1994 Kingsway's Thankyou Music.","Alun Leppitt","","", -"You have taken the precious","","Tom Davis & Kevin Prosch. * Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Tom Davis | Kevin Prosch","","", -"You laid aside Your Majesty,","","Noel Richards. * Copyright © 1985 Kingsway's Thankyou Music.","Noel Richards","","", -"You led me to the cross,","","Matt Redman * Copyright © 1999 Thankyou Music","Matt Redman","","", -"You make my heart feel glad.","","Patricia Morgan & Sue Rinaldi. * Copyright © 1990 Kingsway's Thankyou Music.","Patricia Morgan | Sue Rinaldi","","", -"You make Your face to shine on me,","","Darlene Zschech & Russell Fragar. * Copyright © 1996 Darlene Zschech & Russell Fragar/Hillsongs Australia/Kingsway's Thankyou Music.","Darlene Zschech | Russell Fragar","","", -"You never put a light under a dirty old bucket.","","Ian Smale. * Copyright © 1994 Kingsway's Thankyou Music.","Ian Smale","","", -"You, O Lord,","","Mark Veary & Paul Oakley. * Copyright © 1986 Kingsway's Thankyou Music.","Mark Veary | Paul Oakley","","", -"You pour out grace","","Gareth Robinson & Joannah Oyeniran * Copyright © 2001 Thankyou Music","Gareth Robinson | Joannah Oyeniran","","", -"You purchased men","","John W. Elliot. * Copyright © 1987 BMGSongs Inc/ Adm. by CopyCare.","John W. Elliot","","", -"You rescued me,","","Geoff Bullock. * Copyright © 1992 Word Music/Adm. by CopyCare.","Geoff Bullock","","", -"You said: Ask and you will receive","","Reuben Morgan * Copyright © 1998 Reuben Morgan/Hillsong Publishing/ Kingsway Music","Reuben Morgan","","", -"You sat down","","Mark Altrogge. * Copyright © 1987 Integrity's Hosanna! Music/ People of Destiny Int./Adm. by Kingsway's Thankyou Music.","Mark Altrogge","","", -"You set me apart","","Paul Ewing * Copyright © 2000 Paul Ewing/Hillsong Publishing/Kingsway Music","Paul Ewing","","", -"You shall be Holy","","Dave Dickerson. * Copyright © 1988 Coronation Music Publishing/Kingsway's Thankyou Music.","Dave Dickerson","","", -"You shall go out with joy","","Steffi Geiser Rubin & Stuart Dauermann. * Copyright © 1975 Lillenas Publishing Co./ Adm. by CopyCare.","Steffi Geiser Rubin | Stuart Dauermann","","", -"You shaped the heavens","","Tim Hughes * Copyright © 2001 Thankyou Music","Tim Hughes","","", -"You spread out the skies","","Matt Redman & Chris Tomlin * Copyright © 2002 worshiptogether.com songs/Six Steps Music/Thankyou Music/Adm. by Kingsway Music","Matt Redman | Chris Tomlin","","", -"You take me by the hand","","Dave Bilbrough * Copyright © 2000 Thankyou Music","Dave Bilbrough","","", -"Your eye is on the sparrow,","","Darlene Zschech. * Copyright © 1996 Darlene Zschech/Hillsongs Australia/Kingsway's Thankyou Music.","Darlene Zschech","","", -"Your hand, O God, has guided","","E.H. Plumptre (1821-91) adapt. Keith Getty * Copyright © 2001 Thankyou Music","E.H. Plumptre (1821-91) adapt. Keith Getty","","", -"Your kindness overwhelmed me","","James Gregory * Copyright © 2002 Thankyou Music","James Gregory","","", -"Your kingdom generation","","Darlene Zschech & David Moyse * Copyright © 2000 Darlene Zschech & David Moyse/ Hillsong Publishing/Kingsway Music","Darlene Zschech | David Moyse","","", -"Your light broke through my night","","Reuben Morgan * Copyright © 1998 Reuben Morgan/Hillsong Publishing/ Kingsway Music","Reuben Morgan","","", -"Your love has captured me","","Chris Tomlin, Jesse Reeves & Louie Giglio * Copyright © 1999 worshiptogether.com songs/ Adm. by Kingsway Music","Chris Tomlin | Jesse Reeves | Louie Giglio","","", -"Your love is amazing;","Hallelujah (Your love is amazing)","Brenton Brown & Brian Doerksen * Copyright © 2000 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Brenton Brown | Brian Doerksen","SOF #1676","", -"Your love is better than wine","","Robert Critchley * Copyright © 2000 Thankyou Music","Robert Critchley","","", -"Your love looks after me,","","Chris Falson. * Copyright © 1991 Chris Falson Music/Adm. by Kingsway's Thankyou Music.","Chris Falson","","", -"Your love, O Lord,","","Peggy Caswell. * Copyright © 1990 Sound Truth Publishing/ Kingsway's Thankyou Music.","Peggy Caswell","","", -"Your love, shining like the sun","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","","", -"Your mercy flows","","Wes Sutton. * Copyright © 1988 Sovereign Lifestyle Music.","Wes Sutton","","", -"Your name is love","","Greg Shepherd * Copyright © 2000 Thankyou Music","Greg Shepherd","","", -"Your name is peace","","David Wellington. * Copyright © 1994 Kingsway's Thankyou Music.","David Wellington","","", -"Your voice is like thunder,","","Paul Oakley. * Copyright © 1997 Kingsway's Thankyou Music.","Paul Oakley","","", -"Your voice is the voice","","Vicky Beeching * Copyright © 2001 Vineyard Songs (UK/Eire)/Adm. by CopyCare","Vicky Beeching","","", -"Your whisper to my soul","","Brian Houston * Copyright © 2000 Thankyou Music","Brian Houston","","", -"Your will, not mine,","","Dougie Brown. * Copyright © 1991 Sovereign Lifestyle Music.","Dougie Brown","","", -"Your works, Lord,","","Andy Park. * Copyright © 1987 Mercy/Vineyard Publishing/Adm. by CopyCare.","Andy Park","","", -"You're amazing,","","Carol Mundy. * Copyright © 1993 Kingsway's Thankyou Music.","Carol Mundy","","", -"You're the Lion of Judah,","","Robin Mark. * Copyright © 1993 Daybreak Music Ltd.","Robin Mark","","", -"You're the one who gave His Son","","Johnny Parks * Copyright © 2001 Thankyou Music","Johnny Parks","","", -"You're the word of God the Father","","Stuart Townend & Keith Getty * Copyright © 2002 Thankyou Music","Stuart Townend | Keith Getty","","", -"Yours is the kingdom","","Dave Bilbrough * Copyright © 2002 Thankyou Music","Dave Bilbrough","","", -"You've placed a hunger in my heart","","Stuart Townend * Copyright © 1999 Thankyou Music","Stuart Townend","","", -"You've placed a song within my heart","","Lara Martin (Abundant Life Ministries, Bradford, England) * Copyright © 2002 Thankyou Music","Lara Martin (Abundant Life Ministries | Bradford | England)","","", -"You've put a new song in my mouth","","Matt Redman * Copyright © 2000 Thankyou Music","Matt Redman","","", -"You've touched my heart","","Neil Bennetts * Copyright © 2002 Thankyou Music","Neil Bennetts","","", -"Hallelujah! sing to Jesus;","","William C. Dix. *","William C. Dix","","", -"Hands, hands, fingers, thumbs,","","Doug Horley. * Copyright © 1996 Kingsway's Thankyou Music.","Doug Horley","","", -"Hark the glad sound!","","Philip Doddridge, altd. *","Philip Doddridge | altd","","", -"Hark! the herald angels sing:","","Charles Wesley, altd. *","Charles Wesley | altd","","", -"Have I not been faithful","","Brian Houston * Copyright © 2002 Thankyou Music","Brian Houston","","", -"Have thine own way, Lord,","","A. A. Pollard. * Copyright © HarperCollins Religious/Adm. by CopyCare","A. A. Pollard","","", -"Have we forgotten","","Andy Ferrett * Copyright © 1999 Thankyou Music","Andy Ferrett","","", -"Have You got an appetite?","","Mick Gisbey. * Copyright © 1985 Kingsway's Thankyou Music.","Mick Gisbey","","", -"Have You heard the good news?","","Stuart Garrard. * Copyright © 1995 Curious? Music UK/ Adm. Kingsway's Thankyou Music.","Stuart Garrard","","", -"Have You not said","","Matt Redman. * Copyright © 1995 Kingsway's Thankyou Music.","Matt Redman","","", -"He brought me to His banqueting table,","","Kevin Prosch. * Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Kevin Prosch","","", -"He came to earth,","","John Pantry. * Copyright © 1990 Kingsway's Thankyou Music.","John Pantry","","", -"He died for my sake","","Dave Bilbrough * Copyright © 2002 Thankyou Music","Dave Bilbrough","","", -"He gave me beauty","","Robert Whitney Manzano. * Copyright © 1984 Kingsway's Thankyou Music.","Robert Whitney Manzano","","", -"He has been given","","David Fellingham. * Copyright © 1992 Kingsway's Thankyou Music.","David Fellingham","","", -"He has clothed us with His righteousness,","","Steve & Vikki Cook. * Copyright © 1990 Integrity's Hosanna Music!/ People of Destiny Int./Adm. by Kingsway's Thankyou Music.","Steve Cook | Vikki Cook","","", -"He has risen,","","Gerald Coates, Noel & Tricia Richards. * Copyright © 1993 Kingsway's Thankyou Music.","Gerald Coates | Noel Richards | Tricia Richards","","", -"He holds the key","","Joan Parsons. * Copyright © 1978 Kingsway's Thankyou Music.","Joan Parsons","","", -"He is exalted,","","Twila Paris. * Copyright © 1985 Straightway Music/ Mountain Spring/EMIChristian Music Publishing/Adm. by CopyCare.","Twila Paris","","", -"He is Holy, Holy, Holy,","","Ken Riley * Copyright © 1999 Thankyou Music","Ken Riley","","", -"He is Lord,","","Author unknown. *","Author unknown","","", -"He is lovely,","","Bob Fitts. * Copyright © 1986 C A Music/Music Services/ CopyCare.","Bob Fitts","","", -"He is our peace,","","Kandela Groves. * Copyright © 1985 Maranatha! Music/ Adm. by CopyCare.","Kandela Groves","","", -"He is the Lord,","","Kevin Prosch. * Copyright © 1991 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Kevin Prosch","","", -"He made the earth,","","Gill Broomhall. * Copyright © 1988 Coronation Music Publishing/ Kingsway's Thankyou Music.","Gill Broomhall","","", -"He once was dead, but now He lives","","David Lyle Morris & Nick Wynne-Jones * Copyright © 2001 Thankyou Music","David Lyle Morris | Nick Wynne-Jones","","", -"He picked me up","","Dave Bilbrough. * Copyright © 1996 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"He reigns,","","Rick Ridings. * Copyright © 1990 Ariose Music/EMI Christian Music Publishing/Adm. by CopyCare.","Rick Ridings","","", -"He shall reign","","John Watson & Stuart Townend. * Copyright © 1991 Ampelos Music/ Adm. by CopyCare./Kingsway's Thankyou Music","John Watson | Stuart Townend","","", -"He that is in us","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","","", -"He walked where I walk,","","Graham Kendrick. * Copyright © 1988 Make Way Music.","Graham Kendrick","","", -"He was pierced","","Maggi Dawn. * Copyright © 1987 Kingsway's Thankyou Music.","Maggi Dawn","","", -"He who would valiant be","","John Bunyan. *","John Bunyan","","", -"Healing grace,","","Dave Bilbrough. * Copyright © 1990 Kingsway's Thankyou Music.","Dave Bilbrough","","", -"Hear all creation","","Margaret Becker & Keith Getty * Copyright © 2001 Modern M. Music/Music Services/Adm. by CopyCare/ & Thankyou Music","Margaret Becker | Keith Getty","","", -"Hear my confession","","Brian Houston * Copyright © 2002 Thankyou Music","Brian Houston","","", -"Hear my mouth speak","","Gareth Robinson * Copyright © 2002 Thankyou Music","Gareth Robinson","","", -"Hear my prayer, O Lord","","Debbie Owens * Copyright © 1993 Maranatha! Praise Inc./Adm. by CopyCare","Debbie Owens","","", -"Hear, O Lord, our cry,","","Graham Kendrick. * Copyright © 1989 Make Way Music.","Graham Kendrick","","", -"Hear, O Shepherd","","David Fellingham. * Copyright © 1988 Kingsway's Thankyou Music.","David Fellingham","","", -"Hear our cry","","Dave Bilbrough * Copyright © 1999 Thankyou Music","Dave Bilbrough","","", -"Hear our prayer,","","Don Moen * Copyright © 2000 Integrity's Hosanna! Music/ Sovereign Music UK","Don Moen","","", -"Hear our prayers","","Gareth Robinson & Joannah Oyeniran * Copyright © 2002 Thankyou Music","Gareth Robinson | Joannah Oyeniran","","", -"Hear these praises from a grateful heart,","","Russell Fragar. * Copyright © 1996 Russell Fragar/Hillsongs Australia/Kingsway's Thankyou Music.","Russell Fragar","","", -"Heaven opened","","Ken Riley * Copyright © 2001 Thankyou Music","Ken Riley","","", -"Heavenly Father, I appreciate You.","","Author unknown. *","Author unknown","","", -"Here am I, a sinner free","","Matt Redman * Copyright © 1993 Thankyou Music","Matt Redman","","", -"Here I am, O God","","Andrew Ulugia * Copyright © 2001 Parachute Music New Zealand/ Adm. by Kingsway Music","Andrew Ulugia","","", -"Here I am once again,","","Craig Musseau. * Copyright © 1994 Mercy/Vineyard Publishing/ Adm. by CopyCare.","Craig Musseau","","", -"Here I am waiting","","Reuben Morgan * Copyright © 1998 Reuben Morgan/Hillsong Publishing/Kingsway Music","Reuben Morgan","","", -"Here I am, and I have come","","Paul Oakley. * Copyright © 1997 Kingsway's Thankyou Music.","Paul Oakley","","", -"Here I am, wholly available","","Chris Bowater. * Copyright © 1981 Sovereign Lifestyle Music.","Chris Bowater","","", -"Here I stand","","James Gregory * Copyright © 2000 Thankyou Music","James Gregory","","", -"Here I wait beneath the cross","","Tim Sherrington * Copyright © 2000 Thankyou Music","Tim Sherrington","","", -"Here in the presence","","Chris Bowater. * Copyright © 1996 Sovereign Lifestyle Music.","Chris Bowater","","", -"Here in Your arms","","Ken Riley * Copyright © 1999 Thankyou Music","Ken Riley","","", -"Here is bread,","","Graham Kendrick. * Copyright © 1991 Make Way Music.","Graham Kendrick","","", -"Here is love vast as the ocean (extra verse);;","","William Rees. *","William Rees","SOF #168","", -"Here is the risen Son,","","Michael Sandeman. * Copyright © 1997 Kingsway's Thankyou Music.","Michael Sandeman","","", -"Here we are, Lord,","","Noel & Tricia Richards & Gerald Coates. * Copyright © 1996 Kingsway's Thankyou Music.","Noel Richards | Tricia Richards | Gerald Coates","","", -"Here we are, gathered","","Steve Hampton. * Copyright © 1978 Scripture in Song, a division of Integrity Music/Adm. by Kingsway's Thankyou Music","Steve Hampton","","", -"Here we stand in total surrender,","","Charlie Groves and Andy Piercy. * Copyright © 1995 IQ Music.","Charlie Groves and Andy Piercy","","", -"Hey Lord, O Lord","","Kevin Prosch * Copyright © 1996 Kevin Prosch/Adm. by Kingsway Music","Kevin Prosch","","", -"Higher, higher,","","Issac Balinda. * Copyright © 1990 Integrity's Hosanna! Music/Adm. by Kingsway's Thankyou Music.","Issac Balinda","","", -"His love is higher","","David Ruis. * Copyright © 1993 Mercy/Vineyard Publishing/ Adm. by CopyCare.","David Ruis","","", -"His name is higher","","Author unknown. *","Author unknown","","", -"His name is wonderful,","","Audrey Mieir. * Copyright © 1959/1987 Manna Music Inc/ Kingsway's Thankyou Music.","Audrey Mieir","","", -"His voice is the sea","","Bill Anderson. * Copyright © 1985 Kingsway's Thankyou Music.","Bill Anderson","","", -"Once In Royal David's City","","","Cecil F. Alexander","","", -"Bless the Lord O my Soul (10,000 reasons);;","10,000 Reasons","2011 Thankyou Music","Jonas Martin | Matt Redman","SH12 #11","", -"Blessed be Your name;;","","Matt & Beth Redman * Copyright © 2002 Thankyou Music","Matt Redman | Beth Redman","SOF #1193","", -"We believe in God the father;","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","SOF #572","", -"To Him who is able to keep me from falling;","","Copyright © 2009 Thankyou Music & Paintbrush Music/","Lou and Nathan Fellingham and Gary Sadler","SH11 #82","", -"Christ before me","","2001 Daybreak music","Mike Burn","","", -"Come Thou Fount","","Public Domain","Robert Robinson | John Wyeth","","Spiritual Hunger", -"Down into darkness;;+","","2009 Thankyou Music","Lou and Nathan Fellingham | Gary Sadler","","", -"Give to our God Immortal Praise","","","Isaac Watts","","", -"God is love","","","Author Unknown","","", -"How Firm A Foundation","","Public Domain","Rippon's "Selection of Hymns" (1787)","","Care | Guidance", -"I Have Decided To Follow Jesus","","","Folk Melody","","Commitment | Declaration | Obedience", -"It Is Well With My Soul","","Public Domain","Horatio Spafford and Philip Bliss","","Assurance | Comfort | Peace | Trust", -"Jesus, thou joy of loving hearts","","","Bernard of Clervaux","","", -"Leaning On The Everlasting Arms","","","Elisha A. Hoffman | Anthony J. Showalter","","Care | Guidance | Promises", -"Mr Noah built an ark","","","Author Unknown","","", -"My hope is built on nothing less","","","Edward Mote","","", -"Our God is a great big God","","","Jo Hemming | Nigel Hemming","","", -"Since I Have Been Redeemed","","","Edwin O. Excell","","Repentance | Salvation", -"Standing On The Promises","","Public Domain","By R. Kelso Carter (1849-1926)","","Assurance | Trust | Promises", -"This little light of mine","","","Author Unknown","","", -"We three kings from orient are","","","John Henry Hopkins","","", -"When We All Get To Heaven","","Public Domain","Eliza E. Hewitt | Emily D. Wilson","","Celebration | Eternal Life | Heaven", -"You are my all in all","","1991 Sheoherd's Heart Music","Dennis Jemigan","","", -"This is amazing grace;","","2012 Bethel Music; Phil Wickham Music; WB Music Corp","Josh Faro | Jeremy Riddle | Phil Wickham","Special #3","", -"Man of sorrows Lamb of God;","","Hillsong","Brook Ligertwood | Matt Crocker","Special #2","", -"Holy Spirit You are welcome here;","","2011 Capitol CMG Genesis and Jesus Culture Music","Kim Walker-Smith","Special #4","", -"We believe in God the father","","Graham Kendrick. * Copyright © 1986 Kingsway's Thankyou Music.","Graham Kendrick","SOF #572","", -"My hope is built on nothing less;;","Cornerstone;","","Edward Mote | Erid Liljero | Jonas Myrin | Reuben Morgan","Special #5","", -"Holy Spirit You are welcome here;","There's nothing worth more","","Katie Torwalt | Bryan Torwalt","Special #6","", -"Make us one, as you are one;","","","unknown","Special #7","", -"One thing remains (Your love never fails);","Higher than the mountain that I face","2010 Bethel Music; Mercy/Vineyard Publishing; ChristaJoy Music Publishing","Brian Johnson | Christa Black | Jeremy Riddle","Special #8","", -"Oceans – Where feet may fail (You call me out)","You call me out upon the waters","© Hillsong United","Hillsong United","","", -"We stand and lift up our hands","","2003 kingswaysongs.com","C Tomlin | L Giglio","","", -"Strength will rise as we wait","","2005 Thank You Music","Brenton Brown | Ken Riley","","", -"I Will Worship","","Shadetree Music (1993)","D Ruis","","", -"The Splendour of the King","","© 2004 Kingsway/Sixsteps Music","Chris Tomlin | Jesse Reeves | Ed Cash","","", -"Jesus Lover Of My Soul","","Kingsway/Thankyou Music 1995","P Oakley","","", -"When The Music Fades","","1997 Kingsway Music","Matt Redman","","", -"This Is My Desire","","1991 Kingsway Thankyou Music","Reuben Morgan","","", -"To God be the glory","","W Doane 1832-1916","W Doane","","", -"Spirit break out","","None","Luke Helebronth","","", From 8f94d10c8d925df274d7dec35d24fcbacac20b33 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Thu, 8 Sep 2016 06:06:36 +0100 Subject: [PATCH 4/8] add tests --- openlp/plugins/songs/songsplugin.py | 6 +- .../openlp_core_ui/test_servicemanager.py | 70 +++++++++++++++++++ 2 files changed, 73 insertions(+), 3 deletions(-) diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index b8c1e0d6f..dc3fb58b5 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -169,7 +169,7 @@ class SongsPlugin(Plugin): triggers=self.on_tools_find_duplicates_triggered, can_shortcuts=True) self.tools_report_song_list = create_action( tools_menu, 'ReportSongList', - text=translate('SongsPlugin', 'Export List on Songs'), + text=translate('SongsPlugin', 'Export List of Songs'), statustip=translate('SongsPlugin', 'Produce a CSV file of all the songs in the database.'), triggers=self.on_tools_report_song_list_triggered) @@ -345,13 +345,13 @@ class SongsPlugin(Plugin): self.manager.finalise() self.song_import_item.setVisible(False) self.song_export_item.setVisible(False) - self.tools_reindex_item.setVisible(False) - self.tools_find_duplicates.setVisible(False) action_list = ActionList.get_instance() action_list.remove_action(self.song_import_item, UiStrings().Import) action_list.remove_action(self.song_export_item, UiStrings().Export) action_list.remove_action(self.tools_reindex_item, UiStrings().Tools) action_list.remove_action(self.tools_find_duplicates, UiStrings().Tools) + action_list.add_action(self.tools_report_song_list, UiStrings().Tools) + self.song_tools_menu.menuAction().setVisible(False) super(SongsPlugin, self).finalise() def new_service_created(self): diff --git a/tests/functional/openlp_core_ui/test_servicemanager.py b/tests/functional/openlp_core_ui/test_servicemanager.py index 3e4af8c97..9b80134f9 100644 --- a/tests/functional/openlp_core_ui/test_servicemanager.py +++ b/tests/functional/openlp_core_ui/test_servicemanager.py @@ -28,6 +28,7 @@ from unittest import TestCase import PyQt5 from openlp.core.common import Registry, ThemeLevel +from openlp.core.ui.lib.toolbar import OpenLPToolbar from openlp.core.lib import ServiceItem, ServiceItemType, ItemCapabilities from openlp.core.ui import ServiceManager @@ -679,3 +680,72 @@ class TestServiceManager(TestCase): # THEN: The "save_as" method is called to save the service self.assertTrue(result) mocked_save_file_as.assert_called_with() + + @patch(u'openlp.core.ui.servicemanager.ServiceManager.regenerate_service_items') + def test_theme_change_global(self, mocked_regenerate_service_items): + """ + Test that when a Toolbar theme combobox displays correctly + """ + + # GIVEN: A service manager, a service to save with a theme level of the renderer + mocked_renderer = MagicMock() + service_manager = ServiceManager(None) + Registry().register('renderer', mocked_renderer) + service_manager.toolbar = OpenLPToolbar(None) + service_manager.toolbar.add_toolbar_action('theme_combo_box', triggers=MagicMock()) + service_manager.toolbar.add_toolbar_action('theme_label', triggers=MagicMock()) + + # WHEN: The service manager has a Global theme + mocked_renderer.theme_level = ThemeLevel.Global + result = service_manager.theme_change() + + # THEN: The the theme toolbar should not be visible + + self.assertFalse(service_manager.toolbar.actions['theme_combo_box'].isVisible(), + 'The visibility should be False') + + @patch(u'openlp.core.ui.servicemanager.ServiceManager.regenerate_service_items') + def test_theme_change_service(self, mocked_regenerate_service_items): + """ + Test that when a Toolbar theme combobox displays correctly + """ + + # GIVEN: A service manager, a service to save with a theme level of the renderer + mocked_renderer = MagicMock() + service_manager = ServiceManager(None) + Registry().register('renderer', mocked_renderer) + service_manager.toolbar = OpenLPToolbar(None) + service_manager.toolbar.add_toolbar_action('theme_combo_box', triggers=MagicMock()) + service_manager.toolbar.add_toolbar_action('theme_label', triggers=MagicMock()) + + # WHEN: The service manager has a Global theme + mocked_renderer.theme_level = ThemeLevel.Service + result = service_manager.theme_change() + + # THEN: The the theme toolbar should not be visible + + self.assertTrue(service_manager.toolbar.actions['theme_combo_box'].isVisible(), + 'The visibility should be True') + + @patch(u'openlp.core.ui.servicemanager.ServiceManager.regenerate_service_items') + def test_theme_change_song(self, mocked_regenerate_service_items): + """ + Test that when a Toolbar theme combobox displays correctly + """ + + # GIVEN: A service manager, a service to save with a theme level of the renderer + mocked_renderer = MagicMock() + service_manager = ServiceManager(None) + Registry().register('renderer', mocked_renderer) + service_manager.toolbar = OpenLPToolbar(None) + service_manager.toolbar.add_toolbar_action('theme_combo_box', triggers=MagicMock()) + service_manager.toolbar.add_toolbar_action('theme_label', triggers=MagicMock()) + + # WHEN: The service manager has a Global theme + mocked_renderer.theme_level = ThemeLevel.Song + result = service_manager.theme_change() + + # THEN: The the theme toolbar should not be visible + + self.assertTrue(service_manager.toolbar.actions['theme_combo_box'].isVisible(), + 'The visibility should be True') From c8dad716cc544b839d2cc9ee9e290aec1e0272f5 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Mon, 19 Sep 2016 19:51:48 +0100 Subject: [PATCH 5/8] Review Comments --- openlp/core/common/settings.py | 2 +- openlp/plugins/songs/reporting.py | 40 ++++++------ openlp/plugins/songs/songsplugin.py | 6 +- .../openlp_core_ui/test_servicemanager.py | 64 +++++++++---------- 4 files changed, 54 insertions(+), 58 deletions(-) diff --git a/openlp/core/common/settings.py b/openlp/core/common/settings.py index f92bf1e57..e0c0708ce 100644 --- a/openlp/core/common/settings.py +++ b/openlp/core/common/settings.py @@ -379,7 +379,7 @@ class Settings(QtCore.QSettings): 'shortcuts/themeScreen': [QtGui.QKeySequence(QtCore.Qt.Key_T)], 'shortcuts/toolsReindexItem': [], 'shortcuts/toolsFindDuplicates': [], - 'shortcuts/ReportSongList': [], + 'shortcuts/toolsSongListReport': [], 'shortcuts/toolsAlertItem': [QtGui.QKeySequence(QtCore.Qt.Key_F7)], 'shortcuts/toolsFirstTimeWizard': [], 'shortcuts/toolsOpenDataFolder': [], diff --git a/openlp/plugins/songs/reporting.py b/openlp/plugins/songs/reporting.py index 4373abe09..fb9a6a6a8 100644 --- a/openlp/plugins/songs/reporting.py +++ b/openlp/plugins/songs/reporting.py @@ -22,12 +22,12 @@ """ The :mod:`db` module provides the ability to provide a csv file of all songs """ +import csv import logging -import os from PyQt5 import QtWidgets -from openlp.core.common import Registry, check_directory_exists, translate +from openlp.core.common import Registry, translate from openlp.core.lib.ui import critical_error_message_box from openlp.plugins.songs.lib.db import Song @@ -42,45 +42,47 @@ def report_song_list(): """ main_window = Registry().get('main_window') plugin = Registry().get('songs').plugin - path = QtWidgets.QFileDialog.getExistingDirectory( + report_file_name, filter_used = QtWidgets.QFileDialog.getSaveFileName( main_window, translate('SongPlugin.ReportSongList', 'Output File Location')) - if not path: + if not report_file_name: main_window.error_message( translate('SongPlugin.ReportSongList', 'Output Path Not Selected'), - translate('SongPlugin.ReportSongList', 'You have not set a valid output location for your' + translate('SongPlugin.ReportSongList', 'You have not set a valid output location for your ' 'report. \nPlease select an existing path ' 'on your computer.') ) return - check_directory_exists(path) - report_file_name = os.path.join(path, 'song_index.csv') + if not report_file_name.endswith('csv'): + report_file_name += '.csv' file_handle = None try: - file_handle = open(report_file_name, 'wb') + file_handle = open(report_file_name, 'wt') + fieldnames = ('Title', 'Alternative Title', 'Copyright', 'Author(s)', 'Song Book', 'Topic') + writer = csv.DictWriter(file_handle, fieldnames=fieldnames, quoting=csv.QUOTE_ALL) + headers = dict((n, n) for n in fieldnames) + writer.writerow(headers) song_list = plugin.manager.get_all_objects(Song) for song in song_list: - record = '\"{title}\",'.format(title=song.title) - record += '\"{title}\",'.format(title=song.alternate_title) - record += '\"{title}\",'.format(title=song.copyright) author_list = [] for author_song in song.authors_songs: author_list.append(author_song.author.display_name) - author_string = '\"{name}\"'.format(name=' | '.join(author_list)) + author_string = '{name}'.format(name=' | '.join(author_list)) book_list = [] for book_song in song.songbook_entries: if hasattr(book_song, 'entry') and book_song.entry: book_list.append('{name} #{entry}'.format(name=book_song.songbook.name, entry=book_song.entry)) - book_string = '\"{name}\"'.format(name=' | '.join(book_list)) + book_string = '{name}'.format(name=' | '.join(book_list)) topic_list = [] for topic_song in song.topics: if hasattr(topic_song, 'name'): topic_list.append(topic_song.name) - topic_string = '\"{name}\"'.format(name=' | '.join(topic_list)) - record += '{title},'.format(title=author_string) - record += '{title},'.format(title=book_string) - record += '{title},'.format(title=topic_string) - record += '\n' - file_handle.write(record.encode('utf-8')) + topic_string = '{name}'.format(name=' | '.join(topic_list)) + writer.writerow({'Title': song.title, + 'Alternative Title': song.alternate_title, + 'Copyright': song.copyright, + 'Author(s)': author_string, + 'Song Book': book_string, + 'Topic': topic_string}) main_window.information_message( translate('SongPlugin.ReportSongList', 'Report Creation'), translate('SongPlugin.ReportSongList', diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index dc3fb58b5..d7eca6b3d 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -155,7 +155,7 @@ class SongsPlugin(Plugin): self.tools_menu = tools_menu self.song_tools_menu = QtWidgets.QMenu(tools_menu) self.song_tools_menu.setObjectName('song_tools_menu') - self.song_tools_menu.setTitle(translate('SongsPlugin', 'Song Tools')) + self.song_tools_menu.setTitle(translate('SongsPlugin', 'Songs')) self.tools_reindex_item = create_action( tools_menu, 'toolsReindexItem', text=translate('SongsPlugin', '&Re-index Songs'), @@ -168,8 +168,8 @@ class SongsPlugin(Plugin): statustip=translate('SongsPlugin', 'Find and remove duplicate songs in the song database.'), triggers=self.on_tools_find_duplicates_triggered, can_shortcuts=True) self.tools_report_song_list = create_action( - tools_menu, 'ReportSongList', - text=translate('SongsPlugin', 'Export List of Songs'), + tools_menu, 'toolsSongListReport', + text=translate('SongsPlugin', 'Song List Report'), statustip=translate('SongsPlugin', 'Produce a CSV file of all the songs in the database.'), triggers=self.on_tools_report_song_list_triggered) diff --git a/tests/functional/openlp_core_ui/test_servicemanager.py b/tests/functional/openlp_core_ui/test_servicemanager.py index 9b80134f9..e0366c7d2 100644 --- a/tests/functional/openlp_core_ui/test_servicemanager.py +++ b/tests/functional/openlp_core_ui/test_servicemanager.py @@ -545,8 +545,8 @@ class TestServiceManager(TestCase): self.assertEqual(service_manager.theme_menu.menuAction().setVisible.call_count, 1, 'Should have be called once') - @patch(u'openlp.core.ui.servicemanager.Settings') - @patch(u'PyQt5.QtCore.QTimer.singleShot') + @patch('openlp.core.ui.servicemanager.Settings') + @patch('PyQt5.QtCore.QTimer.singleShot') def test_single_click_preview_true(self, mocked_singleShot, MockedSettings): """ Test that when "Preview items when clicked in Service Manager" enabled the preview timer starts @@ -562,8 +562,8 @@ class TestServiceManager(TestCase): mocked_singleShot.assert_called_with(PyQt5.QtWidgets.QApplication.instance().doubleClickInterval(), service_manager.on_single_click_preview_timeout) - @patch(u'openlp.core.ui.servicemanager.Settings') - @patch(u'PyQt5.QtCore.QTimer.singleShot') + @patch('openlp.core.ui.servicemanager.Settings') + @patch('PyQt5.QtCore.QTimer.singleShot') def test_single_click_preview_false(self, mocked_singleShot, MockedSettings): """ Test that when "Preview items when clicked in Service Manager" disabled the preview timer doesn't start @@ -578,9 +578,9 @@ class TestServiceManager(TestCase): # THEN: timer should not be started self.assertEqual(mocked_singleShot.call_count, 0, 'Should not be called') - @patch(u'openlp.core.ui.servicemanager.Settings') - @patch(u'PyQt5.QtCore.QTimer.singleShot') - @patch(u'openlp.core.ui.servicemanager.ServiceManager.make_live') + @patch('openlp.core.ui.servicemanager.Settings') + @patch('PyQt5.QtCore.QTimer.singleShot') + @patch('openlp.core.ui.servicemanager.ServiceManager.make_live') def test_single_click_preview_double(self, mocked_make_live, mocked_singleShot, MockedSettings): """ Test that when a double click has registered the preview timer doesn't start @@ -597,7 +597,7 @@ class TestServiceManager(TestCase): mocked_make_live.assert_called_with() self.assertEqual(mocked_singleShot.call_count, 0, 'Should not be called') - @patch(u'openlp.core.ui.servicemanager.ServiceManager.make_preview') + @patch('openlp.core.ui.servicemanager.ServiceManager.make_preview') def test_single_click_timeout_single(self, mocked_make_preview): """ Test that when a single click has been registered, the item is sent to preview @@ -610,8 +610,8 @@ class TestServiceManager(TestCase): self.assertEqual(mocked_make_preview.call_count, 1, 'ServiceManager.make_preview() should have been called once') - @patch(u'openlp.core.ui.servicemanager.ServiceManager.make_preview') - @patch(u'openlp.core.ui.servicemanager.ServiceManager.make_live') + @patch('openlp.core.ui.servicemanager.ServiceManager.make_preview') + @patch('openlp.core.ui.servicemanager.ServiceManager.make_live') def test_single_click_timeout_double(self, mocked_make_live, mocked_make_preview): """ Test that when a double click has been registered, the item does not goes to preview @@ -624,9 +624,9 @@ class TestServiceManager(TestCase): # THEN: make_preview() should not have been called self.assertEqual(mocked_make_preview.call_count, 0, 'ServiceManager.make_preview() should not be called') - @patch(u'openlp.core.ui.servicemanager.shutil.copy') - @patch(u'openlp.core.ui.servicemanager.zipfile') - @patch(u'openlp.core.ui.servicemanager.ServiceManager.save_file_as') + @patch('openlp.core.ui.servicemanager.shutil.copy') + @patch('openlp.core.ui.servicemanager.zipfile') + @patch('openlp.core.ui.servicemanager.ServiceManager.save_file_as') def test_save_file_raises_permission_error(self, mocked_save_file_as, mocked_zipfile, mocked_shutil_copy): """ Test that when a PermissionError is raised when trying to save a file, it is handled correctly @@ -653,9 +653,9 @@ class TestServiceManager(TestCase): self.assertTrue(result) mocked_save_file_as.assert_called_with() - @patch(u'openlp.core.ui.servicemanager.shutil.copy') - @patch(u'openlp.core.ui.servicemanager.zipfile') - @patch(u'openlp.core.ui.servicemanager.ServiceManager.save_file_as') + @patch('openlp.core.ui.servicemanager.shutil.copy') + @patch('openlp.core.ui.servicemanager.zipfile') + @patch('openlp.core.ui.servicemanager.ServiceManager.save_file_as') def test_save_local_file_raises_permission_error(self, mocked_save_file_as, mocked_zipfile, mocked_shutil_copy): """ Test that when a PermissionError is raised when trying to save a local file, it is handled correctly @@ -681,13 +681,12 @@ class TestServiceManager(TestCase): self.assertTrue(result) mocked_save_file_as.assert_called_with() - @patch(u'openlp.core.ui.servicemanager.ServiceManager.regenerate_service_items') + @patch('openlp.core.ui.servicemanager.ServiceManager.regenerate_service_items') def test_theme_change_global(self, mocked_regenerate_service_items): """ - Test that when a Toolbar theme combobox displays correctly + Test that when a Toolbar theme combobox displays correctly when the theme is set to Global """ - - # GIVEN: A service manager, a service to save with a theme level of the renderer + # GIVEN: A service manager, a service to display with a theme level in the renderer mocked_renderer = MagicMock() service_manager = ServiceManager(None) Registry().register('renderer', mocked_renderer) @@ -700,17 +699,15 @@ class TestServiceManager(TestCase): result = service_manager.theme_change() # THEN: The the theme toolbar should not be visible - self.assertFalse(service_manager.toolbar.actions['theme_combo_box'].isVisible(), 'The visibility should be False') - @patch(u'openlp.core.ui.servicemanager.ServiceManager.regenerate_service_items') + @patch('openlp.core.ui.servicemanager.ServiceManager.regenerate_service_items') def test_theme_change_service(self, mocked_regenerate_service_items): """ - Test that when a Toolbar theme combobox displays correctly + Test that when a Toolbar theme combobox displays correctly when the theme is set to Theme """ - - # GIVEN: A service manager, a service to save with a theme level of the renderer + # GIVEN: A service manager, a service to display with a theme level in the renderer mocked_renderer = MagicMock() service_manager = ServiceManager(None) Registry().register('renderer', mocked_renderer) @@ -718,22 +715,20 @@ class TestServiceManager(TestCase): service_manager.toolbar.add_toolbar_action('theme_combo_box', triggers=MagicMock()) service_manager.toolbar.add_toolbar_action('theme_label', triggers=MagicMock()) - # WHEN: The service manager has a Global theme + # WHEN: The service manager has a Service theme mocked_renderer.theme_level = ThemeLevel.Service result = service_manager.theme_change() - # THEN: The the theme toolbar should not be visible - + # THEN: The the theme toolbar should be visible self.assertTrue(service_manager.toolbar.actions['theme_combo_box'].isVisible(), 'The visibility should be True') - @patch(u'openlp.core.ui.servicemanager.ServiceManager.regenerate_service_items') + @patch('openlp.core.ui.servicemanager.ServiceManager.regenerate_service_items') def test_theme_change_song(self, mocked_regenerate_service_items): """ - Test that when a Toolbar theme combobox displays correctly + Test that when a Toolbar theme combobox displays correctly when the theme is set to Song """ - - # GIVEN: A service manager, a service to save with a theme level of the renderer + # GIVEN: A service manager, a service to display with a theme level in the renderer mocked_renderer = MagicMock() service_manager = ServiceManager(None) Registry().register('renderer', mocked_renderer) @@ -741,11 +736,10 @@ class TestServiceManager(TestCase): service_manager.toolbar.add_toolbar_action('theme_combo_box', triggers=MagicMock()) service_manager.toolbar.add_toolbar_action('theme_label', triggers=MagicMock()) - # WHEN: The service manager has a Global theme + # WHEN: The service manager has a Song theme mocked_renderer.theme_level = ThemeLevel.Song result = service_manager.theme_change() - # THEN: The the theme toolbar should not be visible - + # THEN: The the theme toolbar should be visible self.assertTrue(service_manager.toolbar.actions['theme_combo_box'].isVisible(), 'The visibility should be True') From 6586104f6ed4c6004b4e4cba077d96dbcf16309c Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Wed, 21 Sep 2016 20:04:02 +0100 Subject: [PATCH 6/8] minor updates --- openlp/plugins/songs/reporting.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/openlp/plugins/songs/reporting.py b/openlp/plugins/songs/reporting.py index fb9a6a6a8..94619014d 100644 --- a/openlp/plugins/songs/reporting.py +++ b/openlp/plugins/songs/reporting.py @@ -55,6 +55,7 @@ def report_song_list(): if not report_file_name.endswith('csv'): report_file_name += '.csv' file_handle = None + Registry().get('application').set_busy_cursor() try: file_handle = open(report_file_name, 'wt') fieldnames = ('Title', 'Alternative Title', 'Copyright', 'Author(s)', 'Song Book', 'Topic') @@ -66,29 +67,31 @@ def report_song_list(): author_list = [] for author_song in song.authors_songs: author_list.append(author_song.author.display_name) - author_string = '{name}'.format(name=' | '.join(author_list)) + author_string = ' | '.join(author_list) book_list = [] for book_song in song.songbook_entries: if hasattr(book_song, 'entry') and book_song.entry: book_list.append('{name} #{entry}'.format(name=book_song.songbook.name, entry=book_song.entry)) - book_string = '{name}'.format(name=' | '.join(book_list)) + book_string = ' | '.join(book_list) topic_list = [] for topic_song in song.topics: if hasattr(topic_song, 'name'): topic_list.append(topic_song.name) - topic_string = '{name}'.format(name=' | '.join(topic_list)) + topic_string = ' | '.join(topic_list) writer.writerow({'Title': song.title, 'Alternative Title': song.alternate_title, 'Copyright': song.copyright, 'Author(s)': author_string, 'Song Book': book_string, 'Topic': topic_string}) + Registry().get('application').set_normal_cursor() main_window.information_message( translate('SongPlugin.ReportSongList', 'Report Creation'), translate('SongPlugin.ReportSongList', 'Report \n{name} \nhas been successfully created. ').format(name=report_file_name) ) except OSError as ose: + Registry().get('application').set_normal_cursor() log.exception('Failed to write out song usage records') critical_error_message_box(translate('SongPlugin.ReportSongList', 'Song Extraction Failed'), translate('SongPlugin.ReportSongList', From 885d70307e97b90d289dea11538832cbab2b379b Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Tue, 25 Oct 2016 21:34:48 +0100 Subject: [PATCH 7/8] Fix song bug with formatting --- openlp/plugins/songs/lib/openlyricsxml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/songs/lib/openlyricsxml.py b/openlp/plugins/songs/lib/openlyricsxml.py index b4b7651af..52b57302f 100644 --- a/openlp/plugins/songs/lib/openlyricsxml.py +++ b/openlp/plugins/songs/lib/openlyricsxml.py @@ -458,7 +458,7 @@ class OpenLyrics(object): self._add_tag_to_formatting(tag, tags_element) # Replace end tags. for tag in end_tags: - text = text.replace('{{{tag}}}'.format(tag=tag), '') + text = text.replace('{{/{tag}}}'.format(tag=tag), '') # Replace \n with
. text = text.replace('\n', '
') element = etree.XML('{text}'.format(text=text)) From f56a86f377b0653c82515c94e0ead559cc39ab7a Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Wed, 26 Oct 2016 19:02:57 +0100 Subject: [PATCH 8/8] Fix titles --- openlp/plugins/songs/reporting.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/openlp/plugins/songs/reporting.py b/openlp/plugins/songs/reporting.py index 94619014d..98b6713fe 100644 --- a/openlp/plugins/songs/reporting.py +++ b/openlp/plugins/songs/reporting.py @@ -43,7 +43,11 @@ def report_song_list(): main_window = Registry().get('main_window') plugin = Registry().get('songs').plugin report_file_name, filter_used = QtWidgets.QFileDialog.getSaveFileName( - main_window, translate('SongPlugin.ReportSongList', 'Output File Location')) + main_window, + translate('SongPlugin.ReportSongList', 'Save File'), + translate('SongPlugin.ReportSongList', 'song_extract.csv'), + translate('SongPlugin.ReportSongList', 'CSV format (*.csv)')) + if not report_file_name: main_window.error_message( translate('SongPlugin.ReportSongList', 'Output Path Not Selected'),