function tryone()
	{
	var screenHmid=(screen.width/2);
	var screenVmid=(screen.height/2);
	var howWide=300;
	var howHigh=335;
	var leftSide=screenHmid-(howWide/2);
	var topSide=WindowPixelsDown;
//	var topSide=(screenVmid-(howHigh/2));
	var props='resizable,' + 'width=' + howWide + ',height=' + howHigh + ',screenx=' + leftSide + ',screeny=' + topSide + ',left=' + leftSide + ',top=' + topSide + ',menubar=no,status=no,scrollbars=no';
	gWin=window.open("trychar.htm","Character",props);
	}

function makebody()
	{
	var c=document.forms[0].box.value;
	var d=window.document;
	d.open();
	d.writeln('<!DOCTYPE HTML PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">');
	d.writeln('<html>');
	d.writeln('<head>');
	d.writeln('<title>HTML Entity Trial</title>');
	d.writeln('<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\" />');
	d.writeln('<meta http-equiv=\"content-script-type\" content=\"text/javascript\">');
	d.writeln('<meta http-equiv=\"content-style-type\" content=\"text/css\" />');
	d.writeln('<style type=\"text/css\">');
	d.writeln('h1 { font:normal 24px \"Times New Roman\",serif; color:black; text-align:center }');
	d.writeln('table { border:1px solid silver; border-collapse:collapse; border-spacing:0; margin:auto }');
	d.writeln('td { width:144px; height:175px; background:white url(xheight.png) no-repeat; font:normal 144px \"Times New Roman\",serif; color:black; text-align:center; vertical-align:top }');
	d.writeln('p { font:normal 14px \"Times New Roman\",serif; color:black; background-color:white; text-align:center }');
	d.writeln('.aligner { border:1px dotted green }');
	d.writeln('.hilite { color:#990000 }');
	d.writeln('input { font: normal 18px \"Times New Roman\",serif }');
	d.writeln('</style>');
	d.writeln('<script type=\"text/javascript\" src=\"trychar.js\"></script>');
	d.writeln('</head>');
	d.writeln('<body>');
	d.writeln('<p>Enter an HTML entity below:</p>');
	d.writeln('<form id=\"trybox\" method=\"get\" action=\"\">');
	d.writeln('<p><input type=\"text\" name=\"box\" size=\"10\" value=\"' + c + '\"></p>');
	d.writeln('</form>');
	d.writeln('<p><a href=\"javascript:makebody();\">Try This Character</a></p>');
	d.writeln('<table>');
	d.writeln('<tr>');
	d.writeln('<td>');
	d.writeln('<span class=\"aligner\">');
	d.writeln(c);
	d.writeln('</span>');
	d.writeln('</td>');
	d.writeln('</tr>');
	d.writeln('</table>');
	d.writeln('<p><a href=\"javascript:window.close();\">Close Window</a></p>');
	d.writeln('<p>&nbsp;</p>');
	d.writeln('</body>');
	d.writeln('</html>');
	d.close();
	}

/*
*/


