Código:
function getTipoEnvio(){
var tipo_envio=$('input:radio[name=tipo_envio]:checked').val();
$("#f_send_type").val('');
if(tipo_envio==null){
tipo_envio=$.cookie('tipo_envio');
if(tipo_envio==null){
return null;
}else{
if(tipo_envio[0]=='e'){
$('#envio_email').attr('checked', true);
}if(tipo_envio[0]=='p'){
$('#envio_postal').attr('checked', true);
}if(tipo_envio[0]=='f'){
$('#envio_formulario').attr('checked', true);
if($('input:checkbox[name=enviar_formularios]').is(':checked')){
tipo_envio+="f";
}
}
}
}
/*aca quite el check del form*/
$.cookie('tipo_envio',tipo_envio);
$("#f_send_type").val(tipo_envio);
return tipo_envio;
}


