Aysak: Scrollbars färben und neues Fenster mit farbiger Scrollbar

Beitrag lesen

Hi,
also ich habe mit folgendem Text z.b. ein textfeld mit einer eigenen scroll bar bekommen:

<HTML>
<HEAD>
  <STYLE>
    .TA {scrollbar-3dlight-color:teal;
           scrollbar-arrow-color:;
           scrollbar-base-color:;
           scrollbar-darkshadow-color:;
           scrollbar-face-color:;
           scrollbar-highlight-color:;
           scrollbar-shadow-color:}
  </STYLE>
</HEAD>
<BODY>
  <TEXTAREA cols=30 rows=5 wrap=off CLASS="TA">This is text inside a TEXTAREA element.
You can change the color of the scrollbars for this element with the controls below.
This is text inside a TEXTAREA element.
You can change the color of the scrollbars for this element with the controls below.
This is text inside a TEXTAREA element.
You can change the color of the scrollbars for this element with the controls below.
This is text inside a TEXTAREA element.
You can change the color of the scrollbars for this element with the controls below.
This is text inside a TEXTAREA element.
You can change the color of the scrollbars for this element with the controls below.</TEXTAREA>
</BODY>
</HTML>

so weit ok, bloß wie bekomme ich es hin, das ich nicht nur ein textfeld, sondern meine komplette seite (ganz rechts die nette leiste zum scrollen) färbe? es wäre schön wenn es auch so einfach wäre! achso, ich hab ja jetzt mein script um ein neues fenster zu öffnen mit infobox dazu:

<script>
                                      function fenster(url,target,parameters) {
                                      fenster=window.open(url,target,parameters)
                                      }
                           </script>
                 <a href="javascript:fenster('seite.htm',
                                       'Fenster1','toolbar=0,location=0,directories=0,
                                       status=0,menubar=0,scrollbars=1,resizable=1,width=560,height=530');" onmouseover="return overlib('3DChips Site');" onmouseout="return nd();">testlink</a>

so, nun möchte ich das dieses fenster dann auch mit der leiste geöffnet wird, da sind ja auch schon scrolbars mit drin, mal ne frage zwischendruch, wie krieg ich die scrollbar raus wenn ich sie nicht mehr will? zum anderen problem: wie färbe ich dann in dem fenster die scrollbar, einfach da auch in den code eintragen, oder kann ich hier schon was in die parameter eintragen?

das war zwar viel, aber ich hoffe ihr könnt mir helfen!

cya