// © Copyright 2001, 2002 Richard Ishida.  All rights reserved.
//<html><head><title>none</title></head><body>
//<script language="JavaScript" type="text/javascript"><![CDATA[

function showImg (location) { 
	if (location.children[0].children[0].tagName != 'IMG') {
		location.children[0].innerHTML = 
			'&#xa0; &#xa0;<img src="http://www.unicode.org/cgi-bin/RedirectRefGlyphs.pl/03/' 
			+ location.id + '.gif">&#xa0; &#xa0;' + location.children[0].innerHTML; 
		}
	}


function showAllImg () {
	var nodeArray = new Array;
	nodeArray = document.all.tags("div");
	for (var i=0; i < nodeArray.length; i++) {
		if (nodeArray[i].className == 'letter' && nodeArray[i].children[0].children[0].tagName != 'IMG') {
			nodeArray[i].children[0].innerHTML = 
				'&#xa0; &#xa0;<img src="http://www.unicode.org/cgi-bin/RedirectRefGlyphs.pl/03/' 
				+ nodeArray[i].id + '.gif">&#xa0; &#xa0;' + nodeArray[i].children[0].innerHTML
			 }
		}
    	}
		
function showINotes ( page ) {
	if (parent.output) {
		parent.output.location = page;
		}
	else { document.location = page; }
	}

// ]]></script></body></html>

