<srcipty>
var t = 10;
function openwin(){
t -= 1;
if( t==0){
location.href='prototype.html';
}
setTimeout("openwin()",1000);
}
openwin();
</script>
<srcipty>
var t = 10;
function openwin(){
t -= 1;
if( t==0){
location.href='prototype.html';
}
setTimeout("openwin()",1000);
}
openwin();
</script>