<!--
	function popcap(title, artist, source) {
		var title = title.replace(/\|/g, '<br />');
		var source = source.replace(/\|/g, '<br />');
		var windowvars = 'width=300,height=115,left=330,top=250,scrollbars=no,resizable=no';
		var win = window.open('', 'popup1', windowvars);
		var code = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHMTL 1.0 Transitional//EN"';
		code += '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';
        code += '<html xmlns="http://www.w3.org/1999/xhtml">';
		code += '<head><title>' + artist + '</title>';
		code += '<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />'
		code += '</head>';
		code += '<body>';
		code += '<p align="center"><strong>' + artist + ': <cite>' + title + '</cite>';
		code += '<br /><small>' + source + '</small></strong></p>';
		code += '<div align="right"><form action="#">';
		code += '<input type="button" value="close" onclick="self.close();" />';
		code += '</form></div>';
		code += '</body></html>';
		if(typeof win != 'undefined' && !win.closed)
		  {
             with (win.document)
			   {
                  open();
				  write(code);
		          close();
			   }
		  }
		win.focus();
	} 
// -->

