<HTML>
<HEAD>
<TITLE>JavaScript Demo Example 1 Alternate</TITLE>
</HEAD>
<BODY BGCOLOR="WHITE">
<H3> Click on the words below to display text in "message boxes".</H3>
<p><b>This example uses the <i>onClick event-handler</i>
and just the <i>alert message
funtion</i>.</b></p>
<DIV align="center">
<A href="#" onClick="alert('I would rather be exposed to the inconveniences
attending too much liberty than to those attending too small a degree of it.');
return false">Jefferson</A>
<A href="#" onClick="alert('If I were two-faced, would I be wearing
this one?'); return false">Lincoln</A>
<A href="#" onClick="alert('We have nothing to fear, but fear itself.');
return false">Roosevelt</A>
<A href="#" onClick="alert('Ask not what your country can do for
you, but what you can do for your country.'); return false">Kennedy</A>
<A href="#" onClick="alert('I am not a crook!'); return false">Nixon</A>
<A href="#" onClick="alert('Trust but verify.'); return false">Reagan</A>
</DIV>
<P> </P>
<P><A href="JavaScriptDemo.htm">Return to Having Fun with
JavaScript</A>.</P>
</BODY>
</HTML>