// CREDITS:
// Free Content Scroller
// By Urs Dudli and Peter Gehrig
// Copyright (c) 2002 Peter Gehrig and Urs Dudli. All rights reserved.
// Permission given to use the script provided that this notice remains as is.
// Additional scripts can be found at http://www.24fun.com
// info@24fun.com
// 8/31/2002

// IMPORTANT:
// If you add this script to a script-library or script-archive
// you have to add a highly visible link to
// http://www.24fun.com on the webpage
// where this script will be featured

// CONFIGURATION:
// Go to http://www.24fun.com
// and create your own text animation
// with our new Text Factory.

var textbgcolor="";
var textwidth=180;
var textheight=290;
var textborder=0;
var textbordercolor="";
var i_text=0;
var textcontent="";
var thisspan="";
var content="";
var contentbg="";
var toggle=1;
var timer;
var scrollready=true;
var tablewidth;
var tableheight;
var step=1;
var content;
var padding=3;
var textcontentheight;
var ie=document.all?1:0;
var ns6=document.getElementById&&!document.all?1:0;
var ns4=document.layers?1:0;

if (ie || ns6) {
	document.write('<table cellpadding=0 cellspacing=0 border=0 height='+textheight+' width='+textwidth+'><tr><td>');
	document.write('<div id="marker" style="position:relative; width:'+textwidth+'; height:'+textheight+'"></div>');
	document.write('</td></tr></table>');
	if (ns6) {
		var tablewidth=textwidth-2*textborder;
		var tableheight=textheight-2*textborder;
	} else {
		var tablewidth=textwidth;
		var tableheight=textheight;
	} //end if
	document.write('<div ID="roof" style="position:absolute;width:'+tablewidth+'px;height:'+tableheight+'px;border-style:solid;border-width:'+textborder+'px;border-color:'+textbordercolor+';background-color:'+textbgcolor+';overflow:hidden;visibility:hidden" onMouseOver="setscrollready(0)" onMouseOut="setscrollready(1)">');
	document.write('<span ID="ticker" style="position:absolute;top:0px;left:0px;visibility:hidden">');
} //end if

if (ns4) {
	document.write('<table cellpadding=0 cellspacing=0 border=0 height='+textheight+' width='+textwidth+'><tr><td>');
	var widthMinusTwoBorder=textwidth-2*textborder;
	var heightMinusTwoBorder=textheight-2*textborder;
	var widthMinusFourBorder=textwidth-4*textborder;
	var heightMinusFourBorder=textheight-4*textborder;
} //end if