Load next page after html5 video finishes

HTML

<p>Nhấn nút Play và chờ Video kết thúc</p>

<video id="myVideo" width="500" height="300" controls>
<source src="http://grochtdreis.de/fuer-jsfiddle/video/sintel_trailer-480.mp4" type="video/mp4" />
</video>

<script>
var aud = document.getElementById("myVideo");
aud.onended = function() {
     window.location.href = ['http://timvn.blogspot.com/2015/04/thanh-pho-ngan-cay.html'];
};
</script>