求大神指导其中还有什么需要改进的地方
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<script>
setInterval(myfunction,5000);
setInterval(bb,1000);
var i =6;
function bb() {
i--;
document.getElementById("demo").innerHTML=i;
}
function myfunction() {
window.open('http://www.imooc.com/u/5679319/courses','_self','width=200,height=300')
}
function aa(){
window.history.forward()
}
</script>
</head>
<body>
<h3>操作成功</h3>
<span id="demo">5</span>
<span id="demc">秒后回到主页</span>
<a href="" onclick="aa()">返回</a>
</body>
</html>