1. Select the template 'vbanonymizer' (Version 1.0).
2. Find:
Add Below:
Code:
<script language="javascript" type="text/javascript">
<!--
x = $vboptions[vbanonymizer_delay] + 1;
function countdown()
{
x--;
if(x > -1)
{
document.getElementById("delay").innerHTML = x;
setTimeout('countdown()',1000);
}
}
//-->
</script>
3. Find:
Replace With:
Code:
<body onload="countdown();">
4. Find:
Code:
You are now leaving $vboptions[bbtitle] and being redirected to <b>$url</b> in $vboptions[vbanonymizer_delay] seconds.
Replace With:
Code:
You are now leaving $vboptions[bbtitle] and being redirected to <b>$url</b> in <span id="delay"></span> seconds.