Redirect Your webpage with JavaScript
If you want to redirect your web-page to another location with the help of JavaScript.
so you can redirect it with JavaScript function
setTimeout("url".time);
complete code is
<script language=javascript>
setTimeout("location.href='http://www.yourwebsite.com/page'", 0);
</script>