function lightAddCartOn( artId, qty ){
	
	if( qty < 1 )
	{
		alert('Por favor especifique una cantidad mayor o igual a 1 para agregar este producto');
		return;
	}
	
	$.ajax(
    {
		type: "post",
		url: $basePath+'pedido/LBAddConfirm',
		data: "ART_ID="+artId+"&ORDER_ART_QTY="+qty,
		success: function(data)
		{
			$('#LightAddCartContent').html(data);
		}
	});
	
	$("#LightAddCart").fadeIn();
	document.getElementById('LightBack').style.display 	   	= 	'block'; //no hacer fade del fondo, rompe en ie

}
	
function lightAddCartOff(){
	$("#LightAddCart").fadeOut();
	document.getElementById('LightBack').style.display 	   	= 	'none'; //no hacer fade del fondo, rompe en ie

}
