var lyricsWin;

var width=500;
var height=400;


$(document).ready(function(){
	$('table#lyrics th a').each(function() {
		$(this).click(function() {
			var file=this.href.match(/[^\/]+$/);
			var name=this.firstChild.textContent?this.firstChild.textContent:this.firstChild.text;

			var top=parseInt((screen.height/2)-(height/2));
			var left=parseInt((screen.width/2)-(width/2));

			lyricsWin=window.open('/cgi-bin/displaylyrics.cgi?file='+file+'&name='+name, 'lyricsWin', 
				'width='+width+',height='+height+','+
				'top='+top+',left='+left+','+
				'menubar=no,locationbar=no,personalbar=no,statusbar=no,toolbar=no,scrollbars=yes');
			return false;
		});
	});
});
