// Floating order tracker
var position = 0;

function startConfigBox() {
		setInterval("moveConfigBox()",1)
}
function moveConfigBox() {
	position = newposition;
	if (navigator.appName == "Microsoft Internet Explorer"){
		var newposition = document.body.scrollTop;
	} else {
		var newposition = window.pageYOffset;
	}
	document.getElementById('configbox').style.top = (newposition+50) + "px";
}