
function makeList(form) {
	
	fontFace = form.fontName.value
	var aPage = "";
	var theLoop = "";
	
	aPage+= "<html><head><title> Coded Character Page</title></head>";
	aPage+= "<body bgcolor='WHITE'><h2><font face='Helvetica,Geneva,Arial' color='#003333'>";
	aPage+= "HTML Coded Character Set Output</font></h2>";
	aPage+= "The type is: " + form.fontName.value + "<br>The size is: " + form.fontSize.value  
	aPage+= '<hr><blockquote><pre>';
	
	parent.frames[1].document.open()
	parent.frames[1].document.write(aPage)
	
	for (i=0;i<256;i++)
	{
		theLoop+="\n";
		theLoop+='<font face="' + form.fontName.value + '" size='  ;
		theLoop+= form.fontSize.value + '>'
		
		theLoop+=('&#38;' + '&#35;' + i + ';')
		if (i<10)
			 {theLoop+=(" ")}
		if (i<100) 
			{theLoop+=(" ")}
	
		if (i==9) 
			{theLoop+=("&#40;Tab&#41;")}
		if (i==10) 
			{theLoop+=("&#40;Line Feed&#41;")}
		if (i==13) 
			{theLoop+=("&#40;Carriage Return&#41;")}
		if (i==32) 
			{theLoop+=("&#40;Spacebar space&#41;")}
		if (i==160) 
			{theLoop+=("&#40;Non-breaking space (option-Spacebar on Mac)&#41;")}
		theLoop+=("    &#" + i + ";")
		theLoop+=("<br>")
		if (i/10 == parseInt(i/10)) 
			{theLoop+=('</font><hr align="LEFT" width="150">')}
	}
	theLoop+=("</pre></blockquote></center>")
	parent.frames[1].document.write(theLoop)
	parent.frames[1].document.close()
}
