<HTML>
<Head>
<Title> special characters, regular symbols, and code comparison table </title>
</Head>
<Body>
<Center style = "font-size: 20px; color: #000000;">
<Form name = "font">
<Select name = "family" size = "1" onchange = "javascript: chgfont ();" style = "font-size: 20px; color: #000000;">
<Option selected value = "webdings"> webdings </option>
<Option value = "wingdings"> wingdings </option>
<Option value = "wingdings 2"> wingdings 2 </option>
<Option value = "wingdings 3"> wingdings 3 </option>
<Option value = "symbol"> symbol </option>
</SELECT> symbol, regular symbol, and code comparison table
</Form>
</Center>
<Script language = "JavaScript" type = "text/JavaScript">
Document. Write ('<Table border = "1" width = "100%" cellspacing = "0" cellpadding = "0"> ');
For (j = 0; j <4; j ++ ){
Document. write ('<TD bgcolor = "menu" bordercolor = "menu" align = "center" valign = "Middle" width = "7%" style = "font-size:; color: red; font-family: fixedsys "> Code </TD> ');
Document. write ('<TD id = "F' + J +'" bgcolor = "menu" bordercolor = "" align = "center" valign = "Middle" width = "11%" Style = "font-size :; color: red; font-family: fixedsys "> webdings </TD> ');
Document. write ('<TD bgcolor = "menu" bordercolor = "menu" align = "center" valign = "Middle" width = "7%" style = "font-size:; color: red; font-family: fixedsys "> regular </TD> ');
}
For (I = 32; I <256; I ++ ){
If (I % 4 = 0 ){
Document. Write ('<tr> ');
}
Document. write ('<TD bgcolor = "menu" align = "center" valign = "Middle" width = "7%" style = "font-size:; color: blue; font-family: fixedsys "> <a >&# </a> '+ I +'; </TD> ');
Document. write ('<TD id = "F' + I +'" align = "center" valign = "Middle" width = "11%" style = "font-size: 40px; color: red; font-family: webdings ">&# '+ I +'; </TD> ');
Document. write ('<TD align = "center" valign = "Middle" width = "7%" style = "font-size: 30px; color: Blue; font-family: arial ">&# '+ I +'; </TD> ');
If (I % 4 = 3 ){
Document. Write ('</tr> ');
}
}
Document. Write ('</table> ');
</SCRIPT>
<Script language = "JavaScript" type = "text/JavaScript">
Function chgfont (){
Fontindex = Document. Font. Family. selectedindex;
Fontvalue = Document. Font. Family. Options [fontindex]. value;
For (m = 0; m <4; m ++ ){
Eval ('F' + M + '. innerhtml = "' + fontvalue + '";');
}
For (n = 32; n< 256; n ++ ){
Eval ('F' + N + '. style. fontfamily = "' + fontvalue + '";');
}
}
Chgfont ();
</SCRIPT>
</Body>
</Html>