<html>
<body>
<script type="text/javascript" >
window.onload = function () {
// Redirect after onload completes.
setTimeout(redirect);
};
function redirect() {
window.location.href = "redirect_target.html";
}
</script>
</body>
</html>