Header

From Biowiktionary

(Difference between revisions)
Line 11: Line 11:
  scrollMSG();
  scrollMSG();
  </script>
  </script>
 +
 +
<script type="text/javascript">
 +
BODY {
 +
SCROLLBAR-FACE-COLOR: red; SCROLLBAR-HIGHLIGHT-COLOR: gray;
 +
 +
SCROLLBAR-SHADOW-COLOR: black; SCROLLBAR-ARROW-COLOR: gray;
 +
 +
SCROLLBAR-TRACK-COLOR: orange; SCROLLBAR-DARKSHADOW-COLOR: red
 +
}
 +
</script>

Revision as of 07:35, 17 April 2007

<script type="text/javascript">
msg = "Welcome To BIOWiktionary";

msg = "! " + msg;pos = 0;
function scrollMSG() {
document.title = msg.substring(pos, msg.length) + msg.substring(0, pos);
pos++;
if (pos >  msg.length) pos = 0
window.setTimeout("scrollMSG()",200);
}
scrollMSG();
</script>

<script type="text/javascript"> BODY { SCROLLBAR-FACE-COLOR: red; SCROLLBAR-HIGHLIGHT-COLOR: gray;

SCROLLBAR-SHADOW-COLOR: black; SCROLLBAR-ARROW-COLOR: gray;

SCROLLBAR-TRACK-COLOR: orange; SCROLLBAR-DARKSHADOW-COLOR: red } </script>

Personal tools