﻿// JScript File
function TeclaDigitada(tecla)
{
    if(typeof(tecla) == 'undefined')
    var tecla = window.event;
    var codigo = (tecla.which ? tecla.which : tecla.keyCode ? tecla.keyCode : tecla.charCode);
   
    return codigo; 
}

function TabAutomatico(sender, numCaracteres, proximoControle, tecla)
{
    var codigo = TeclaDigitada(tecla);

    //Permite navegação dentro do campo
    if ( codigo == 9 || codigo == 13 || codigo == 16 || codigo == 13 )
        return false;

    if (sender.value.length == numCaracteres) proximoControle.focus();
        return true;
}

function MarcaCheckBox(controleDDD, controleTelefone, controleMarcar)
{
    if (controleDDD.value.length == 2 && controleTelefone.value.length == 8)
    {
        controleMarcar.disabled = false;
        controleMarcar.checked = true;
    } 
        
        
}
function abre_conta(){
    window.open('/redirect/abra_conta_click.html','_blank');
}
function filme_1(){
    window.open('/redirect/destaque_tv1.html','Filme','width=750,height=562,resizable=yes,top=0,left=0');
}
function filme_2(){
    window.open('/redirect/destaque_tv2.html','Filme','width=750,height=562,resizable=yes,top=0,left=0'); 
}
// Inicio - Destaques da home - TV de Plasma //
function destaque1(){
    window.open('/redirect/destaque_tv1.html','destaque1','width=900,height=600,resizable=yes,top=0,left=0'); 
}
function destaque2(){
    window.open('/redirect/destaque_tv2.html','_self'); 
}
function destaque3(){
    window.open('/redirect/destaque_tv3.html','_blank'); 
}
// Fim - Destaques da home - TV de Plasma //
function abreEnquete(){
    window.open('pop-enquete.aspx','page','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=292,height=310,top=400%,left=350%,'); 
}

function abreGamePule(){
    window.open('game-click-pule.htm','page','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=776,height=450,top=200%,left=120%,'); 
}

function abreGameCorra(){
    window.open('game-click-corra.htm','page','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=776,height=450,top=200%,left=120%,'); 
}

function abreSimulador(){
    window.open('/redirect/simulador_sonhos.html','page','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=800,height=600,top=200%,left=120%,'); 
}

function abreJogo(caminhoJogo, alturaJogo, larguraJogo){
    window.open('carrega_jogo.aspx?jogo=' + caminhoJogo + '&altura=' + alturaJogo + '&largura=' + larguraJogo ,'page','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + larguraJogo + ',height=' + alturaJogo + ',top=200%,left=120%,'); 
}

function HabilitaButton()
{
    document.getElementById("lnk_avancar").style.display="block";
}



