<!-- 2000 copyright AML development -->
<HTML>
<HEAD>
<TITLE></TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<script language="JavaScript">
var up, down;
var min1, sec1;
var cmin, csec;
function Minutes(data) { for(var i=0;i<data.length;i++) if(data.substring(i,i+1) ==":") break;
return(data.substring(0,1)); }
function Seconds(data) { for(var i=0;i<data.length;i++) if(data.substring(i,i+1) ==":") break;
return(data.substring(i+1,data.length)); }
function Display(min,sec) { 
var disp;
disp = "У вас осталось - "
if(min<=0) disp+="0";
disp+=min+":";
if(sec<=60) disp+="0"+sec;
else disp+=sec;
return(disp); }
function Down() {
// -- вы можете скачать ссылку -->
var limit = "0:9";
cmin=10*Minutes(limit);
csec=0+Seconds(limit);
DownRepeat(); }
function DownRepeat() {
csec--;
if(csec==-1) { csec=59; cmin--; }
window.status=Display(cmin,csec);
if((cmin==0) && (csec==0)) alert("Ваше время истекло, пожалуйста заканчивайте");
else {
if((cmin==5) && (csec==0)) alert("У вас осталось 5 минут");
down=setTimeout("DownRepeat()",1000); }

</script></HEAD>
<style type="text/css">
A:link { color: #003399; text-decoration: underline }
A:visited { color:#003399; text-decoration: underline }
A:hover { color:#003399; text-decoration: none }
.copy { font: 8pt/normal Verdana, Arial, Helvetica, sans-serif; text-transform: super; text-decoration: none; color: #333333}
.copy1 { font: bold 10pt/normal Verdana, Arial, Helvetica, sans-serif; text-transform: super; text-decoration: none; color: #333333 }
.copy2 { font: 9pt/normal Verdana, Arial, Helvetica, sans-serif; text-transform: super; text-decoration: none; color: #333333 }
</style>
<BODY onLoad="Down()" bgcolor="#FFFFFF">
<div align="center">
Глянь в статус
</div>
</BODY>
</HTML>