<!--
function poppedup(file, title, imgWidth, imgHeight) {
        newwin = window.open('','fanart' ,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + imgWidth + ',height=' + imgHeight);
        newwin.document.writeln('<html><head><title>' + title + '</title>');
        newwin.document.writeln('</head>');
        newwin.document.writeln('<style><!--');
        newwin.document.writeln('html,body { margin: 0; padding: 0; }');
        newwin.document.writeln('//--></style>');
        newwin.document.writeln('<body bgcolor="#ffffff">');
        newwin.document.writeln('<div style="width:' + imgWidth + '; height:' + imgHeight + '; background: url(art/' + file + ');">');
        newwin.document.writeln('<img src="../img/blank.gif" width="' + imgWidth + '" height="' + imgHeight + '" border="0" /></div>');
        newwin.document.write('</body></html>');
}
-->