<HTML> <HEAD> <TITLE>Dynamic Content 2</TITLE> <SCRIPT LANGUAGE="JavaScript"> function showMe() { document.all.MyList.style.display = ""; document.all.MyHeading.style.color = "red";} </SCRIPT> <BODY onclick="showMe()"> <H3 ID=MyHeading> Click me to see Dynamic Content in Action. </H3> <P>Watch the following text reflow after the the display setting changes from none. <UL ID=MyList STYLE="display:none"> <LI>The display property can either be <LI>none, or <LI>"" </UL> <P>Some text below the invisible text. </BODY> </HTML>