// message to scroll in text field
var msg = "Get unlimited access to the highest quality and interactive porn FOR FREE!! Try FREE Porn Now!";
var spacer = "        ";
// current message position
var pos = 0;
//flag to control message
function ScrollMessage() {
   document.form1.text1.value = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
   pos++;
   if (pos > msg.length) pos = 0;
// set timeout for next update
   window.setTimeout("ScrollMessage()",200);
}
// Display a link help message
function LinkMessage(text) {
   window.status = text;
}
