var Option

function folio(page,thisWidth,thisHeight) {
Option = ('width=' + thisWidth + ',height=' + thisHeight + ',toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,top=190,left=110');
OpenWin = window.open(page, "", Option);
OpenWin.document.open();
OpenWin.document.write("<html> ");
OpenWin.document.write("<title>the angry red planet</title>");
OpenWin.document.write("<body bgcolor=ffffff topmargin=0 leftmargin=0 marginwidth=0 marginheight=0><center><img src='" + page + "'></center></center></body>");
OpenWin.document.write("</html>");
OpenWin.focus();}