timer = null;
ventana = null;
n = 10;
aviso = false;
function fnPopup(){
	ventana = window.open('http://unblocktoday.com/sponsor.html', 'popup', 'toolbar=no,menubar=no,location=no,width=730,height=500,left=150,top=150');
	$('input[name=btnMasuk]').val('10');
	$('input[name=btnMasuk]').attr('disabled','disabled');
	timer = setInterval("empieza_contar()", 1000);
}
function empieza_contar(){
	if(ventana != null){
		if(ventana.closed){
			alert('Please Wait For 10 Seconds');
			clearInterval(timer); n = 10;
			$('input[name=btnMasuk]').val('Go!');
			$('input[name=btnMasuk]').removeAttr('disabled');
			return;
		}
		if(ventana.frames.length == 3){
			return false;
		}else{
			n = n - 1;
			$('input[name=btnMasuk]').val(n);
			if(n == 0){
				clearInterval(timer);
				$('input[name=btnMasuk]').remove();
				$('input[name=B2]').before('<input type="submit" value="Go!" />');
			}
		}
	}
}
