function AtendimentoOnline(){
	window.open('livezilla/chat.php','','width=590,height=580,left=10,top=10,resizable=yes,menubar=no,location=no,status=yes,scrollbars=yes');
}

function AbrirIndique(c){
	$(".popIndique").popup({
		objectClose: ".popFechar",
		objectHide: false,
		height: 320,
		width: 440
	});
	if(!c){
		$(".popIndique .formulario").show();
		$(".popIndique .agradecimento").hide();
	}
}

function check(o){
	var a = $(o);
	var input = $("input", a);
	
	if(input.attr("checked")){
		a.removeClass("sel");
		input.removeAttr("checked");
	}else{
		a.addClass("sel");
		input.attr("checked", "checked");
	}
}
