/* img.js v.1.21
 * written: Sasaki Atsushi <mailto:hm7@mac.com>
 * last modified: 2006-02-05T09:01:08+09:00
 */

function img(n, imgRef, bgClr) {
	wn = n.replace(/[^0-9A-Za-z]/g, '');
	nw = window.open('', wn, 'resizable=yes,scrollbars=yes');
	nw.document.open();
	nw.document.writeln('<?xml version="1.0" encoding="iso-2022-jp"?>');
	nw.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"');
	nw.document.writeln('"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">');
	nw.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja-JP">');
	nw.document.writeln('<head>');
	nw.document.writeln('<meta http-equiv="content-type" content="application/xhtml+xml; charset=iso-2022-jp" />');
	nw.document.writeln('<meta http-equiv="content-style-type" content="text/css" />');
	nw.document.writeln('<meta http-equiv="content-script-type" content="text/javascript" />');
	nw.document.writeln('<title xml:lang="ja-JP">' + n + '</title>');
	nw.document.writeln('<link rev="made" href="mailto:hm7@mac.com" />');
	nw.document.writeln('<link rel="copyright" href="http://homepage1.nifty.com/hm7/about.html#copyright" />');
	nw.document.writeln('<link rel="start" href="http://homepage1.nifty.com/hm7/" />');
	nw.document.writeln('<style type="text/css">');
	nw.document.writeln('body {');
	nw.document.writeln('margin: auto;');
	nw.document.writeln('background-color: ' + bgClr + ';');
	nw.document.writeln('}');
	nw.document.writeln('p {');
	nw.document.writeln('margin: 1em;');
	nw.document.writeln('text-align: center;');
	nw.document.writeln('}');
	nw.document.writeln('p.cap {');
	nw.document.writeln('color: #666;');
	nw.document.writeln('font-size: large;');
	nw.document.writeln('font-family: \'Times New Roman\', serif;');
	nw.document.writeln('font-style: italic;');
	nw.document.writeln('font-weight: bold;');
	nw.document.writeln('}');
	nw.document.writeln('img:hover {');
	nw.document.writeln('cursor: pointer;');
	nw.document.writeln('}');
	nw.document.writeln('</style>');
	nw.document.writeln('<script type="text/javascript">');
	nw.document.writeln('function init() {');
	nw.document.writeln('document.title = \'' + n + '\';');
	nw.document.writeln('imgHi = document.getElementById(\'img1\');');
	nw.document.writeln('ww = imgHi.width + 50 ; wh = imgHi.height + 110 ;');
	nw.document.writeln('window.resizeTo(ww,wh);');
	nw.document.writeln('}');
	nw.document.writeln('</script>');
	nw.document.writeln('</head>');
	nw.document.writeln('<body onload="init()">');
	nw.document.writeln('<p><img src="' + imgRef + '" alt="' + n + '" onclick="window.close()" id="img1"></p>');
	nw.document.writeln('<p class="cap">&ldquo;' + n + '&bdquo;</p>');
	nw.document.writeln('</body>');
	nw.document.writeln('</html>');
	nw.document.title = n;
	nw.document.close();
	return false;
}

// EOF
