home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 October / PCWorld_2006-10_cd.bin / zabezpeceni / acoder / ChecksumCreatorSetup.exe / Hilfe.chm / hhepub.js < prev    next >
Text File  |  2005-06-09  |  2KB  |  71 lines

  1.  
  2.  
  3. //*****************************************************************************
  4. //Functions for Expandable Sections
  5.  
  6. function doSection (secNum){
  7.     //display the section if it's not displayed; hide it if it is displayed
  8.     if (secNum.style.display=="none"){secNum.style.display=""}
  9.     else{secNum.style.display="none"}
  10. }
  11.  
  12. function noSection (secNum){
  13.     //remove the section when user clicks in the opened DIV
  14.     if (secNum.style.display==""){secNum.style.display="none"}
  15. }
  16.  
  17. function doExpand(paraNum,arrowNum){
  18.     //expand the paragraph and rotate the arrow; collapse and rotate it back
  19.     if (paraNum.style.display=="none"){paraNum.style.display="";arrowNum.src="arrowdn.gif"}
  20.     else{paraNum.style.display="none";arrowNum.src="arrowrt.gif"}
  21. }
  22.  
  23.  
  24. //*****************************************************************************
  25. //Functions control the behavior of the Go Arrows.
  26.  
  27. function liteGo(spNo){
  28.     spNo.style.background="#cc0033";
  29.     spNo.style.color="#FFFFFF";
  30. }
  31.  
  32. function liteOff(spNo){
  33.     spNo.style.background="transparent";
  34.     spNo.style.color="#000000";
  35. }
  36.  
  37.  
  38. //*****************************************************************************
  39. // Functions for Typing Text Special Effect
  40.  
  41. var it=0 //Global variable 
  42.  
  43. function InitiliseTyping(){
  44.     mytext=typing.innerText;
  45.     var myheight=typing.offsetHeight;
  46.     typing.innerText='';
  47.     document.all.typing.style.height=myheight;
  48.     document.all.typing.style.visibility="visible";
  49.     TypeText();
  50. }
  51.  
  52. function TypeText(){
  53.     var TypeInteval=100;  //Speed Interval
  54.     typing.insertAdjacentText("beforeEnd",mytext.charAt(it));
  55.     if (it<mytext.length-1){
  56.         it++;
  57.         setTimeout("TypeText()",TypeInteval);
  58.     }
  59.     else
  60.      return;
  61. }
  62.  
  63. //*****************************************************************************
  64. //Function for Magic Text Special Effect
  65.  
  66. var cnt=new Array()
  67.  
  68. function changetext(whichcontent){
  69.         if (document.all)
  70.         MagicArea.innerHTML=whichcontent.innerHTML}
  71.