Помогите плз, достал скрипт отсчитывающий время в обратном напровлении, как мне его дописать чтоб после окочания подсчета (вывода числа 0) появлялась ссылка, примерно как при скачивании с depositfiles.com. Вот код:
<html>
<head>
<title>TEST</title>
<META http-equiv="Content-Type" content="text/html; charset=windows-1251">
<Style>
A:Link{ Color: #000000; Text-decoration: underline}
A:Visited{ Color: #000000; Text-decoration: underline}
A:Hover{ Color: #000000; Text-decoration: none}
td, body {font-family: verdana, arial, helvetica; font-size:11px;}
</Style>
<SCRIPT LANGUAGE="JavaScript">
var g_iCount = new Number();
var g_iCount = 60;
function startCountdown(){
if((g_iCount - 1) >= 0){
g_iCount = g_iCount - 1;
numberCountdown.innerText = g_iCount;
setTimeout('startCountdown()',1000);
}
}
</script>
</head>
<body bgcolor="#EDEDED" text="#000000" link="#000000" topmargin="0" leftmargin="0" onLoad="startCountdown()">
<center>
<!-- BODY START HERE -->
<font face="Digital Readout Upright" color="blue" size="5">
Отсчет:
<div align="center" id="numberCountdown"></div>
</font>
<!-- BODY END HERE -->
</body>
</html>