Mit einer while - do - Schleife waere das sowieso nichts geworden. Aber ich poste Dir hier mal einen kompletten Code:
===============================
<html>
<head>
<title>Fenster</title>
<script language="JavaScript">
<!--
var x=0;
var y=0;
var w=0;
function Kreis() {
w = w + 360/5000;
if(w > 360) w=0;
x = Math.sin(w)*80 + 220;
y = Math.cos(w)*80 + 220;
window.moveTo(x,y);
window.focus();
window.setTimeout('Kreis()',10);
}
//-->
</script>
</head>
<body bgcolor="#000033" onload="Kreis()">
</body>
</html>
Viel Spass - kann man sicher leicht auf eigene Beduerfnisse anpassen.
Thomas Hieck