
jQuery(function($) {
	/*
	$("#shipAddrSlct").change(function() {
		var addressName = $(this).val();
		if (addressName!=null && addressName!='')
			$('#shipAddressRootDiv').load('/app/ajax.do',{'action':'GetCustomerAddress','addressName':addressName});
	});
	*/
	$("#codigoCentralBtn").click(function() {
		if($("#codigoCentral").val().length ==5){
			$.fancybox({
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'width'		: '75%',
				'href'		: '/app/ajax.do?action=GetOficinasCorreos&cp='+$("#codigoCentral").val()+'&rnd='+Math.random()
			});
		}
	});
});


function compruebaMarcado(idControl){
	if(document.getElementById(idControl).value != "SELF_PICK" && document.getElementById(idControl).checked){
		if(document.getElementById('total_compra').value!="0"){
			var total = document.getElementById('total_compra').innerHTML;
			total = total.substring(0, total.length -1);
			if(total>=79 && total <=100){
				//tb_show('', '<app:link link="/app/productListGto.do?width=800&height=400"/>', '');
				
				document.getElementById('portes_gratis').style.display='block';
			}else{
				document.getElementById('portes_gratis').style.display='none';
			}
		}else{
			document.getElementById('portes_gratis').style.display='none';
		}
	}else{
		document.getElementById('portes_gratis').style.display='none';
	}
	/*if ("SELF_PICK"==$('.'+idControl+":checked").val()) {
		$('.shipHomePM').attr('disabled','disabled');
		$('.shipHomePM').attr('checked','');
		$('.selfPickPM').removeAttr('disabled');
		
	}else if ("SHIP_TO_HOME"==$('.'+idControl+":checked").val()){
		
		$('.selfPickPM').attr('disabled','disabled');
		$('.selfPickPM').attr('checked','');
		$('#storeId').val('');
		
		$('.shipHomePM').removeAttr('disabled');
		
	}*/
	if ("SELF_PICK"==$('#'+idControl+":checked").val()) {
		$('.tarjeta').show();
		$('.transferencia').show();
		$('.paypal').hide();
		$('.tienda').show();
		$('.codigopostalcorreos').hide();
	}else if ("SHIP_TO_HOME"==$('#'+idControl+":checked").val()) {
		$('.tarjeta').show();
		$('.transferencia').show();
		$('.paypal').show();
		$('.tienda').hide();
		$('.codigopostalcorreos').hide();
	}else if ("SHIP_TO_CORREOS"==$('#'+idControl+":checked").val()) {
		$('.tarjeta').show();
		$('.transferencia').show();
		$('.paypal').show();
		$('.tienda').hide();
		$('.codigopostalcorreos').show();
	}
	
}
