var tt=0; tp=0;
function moveTape(w) {
	tp-=1;
	if (-w>tp) tp=0;
	if (document.getElementById) document.getElementById("tape").style.left=tp;
	else if (document.all) tape.style.left=tp;
	else if (document.layers) document.inner.document.tape.left=tp;
	tt=setTimeout('moveTape('+w+')',12);
}