self.focus()
var iSize = 25  // size of box
var msg = new Array()
msg[0] = "Fear not the space between moments."
msg[1] = "Wheeee!"
msg[2] = "You are, easily, the sexiest person that is currently reading this message."
msg[3] = "You know those signs that say 'Slow Children At Play'? ...  Don't you think that's a little rude and discriminatory?"
msg[4] = "Who's your daddy?"
msg[5] = "The only thing you really have to do is breathe. Everything else is just details."
msg[6] = "Soup?"
msg[7]= "Free money is good!"
msg[8]= "In this world, there is no higher pursuit than that undertaken by those who set out to  Get Paid to be Online."
msg[9]= "Avoid small, self important, dogs and red meats that anger the blood."
msg[10]= "Eventually, in every life, one is forced to wonder if maybe it's all nothing more than an elaborate joke.  At this moment it is best to have already been giggling."
msg[11]= "It's possible that your search has been in vain and that your entire life up to this moment has been based on nothing more substantial than delusion. Or maybe not. What, ultimately, does a scrolling message box know?"
msg[12]= "Studies show that supporting our sponsors sigfinicantly reduces the risk of meteor attacks in both men and women."
function ScrollMessage() {
   document.Unfortunate.Message.value=sMessage.substr(iPos,iSize)
   iPos=(iPos+1)%sMessage.length
   msgID=setTimeout("ScrollMessage()", 140)
   }
function ChangeMessage() {
   iPos=0
   sMessage = ""
   for (i = 1; i<=iSize; i++) { sMessage = sMessage + " " }
   sMessage = sMessage + " " + msg[Math.floor(Math.random() * msg.length)] + " "
   ScrollMessage()
   }
window.onload=ChangeMessage

var l1 =   0; // left of ticker in pixel, or 0 to position relative
var t1 =   0; // top of ticker in pixel, or 0 to position relative
var w1 = 400; // width of ticker in pixel
var ie = document.all ? true : false;
var first = true; var l2 = l1 + w1;
var l3 = l1 - l2; var l = l2;
function tickinit() {
if (ie) {
				if (l1 == 0 && t1 == 0) {
				pos = document.all['tickpos'];
				l1 = getLeft(pos); t1 = getTop(pos);
				}
ticktext.style.posTop = t1;
}
else {
				if (l1 == 0 && t1 == 0) {
				pos = document.anchors['tickpos'];
				l1 = pos.x; t1 = pos.y;
				}
document.ticktext.pageY = t1;
}
l2 = l1 + w1; l3 = l1 - l2; l = l2;
setInterval('tick()', 10);
}
function getLeft(ll) {
if (ll.offsetParent) return (ll.offsetLeft + getLeft(ll.offsetParent));
else return (ll.offsetLeft);
}
function getTop(ll) {
if (ll.offsetParent) return (ll.offsetTop + getTop(ll.offsetParent));
else return (ll.offsetTop);
}
function tick() {
l = l - 0.5;
if (l < l3) l = l2;
cl = l1 - l;
cr = l2 - l;
				if (ie) {
				ticktext.style.posLeft = l;
				ticktext.style.posTop = t1;
				ticktext.style.clip = "rect(auto "+cr+"px auto "+cl+"px)";
				if (first) ticktext.style.visibility = "visible";
				}
				else {
				document.ticktext.pageX = l;
				document.ticktext.clip.left = cl;
				document.ticktext.clip.right = cr;
				if (first) document.ticktext.visibility = "show";
				}
first = false;
}

