﻿function fn_flash(largura, altura, arquivo, transparencia)
{
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+largura+'" height="'+altura+'" id="teste" align="middle">');
    document.write('<param name="allowScriptAccess" value="sameDomain" />');
    document.write('<param name="wmode" value="'+transparencia+'" />');
    document.write('<param name="menu" value="false" />');
    document.write('<param name="movie" value="'+arquivo+'" />');
    document.write('<param name="quality" value="best" />');
    document.write('<param name="bgcolor" value="#ffffff" />');
    document.write('<embed src="'+arquivo+'" wmode="'+transparencia+'" menu="false" quality="best" width="'+largura+'" height="'+altura+'" name="teste" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
    document.write('</object>');
}

function fn_assine()
{
    window.open('http://www.hostcuiaba.com/central_assinante/index.aspx', '', 'status=no, resizable=no, menubar=no, scrollbars=no, height=530, width=790, left=0, top=0');
}

function fn_fale_conosco()
{
    var int_Count = new Number();
        int_Count = 0;

    if (window.document.getElementById('ctl00$Cph_MasterPage$Rpn_Email$Txb_Nome').value == '')
    {
        window.alert('Campo "Nome" é de preenchimento obrigatório. Favor preenche-lo!');
        window.document.getElementById('ctl00$Cph_MasterPage$Rpn_Email$Txb_Nome').focus();
        int_Count++;
        return false;
    }

    if (window.document.getElementById('ctl00$Cph_MasterPage$Rpn_Email$Txb_Email').value == '')
    {
        window.alert('Campo "E-Mail" é de preenchimento obrigatório. Favor preenche-lo!');
        window.document.getElementById('ctl00$Cph_MasterPage$Rpn_Email$Txb_Email').focus();
        int_Count++;
        return false;
    }

    if (window.document.getElementById('ctl00$Cph_MasterPage$Rpn_Email$Cbx_Assunto').value == '')
    {
        window.alert('Campo "Assunto" é de preenchimento obrigatório. Favor preenche-lo!');
        window.document.getElementById('ctl00$Cph_MasterPage$Rpn_Email$Cbx_Assunto').focus();
        int_Count++;
        return false;
    }

    if (window.document.getElementById('ctl00$Cph_MasterPage$Rpn_Email$Mmo_Mensagem').value == '')
    {
        window.alert('Campo "Mensagem" é de preenchimento obrigatório. Favor preenche-lo!');
        window.document.getElementById('ctl00$Cph_MasterPage$Rpn_Email$Mmo_Mensagem').focus();
        int_Count++;
        return false;
    }

    if (int_Count == 0) 
    {
        return true;
    }
}

function fn_newsletter()
{
    var str       = window.document.getElementById('ctl00_Txb_Email').value;
    var filter    = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
    var int_Count = new Number();
        int_Count = 0;

    if (window.document.getElementById('ctl00_Txb_Nome').value == '')
    {
        window.alert('Campo "Nome" é de preenchimento obrigatório. Favor preenche-lo!');
        window.document.getElementById('ctl00_Txb_Nome').focus();
        int_Count++;
        return false;
    }


    if (!filter.test(str))
    {
        window.alert('Campo "E-mail" inválido. Favor preenche-lo!');
        window.document.getElementById('ctl00_Txb_Email').focus();
        int_Count++;
        return false;
    }

    if (int_Count == 0)
    {
        return true;
    }
}
