    function UpdatePlayList() {
        new Ajax.Updater("playlist", "/85tv/interface/playlist", { asynchronous:true, evalScripts:true} );
    }

    var comentario_visivel = false;
    function comentarioUp() {
        if (comentario_visivel) {

            new Effect.Move('baixo_principal', { x: 0, y: -400 });
            new Effect.Move('imagemBaixo', { y: -400 });
            //new Effect.Move('comentario', { y: -400 });
            Effect.Fade('comentario', { duration: 1.0 });

            comentario_visivel = false;
            
        }
    }

    
    function Comentario() {
        
        if (!comentario_visivel) {

            comentario_visivel = true;
            $("comentario").style.visibility = 'visible';
            $("principal").style.height = "790px";
            
            
            new Effect.Move('comentarios', { y: 400 });
            $("comentarios").style.height = "400px";
            Effect.BlindDown('comentarios', { duration: 1.0 });
            new Effect.Move('baixo_principal', { x: 0, y: 400 });
            
        }
    }

    //Transicoes de inicio
    function transicoess() {
        //MOSTRAR VISIVEL
        $("player").style.visibility = 'visible';
        $("ultimosvideos").style.visibility = 'visible';

        //TRANSICAO DO PLAYER
        new Effect.Move('player', {
            x: 0, y: -490, mode: 'relative',
            transition: Effect.Transitions.spring,
            duration: 5.0
        });

        //TRANSICAO DO ULTIMOSVIDEOS
        Effect.SlideDown('ultimosvideos', { duration: 2.0, scaleContent:true });

    }


//Menu 
function gotoInicio() {
    new Ajax.Updater('result_videolist','_templates/videolist.php',{asynchronous:true,evalScripts:true});
}

function gotoUltimosVideos() {
    new Ajax.Updater('result_videolist','_templates/videolist.php?action=lasts',{asynchronous:true,evalScripts:true});
}

function gotoMaisVistos() {

	new Ajax.Updater('result_playlist','_templates/ultimosvideos.php?action=moreseen',{asynchronous:true,evalScripts:true});
}

function gotoBtnBuscar(par) {
	new Ajax.Updater('result_videolist','_templates/videolist.php?keyword='+par,{asynchronous:true,evalScripts:true});
	
}

function gotoByCategory(par) {
	new Ajax.Updater('result_videolist','_templates/videolist.php?category='+par,{asynchronous:true,evalScripts:true});
}

function comentario(par) {
	document.getElementById("comentario").style.visibility = 'visible';
	new Effect.Move('listVideos', { y: 370 }); new Ajax.Updater('comentario','_templates/comentario.php?video='+par,{asynchronous:true,evalScripts:true});return false;
}

function btnComentar() {
	document.getElementById("comentario").disabled = true;
	var nm_pessoa = document.getElementById("pNm_Pessoa").value;
	var nm_email = document.getElementById("pNm_Email").value;
	var nm_comentario = document.getElementById("pComentario").value;
	new Ajax.Updater('executa','_exec/comentario.php?nm_pessoa='+nm_pessoa+"&nm_email="+nm_email+"&nm_comentario="+nm_comentario+'&cd_video=',{ asynchronous:true,evalScripts:true});	
}

