function openWin(fileToOpen,nameOfWindow,width,height) {
myWindow = window.open("",nameOfWindow,"menubar=no,scrollbars=yes,status=no,width="+width+",height="+height);
myWindow.document.open();
myWindow.document.write('\n')
myWindow.document.write('
ScreenShot Viewer')
myWindow.document.write('');
myWindow.document.write('
');
myWindow.document.write('');
myWindow.document.close();
}
var i_jn = 0;
function scrshot_jn(x,n) {
if (n) i_jn++; else i_jn--;
if (i_jn > x) i_jn = 0;
if (i_jn < 0) i_jn = x;
document['img_jn'].src = "./screenshots/scummvm_" + i_jn + ".png";
}