No quieres hacer esto?
Código:
<html>
<head>
</head>
<body>
<table width="100%" border="0">
<script language="JavaScript">
var i=0;
var vector = new Array (5);
vector = [1, 2, 3, 5, 7];
while(i<5){
document.write("Prueba de escritura en bucle:" + vector[i]);
i++;
}
</script>
</table>
</body>
</html>
Veo bastantes fallos, cierras scripts donde no deberias cerrar y cosas asi :S