<html><head> <script> function toggle(e){ if (e.style.display == "none"){ e.style.display = ""; } else{ e.style.display = "none"; }}</script> </head> <body> <div style="cursor: hand" onclick="toggle(HideShow1);">Microsoft Office</div> <span style="color: blue" id=HideShow1><b><a href="#">Word<a href="#" ppt.htm>PowerPoint</a><br>Access<br>FrontPage</b></span> <div style="cursor: hand" onclick="toggle(HideShow2);">Programming</div> <span style="color: blue" id=HideShow2><b><a href="#">C++</a><br>Visual C++<br>C#<br>Visual Basic<br>Perl <br></b>></span><br> </body> </html>