Hello maureen,
Well you could accomplis this two ways.
the page that is loading inside the window itself could be a different color. Or you could use the code below
I boldfaced what I added,, you can set the color were it says bgColor=" "
--------
<html>
<head>
<title>Untitled</title>
</head>
<body bgcolor="#000000" link="#ffffff">
<script>
<!--
<!--Animated Window Opener script-By JavaScript Kit (
www.javascriptkit.com) More scripts here-->
var mylocation=""
var winheight=100
var winsize=100
var x=5
function go(){
win2=window.open("","","scrollbars")
win2.document.write("<html><head><title></title></head><body bgColor=\"black\"></body></head></body>")
if (!document.layers&&!document.all){
win2.location=mylocation
return
}
win2.resizeTo(100,100)
win2.moveTo(0,0)
go2()
}
function go2(){
if (winheight>=screen.availHeight-3)
x=0
win2.resizeBy(5,x)
winheight+=5
winsize+=5
if (winsize>=screen.width-5){
win2.location=mylocation
winheight=100
winsize=100
x=5
return
}
setTimeout("go2()",50)
}
//-->
</script>
<a href="javascript
:go()" onMouseover="window.status='open window';return true" onMouseout="window.status=''" >
Click here</a>
</body>
</html>
-------
Hope this helps