home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 May / W2KPRK.iso / apps / loganalyst / data1.cab / Help_Files / CLA.chm / script1.js < prev   
Text File  |  1999-09-07  |  2KB  |  55 lines

  1. document.onclick = doDocumentOnClick;
  2. document.onmouseover = doDocumentOnMouseOver;
  3. document.onmouseout = doDocumentOnMouseOut;
  4. coEb='../stylesht/coEb.gif';
  5. coCb='../stylesht/coCb.gif';
  6. coE='../stylesht/coE.gif';
  7. coC='../stylesht/coC.gif';
  8.  
  9.   
  10. function collapseBlurbs() {
  11.     for(i=0; i<document.all.length; i++) {
  12.         if (document.all(i).id.indexOf('idBlurb') != -1)
  13.             document.all(i).style.display = 'none';}}
  14.  
  15.  
  16. function doDocumentOnClick() {
  17.     var eSrc = window.event.srcElement ;
  18.     if (eSrc.className == "clsHeader" || eSrc.className == "clsHeaderButton" ){
  19.         var sId = "idBlurb" + eSrc.id.substring(eSrc.id.length-1,eSrc.id.length);
  20.         if (document.all(sId).style.display == "block"){
  21.             document.all(sId).style.display = "none";
  22.             sButtonId = "idHeaderButton" + sId.substring(sId.length-1,sId.length);
  23.             document.all(sButtonId).src = coEb;
  24.         } else     {
  25.             document.all(sId).style.display = "block";
  26.             sButtonId = "idHeaderButton" + sId.substring(sId.length-1,sId.length);
  27.             document.all(sButtonId).src = coCb;}
  28.         window.event.cancelBubble = true ;}}  
  29.  
  30.  
  31. function doDocumentOnMouseOver() {
  32.     var eSrc = window.event.srcElement;
  33.     if (eSrc.className == "clsHeader" || eSrc.className == "clsHeaderButton" ){
  34.     var sId = "idBlurb" + eSrc.id.substring(eSrc.id.length-1,eSrc.id.length);
  35.         if (document.all(sId).style.display == "block"){
  36.             sButtonId = "idHeaderButton" + sId.substring(sId.length-1,sId.length);
  37.             document.all(sButtonId).src = coCb;
  38.         } else     {
  39.             sButtonId = "idHeaderButton" + sId.substring(sId.length-1,sId.length);
  40.             document.all(sButtonId).src = coEb;}
  41.     }
  42.   }
  43.  
  44. function doDocumentOnMouseOut() {
  45.     var eSrc = window.event.srcElement;
  46.        if (eSrc.className == "clsHeader" || eSrc.className == "clsHeaderButton" ){
  47.     var sId = "idBlurb" + eSrc.id.substring(eSrc.id.length-1,eSrc.id.length) ;
  48.         if (document.all(sId).style.display == "block"){
  49.             sButtonId = "idHeaderButton" + sId.substring(sId.length-1,sId.length);
  50.             document.all(sButtonId).src = coC;
  51.         } else     {
  52.             sButtonId = "idHeaderButton" + sId.substring(sId.length-1,sId.length);
  53.             document.all(sButtonId).src = coE;}
  54.     }
  55.   }