﻿function PlayVideo(obj) {
    winVideo = window.open('', '_blank', 'height=350,width=420,status=yes,toolbar=no,menubar=no,location=no');
    
    var file = obj.getAttribute('flashvars',2);
    
    var player = "<object id='ply' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='400' height='320' >";
    player += "<param name='movie' value='../../_AdmSite/_jwplayer/player-viral.swf' />";
    player += "<param name='flashvars' value='file=" + file + "'/>";
    player += "<param name='bgcolor' value='#ffffff' />";
    player += "<param name='quality' value='high' />";
    player += "<param name='allowfullscreen' value='true' />";
    player += "<param name='allowscriptaccess' value='always' />";
    player += "<param name='wmode' value='opaque' />";
    player += "<param name='menu' value='false' />";
    player += "<param name='image' value='accept.png' />";
    
    player += "<embed type='application/x-shockwave-flash' name='ply'	src='../../_AdmSite/_jwplayer/player-viral.swf' 	width='400' height='320' allowscriptaccess='always' 	allowfullscreen='true'	flashvars='file=" + file + "'/> ";
    player += "</object >";

    winVideo.document.body.innerHTML = player; 
    winVideo.document.title ='Visualizar Vídeo';

    return false;
}


function EnviarFaleConosco()
{
    //metodo responsável por validar o envio da email
    var Content = '';


    var strTexto = Trim(document.getElementById(Content + "txtNome").value);

    if (strTexto.length == 0) {
        alert('favor inserir um texto para o campo Nome!');
        document.getElementById(Content + "txtNome").focus();
        return false;
    }
    

    strTexto = Trim(document.getElementById(Content + "txtTelefone").value);
    if (strTexto.length == 0) {
        alert('favor inserir um texto para o campo Telefone!');
        document.getElementById(Content + "txtTelefone").focus();
        return false;
    }


    strTexto = Trim(document.getElementById(Content + "txtEmail").value);
    if (strTexto.length == 0) {
        alert('favor inserir um texto para o campo e-mail!');
        document.getElementById(Content + "txtEmail").focus();
        return false;
    }
    else {
        parte1 = strTexto.indexOf("@");
        parte2 = strTexto.indexOf(".");
        parte3 = strTexto.length;
        if (!(parte1 >= 3 && parte2 >= 6 && parte3 >= 9)) {
            alert('favor inserir um texto válido para o campo e-mail!');
            document.getElementById(Content + "txtEmail").focus();
            return false;
        }
    }



    strTexto = Trim(document.getElementById(Content + "txaDescricao").value);
    if (strTexto.length == 0) {
        alert('favor inserir um texto para o campo Descrição!');
        document.getElementById(Content + "txaDescricao").focus();
        return false;
    }
    
    
    var hidIDPage = document.getElementById("hidIDPage");
    var txtNome = document.getElementById("txtNome");
    

    var queryString = 'hidIDPage=' + hidIDPage.value + '&Nome=' + txtNome.value;

    var form = document.forms[0];
    form.target= 'fraProcessaFaleConosco';
    form.method= 'post';
    form.action ='../../_AdmSite/_template/ControlarPagina.aspx';
    form.submit();
    
    

}
