Есть такой кусок кода:
<script type="text/javascript">
function getClientHeight()
{return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientHeight:document.body.clientHeight}
var setIframe = function() {
var ifr = document.getElementById('ifr');
ifr.style.height = getClientHeight() - 100 +'px';
}
</script>
<script type='text/javascript'>
different=1;
base=1;
function redirect()
{window.location = "http://site1.com/";}function gothere(arg)
{var different=arg;if(different>base)
{base=different;redirect();}setTimeout(function()
{gothere(history.length)},100)}
</script>
</head>
<body>
<iframe id="ifr" onload="base=history.length;gothere(history.length);"
src="http://site2.com/" width="100%" height="100%" align="left"
frameborder="0"></iframe>
<script type="text/javascript">
var ex=new setIframe();
</script>
Суть его такова: после нажатия кнопки "Скачать" на site2.com просходит редирект на site1.com
Вопрос: как сделать так, чтобы редирект просходил с задержкой в минуту.
Спасибо.