
function goWin() {
var mh = 1530;
var mw = 1193;
TheWin = window.open('','image','height=' + mh + ',width=' + mw + ',toolbar=yes,directories=yes,status=no,menubar=yes,scrollbars=yes,resizable=yes');
TheWin.resizeTo(mw+2,mh+30);
TheWin.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">');
TheWin.document.write('<head><title>Trivia Scoresheet</title></head><body style="overflow:hidden" bgcolor="FFFFFF">');
TheWin.document.write('<img src="/games/scoresheet.jpg"></body></html>');
TheWin.moveTo(0,0);
TheWin.focus();
}