﻿function popAssistencia(url){
    window.open(url , '_blank', 'width=530,height=500,left=50,top=50,scrollbars=yes,resizable=no,menubar=no,toolbar=no');
}

function popAmigo(url){
    window.open('../pop-up/pop_amigo.aspx?destino='+ url, '_blank', 'width=525,height=450,left=50,top=50,scrollbars=no,resizable=no,menubar=no,toolbar=no');
}

function impressao(){
	popimpressao = window.open('', '_blank', 'width=730,height=500,left=0,top=0,scrollbars=yes,resizable=no,menubar=no,toolbar=no');
	var d, s ;
	d = new Date();
	s =  d.getDate()+ ".";
	s += (d.getMonth() + 1) + ".";
	s += d.getFullYear();


	with (popimpressao.document) {
		write('<html><head><title>Imprime</title></head>');
		//write('<link rel="stylesheet" href="../_css/default.css" type="text/css">');
		write('<link href="../_css/print.css" rel="stylesheet" type="text/css">');
		write('<body>');
		//write('<div style="background:#E4E4E4;padding:12px 40px">');
		//write('<img src="../../img/logo_impressao.gif" width="144" height="46" alt="">');
		//write('</div>');
		write('<div style="width:670px;margin:10px 0 0 20px" class="texto_preto" >');
		//write(document.getElementById("areaTopo").innerHTML.replace("100%","720").replace("50%","350").replace("50%",""));
		//write('<div style="height: 1px; width: 690px; background-color:#CCC; display: block;" class="MT10 MB10"><!-- --></div>');
		//alert(document.getElementById("conteudo").innerHTML)
		write(document.getElementById("conteudo").innerHTML.replace("bt_hotsite","pix"));
		//write(document.getElementById("conteudo").innerHTML.replace("texto_2","texto_preto").replace("texto_4","texto_preto").replace("texto_4","texto_preto").replace("texto_5","texto_preto"));
		write('</div>');
		write('<table cellpadding="0" cellspacing="0" border="0" width="670" style="margin:0 0 0 10px;border-top:solid 1px #CCC;"><tr><td class="texto_preto T11">&nbsp;&nbsp;&nbsp;&nbsp;<em>Data: ' + s + '<br>&nbsp;&nbsp;&nbsp;&nbsp;http://www.cfl.com.br/</em></td></tr></table>');
		write('<br></body></html>');
		close();
		}
        popimpressao.print();
}


   function lembraSenha(){
    
        $("#areaLembraSenha").fadeIn("slow");

    } 



 function exibeMSG(msg){
	//alert(msg);
	$("#textoMSG").innerHTML = msg;
	$("#areaMsg").slideDown("slow");
	setTimeout("escondeMSG()",7000)

  }

  function escondeMSG(){
	
	$("#areaMsg").fadeOut("slow");

  }
  
  function formAssistencia(idsDIV){
    var i;
    if (idsDIV.indexOf(',') > 0){
        var arrDIVs = idsDIV.split(',');
    }
    else{
        var arrDIVs = Array(idsDIV);
    }
       
    for (i = 0; i <= arrDIVs.length; i++) {
        if (eval('document.getElementById(\'' + arrDIVs[i] + '\').style.display == \'none\''))
            eval('document.getElementById(\'' + arrDIVs[i] + '\').style.display = \'block\';');
        else
            eval('document.getElementById(\'' + arrDIVs[i] + '\').style.display = \'none\';');
    }    
  }
