how can i put a liitle caption on the lower part of the browser? like the copyright on electrongeek’s site.
You could try this:
<SCRIPT language=JavaScript>
defaultStatus =“©2003 Optical - www.optical.com - All Rights Reserved.”
</SCRIPT>
Put into the HTML part of each page and you’re done 
thanks cello!
hey one more thing i’ve seen sites that has a little animations on these, can you put one if it’s ok.
Oh, alright - just for you 
<SCRIPT>
<!-- Begin
function scrollit(seed) {
var m1 = “©2003 Optical”;
var m2 = “… www.optical.com “;
var m3 = “… All Rights Reserved “;
var m4 = “… and Protected “;
var msg=m1+m2+m3+m4;
var out = " “;
var c = 1;
if (seed > 100) {
seed–;
cmd=“scrollit(”+seed+”)”;
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=” “;
}
out+=msg;
seed–;
window.status=out;
cmd=“scrollit(”+seed+”)”;
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed–;
window.status=out;
cmd=“scrollit(”+seed+”)”;
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=” ";
timerTwo=window.setTimeout(“scrollit(100)”,75);
}
}
}
// End -->
</SCRIPT>
<!-- Add this into the BODY tag -->
<BODY onLoad=“scrollit(100)”>
<!-- Script Done -->
WOW! THANKS A LOT, A REALLY APPRECIATE IT, THANKS AGAIN!