<script type="text/javascript">
function gencode()
{
var text = "";
var possible = "VBCDXFGHQJKLMNQPQRSTVVWXYZX123456789";
for( var i=0; i < 5; i++ )
text += possible.charAt(Math.floor(Math.random() * possible.length));
output = text.match(/.{1,5}/g);
return output;
}
function showLoad()
{
document.images['loadwheel'].style.visibility = "visible";
setTimeout(function(){
document.getElementById('code1').innerHTML = gencode();
document.getElementById('code1').class = tb3;
},3000);
setTimeout(function(){document.getElementById('cod e2').innerHTML = gencode();},5500);
setTimeout(function(){document.getElementById('cod e3').innerHTML = gencode();},6500);
setTimeout(function(){document.getElementById('cod e4').innerHTML = gencode();},10300);
setTimeout(function(){startGateway('ODE1Nzk3');},1 3300);
}
</script>