function PutPositions()
{
	document.getElementById("WindowXPos").value = document.body.scrollLeft;
	document.getElementById("WindowYPos").value = document.body.scrollTop;
}
function ScrollWindow()
{
	window.scrollTo(document.getElementById("WindowXPos").value, document.getElementById("WindowYPos").value);
}


var max=0;
function textlist()
{
	max=textlist.arguments.length;
	for (i=0; i<max; i++)
	this[i]=textlist.arguments[i];
}
tl=new textlist
(
	"1968 Dandy Dick Landy Dodge Dart available for pre-order. Due spring 2004.",
	"True 1971 Camaro RS-Z28s. Two styles in stock and shipping.",
	"40th Anniversary 1964 GTO for the 6th Annual Pontiac series! Pre-Order NOW!",
	"Check out the Feature Products section for Special Cars and Pricing!!"
);
var x=0; pos=0;
var l=tl[0].length;
function textticker()
{
	document.tickform.tickfield.value=tl[x].substring(0,pos)+"_";
	if(pos++==l) { pos=0; setTimeout("textticker()",2000); x++;
	if(x==max) x=0; l=tl[x].length; } else
	setTimeout("textticker()",50);
}

