

function stickyPopWindow(theURL,winName,features) {
  persistWindow = window.open(theURL,winName,features);
	persistWindow.focus();
}

function loadLyrics(whichsong) {
	stickyPopWindow('http://www.thomasgunnmusic.com/lyrics/'+whichsong+'.php','lyricswindow','toolbar=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=500,height=550');
}