LYRIC_NONE = 0
LYRIC_THATS_THE_WAY_YOU_LOVE = 1
LYRIC_TOO_MUCH_TO_SMILE_ABOUT = 2
LYRIC_I_AM_WITH_YOU = 3
LYRIC_ALL_FOR_LOVE = 4
LYRIC_LOVE_WITHOUT_END = 5
LYRIC_AWESTRUCK = 6
LYRIC_I_WALKED_ON_THE_WATER = 7
LYRIC_START_WALKIN_AGAIN = 8
LYRIC_FORGIVE = 9
LYRIC_BEAUTIFUL_SOUL = 10
LYRIC_JOY_OF_YOUR_SALVATION = 11
LYRIC_SAVOR_THE_MOMENT = 12


function DrawSong( songTitle, songClip, songCredit, songCredit2 ) {
  DrawSongWithLyric( songTitle, songClip, songCredit, songCredit2, LYRIC_NONE )
}


function DrawSongWithLyric( songTitle, songClip, songCredit, songCredit2, lyricLink ) {
  document.writeln( '<CENTER>' )
  document.writeln( '<SPAN class="songTitle"><A HREF="' + songClip + '" class="songlink">' + songTitle + '</A></SPAN><BR>' )
  document.writeln( '<SPAN class="songCredit">' + songCredit + '</SPAN><BR>' )
  if ( songCredit2 != "" ) {
    document.writeln( '<SPAN class="songCredit">' + songCredit2 + '</SPAN><BR>' )
  }
  if ( lyricLink != 0 ) {
    linkRef = "song_lyric.htm?" + lyricLink
	windowWidth = 600
	windowHeight = 600
    document.writeln( '<SPAN class="songLyric"><A class="songLink" HREF=\"javascript:doNothing()\" onClick="openScrollableWindow(\'' + linkRef + '\',' + windowWidth + ',' + windowHeight + ')">song lyric</A></SPAN>')
  }
  
  document.writeln( '</CENTER><P>' )
}
