codice:
<script language="javascript">
	function redirect(url, time)
	{
		function location(link)
		{
			location = link;
		}
		self.setTimeout('location(url)', time);
	}
</script>
ricordati che devi mettere l'url a location con http:// e il resto dell'url e a time il tempo in millisecondi e.g. 4000 = 4 secondi. Ricordati ancora di mettere al tag <body> l'aggiunta onload='redirect("http://www.pippo.it/", "4000");'