

function div(d) {
    return document.getElementById(d);
}


// Load game after ad has been shown
function ViewGame() {
	div('adv-cont-game').style.display = 'inline';
	div('adv-game').style.display = 'none';
}

// Show ad contgameita
currentsecond = 10
function contgameita(){
	if (currentsecond!=1){
		currentsecond-=1
		div('conyu').innerHTML = currentsecond;
	}
	else{
		ViewGame();
		return
	}
	setTimeout("contgameita()",1000)
}

