// font_size
//    <!-- Select and Resize text -->
//    <script language="JavaScript" src="js/text_size.js"></script>
//
//              <TR>
//                <TD align=right>Font: 
//                  <A href="javascript:xpfont('Times%20New%20Roman,Times,serif')">Serif</A>
//                  or 
//                  <A href="javascript:xpfont('Verdana,Arial,sans-serif')">Sans</A> 
//                  ----- Text: 
//                  <A href="javascript:xpsize(2)"><FONT size=2>S</FONT></A> 
//                  <A href="javascript:xpsize(3)"><FONT size=3>I</FONT></A> <FONT size=4>
//                  <A href="javascript:xpsize(4)">Z</A></FONT> <FONT size=5>
//                  <A href="javascript:xpsize(5)">E</A></FONT>
//               </TD>
//             </TR>
//              <TR>
//                <TD>
//       <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#cccccc" width="86%" >
//
//                    <TBODY>
//                    <TR>
//                      <TD bgColor=#ffffff><FONT color=#000033 size=3><B>
//<!-- heading -->
//       Arborvitae - Thuja (standishii x plicata) 'Green Giant' 
//<!-- heading -->
//                      </B></FONT></TD></TR>
//                    <TR>
//                      <TD bgColor=#ffffff>
//                        <P><FONT id=newstxt face="Times New Roman, Times, serif" size=3>
//<!-- text -->
//       'Green Giant' is a  hybrid between Western Red Cedar plicata and Thuja Standishii Cedaris. It is one of the fastest growing of all Conifers and can withstand drought well, has no significant pest or disease problems, and is highly deer and bagworm resistant!  'Green Giant' is an excellent substitute for Leyland cypress.
//<!-- text -->
//                        </FONT></P></TD></TR>
//                    </TBODY>
//                 </TABLE></TD></TR>
//

function xpsize(n) { document.getElementById("newstxt").style.fontSize=(n*4)+"pt"; }
function xpfont(f) { document.getElementById("newstxt").style.fontFamily=f; }

