function poner_butaca(tipo,id,sector){
	
	var i = id.split(",");
	var f = i[0];
	var b = i[1];
	
	if(tipo == "b_butaca_mv"){
		m = "_mv";	
	} else {
		m = "";	
	}
	
	$("#lista_butacas_seleccionadas").append("<li id=\"butaca_"+id+"\"><div class=\"icono_butaca"+m+"\" style=\"float:left\"></div><div style=\"float:left; margin-top:3px; margin-left:10px\"><strong style=\"color:#fff\">"+sector+"</strong> <strong>Fila:</strong> "+f+" - <strong>Butaca:</strong> "+b+"</div></li>");	

}

function listar_butacas(){
	
	var total = 0;
	var precio = parseInt($("#precio").attr("value"));
	
	$("#lista_butacas_seleccionadas").html("").html("<li id=\"ninguna\" style=\"width:260px;text-align:center; color:#aaa\">Ninguna butaca seleccionada</li>");
	
	$(".b_butaca_sel").each(function(){
		var id = $(this).attr("id");
		var sector = $(this).find(".sector").attr("value");
		poner_butaca("b_butaca",id,sector);
		
		total += precio;
		
	});
	
	$(".b_butaca_mv_sel").each(function(){
		var id = $(this).attr("id");
		var sector = $(this).find(".sector").attr("value");
		poner_butaca("b_butaca_mv",id,sector);
		
		total += precio;
	});
	
	$("#total").show().html("IMPORTE TOTAL:&nbsp;&nbsp;<strong>"+total+" €</strong>");
	
	if(total == 0){
		$("#ninguna").show();
		$("#total").hide();
		$("#b_compra_entradas").hide();
		$("#b_cancela_entradas").hide();
	} else {
		$("#ninguna").hide();
		$("#b_compra_entradas").show();
		$("#b_cancela_entradas").show();
		if(total/precio > 14){
			$("#lista_butacas_seleccionadas").css({height:"415px",overflow:"auto"});
		} else {
			$("#lista_butacas_seleccionadas").css({height:"",overflow:""});
		}
	}
	
}
