<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
<title>123</title>
<style type="text/css">
#msg{display:none;}
/* Information-Success */
.infobox{
position: absolute;
top:50%;
bottom: 0;
margin-left: 30%;
margin-right: 30%;
width: 40%;
height:50px;
padding-top: 5px;
border:solid 1px #008800;
background:#D5FFC6;
color:#48A41C;
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:normal;
text-align:center;
}
.infobox SPAN{
color:red;
}
/* Error */
.errorbox{
position: absolute;
top:50%;
bottom: 0;
margin-left: 30%;
margin-right: 30%;
width: 40%;
height:50px;
padding-top: 5px;
border:solid 1px #880000;
background:#FDE4E1;
color:#CB4721;
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:normal;
text-align:center;
}
</style>
</head>
<body>
<div id="msg" class="infobox">You have selected The Info Box<br />You are being redirected in <span >50</span> seconds<br />or click <a href="http://google.com">here</a> if you don\'t want to wait'</div>
<script type="text/javascript">
<!--
var mesbox={
init:function(id){
var obj=document.getElementById(id),t=obj?obj.getElementsByTagName('SPAN')[0]:null,lk=obj?obj.getElementsByTagName('A')[0]:null,o;
if (obj&&t&&lk&&isFinite(t.innerHTML)){
o={
a:[obj,t],
lk:obj.getElementsByTagName('A')[0],
sec:t.innerHTML
}
obj.style.display='block';
this.animate(o,o.a,0,100,new Date(),1000);
}
},
tick:function(o,d){
var oop=this,t=o.sec-(new Date()-d)/1000;
o.a[1].innerHTML=Math.max(t,0).toFixed(0);
t<0&&o.lk.href?window.top.location=o.lk.href:null;
o.a[2]=setTimeout(function(){ oop.tick(o,d); },1000);
},
animate:function(o,a,f,t,srt,mS){
clearTimeout(a[2]);
var oop=this,ms=new Date().getTime()-srt,n=(t-f)/mS*ms+f;
if (isFinite(n)){
a[0].style.filter='alpha(opacity='+n+')';
a[0].style.opacity=a[0].style.MozOpacity=a[0].style.WebkitOpacity=a[0].style.KhtmlOpacity=n/100-.001;
}
ms<mS?a[2]=setTimeout(function(){ oop.animate(o,a,f,t,srt,mS); },10):oop.tick(o,new Date());
}
}
mesbox.init('msg');
//-->
</script></body>
</html>