home *** CD-ROM | disk | FTP | other *** search
/ com!online 2001 November / COMCD1101.iso / handy / logoex / logoexpress.js < prev    next >
Encoding:
Text File  |  2000-08-13  |  2.7 KB  |  48 lines

  1. var srcHTML;
  2.  
  3. srcHTML = "<DIV id=KBStatic style=position:absolute; left:600px; top:300px; width:42px; height:133px; z-index:25><DD>" +
  4. "<table width=50 border=1 cellspacing=0 cellpadding=2 bgcolor=Silver bordercolor=Silver bordercolorlight=Gray bordercolordark=White><tr><td bgcolor=Gray align=center valign=MIDDLE><font color=#fffff>LogoExpress</font></td></tr>" +
  5. "<tr><td align=CENTER valign=MIDDLE><A href=Readme.htm                target=_top class=txttool onMouseOver=this.className='txton' onMouseOut=this.className='txttool'>Home</a></td></tr>" +
  6. "<tr><td align=CENTER valign=MIDDLE><A href=big5.htm                                      target=_top class=txttool onMouseOver=this.className='txton' onMouseOut=this.className='txttool'>BIG5 Code</a></td></tr>" +
  7. "<tr><td align=CENTER valign=MIDDLE><A href=gb.htm                                        target=_top class=txttool onMouseOver=this.className='txton' onMouseOut=this.className='txttool'>GB Code</a></td></tr>" +
  8. "<tr><td align=CENTER valign=MIDDLE><A href=http://communities.msn.com/logoexpress        target=_top class=txttool onMouseOver=this.className='txton' onMouseOut=this.className='txttool'>Community</a></td></tr>" +
  9. "<tr><td align=CENTER valign=MIDDLE><a href=http://www.bizland.com/Guestbook.cmp?account=logoexpress&mode=view class=txttool onMouseOver=this.className='txton' onMouseOut=this.className='txttool'>View GuestBook</a></td></tr>" +
  10. "</table></DD></DIV>";
  11.  
  12. var srcHTML2;
  13.  
  14. srcHTML2 = "<p><center> <a href=Readme.htm>Home</a> | "+
  15. "<a href=big5.htm>Big5</a> | <a href=gb.htm>Gb</a> | "+
  16. "<A href=http://communities.msn.com/logoexpress>Community</A> | "+
  17. "<a href=http://www.bizland.com/Guestbook.cmp?account=logoexpress&mode=view>View GuestBook</A> <p> </center>";
  18.  
  19. function KB_keepItInIE(theName, theWantTop, theWantLeft) {
  20.     theRealTop = parseInt(document.body.scrollTop);
  21.     theTrueTop = theWantTop + theRealTop;
  22.     document.all[theName].style.top = theTrueTop - 35;
  23.     theRealLeft = parseInt(document.body.scrollLeft);
  24.     theTrueLeft = theWantLeft + theRealLeft;
  25.     document.all[theName].style.left = theTrueLeft + 16;
  26. }
  27.  
  28. function KB_keepItInNN(theName, theWantX, theWantY) {
  29.     theRealLay = document.layers[theName];
  30.     theBadX = self.pageYOffset;
  31.     theBadY = self.pageXOffset;
  32.     theRealX = theBadX + theWantX - 65;
  33.     theRealY = theBadY + theWantY + 15;
  34.     theRealLay.moveTo(theRealY,theRealX);
  35. }
  36.  
  37. function bookmark() {
  38.     if (document.all) window.external.AddFavorite(document.location, "LogoExpress Homepage");
  39. }
  40.  
  41. IE4 = (document.all)?1:0;
  42. NN4 = (document.layers)?1:0;
  43.  
  44. if (IE4) setInterval('KB_keepItInIE("KBStatic",300,600)',1);
  45. if (NN4) setInterval('KB_keepItInNN("KBStatic",300,600)',1);
  46.  
  47. document.write(srcHTML);
  48. document.write(srcHTML2);