
jQuery(function($) {
	$("#shipAddrSlct").change(function() {
		var addressName = $(this).val();
		if (addressName!=null && addressName!='')
			$('#shipAddressRootDiv').load('/app/ajax.do',{'action':'GetCustomerAddress','addressName':addressName});
	});
		 
		
});


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');
		
	}
	
}
