UNKNOWN '************************************** ' Name: Hide and Show Text ' Description:If you like my work please ' send me an email at jakerpomperada@yahoo ' .com and jakerpomperada@gmail.com. Here in the Philippines people can reach me through my mobile numbers 09993969756, 09154628025 and 09288471599. My telephone number at home is +63 (034) 4335081 and 4335675. I am also working as a freelance developer if you like to acquire my programming services kindly contact me in my email address above and mobile phone numbers. Thank you very much and Happy Programming. Regards, Mr. Jake Rodriguez Pomperada, MAED-IT Teacher, Software Developer, Web Developer and Electronics and Computer Technician Share My Code Freely Without Any Cost. Product of the Philippines. ' By: Jake Rodriguez Pomperada ' ' ' Inputs:None ' ' Returns:None ' 'Assumes:None ' 'Side Effects:None 'This code is copyrighted and has limite ' d warranties. 'Please see http://www.Planet-Source-Cod ' e.com/xq/ASP/txtCodeId.6779/lngWId.14/qx ' /vb/scripts/ShowCode.htm 'for details. '************************************** <a href="javascript:doMenu('main');" id=xmain a style="color:#000000"> [+] </a> <div id=main style="margin-left:1em"> <p> Hello World!!! </p> </div> <script langauge="javascript" type="text/javascript"> document.getElementById('main').style.display='none'; function doMenu(item) { obj=document.getElementById(item); col=document.getElementById("x" + item); if (obj.style.display=="none") { obj.style.display="block"; col.innerHTML="[-]"; } else { obj.style.display="none"; col.innerHTML="[+]"; } } </script>