<?xml version='1.0' encoding='ISO-8859-1'?>
<html> 

<head> 
	<title> 
		Rick's Rods 
	</title> 
	
</head> 
</html>

<script>

function saveCheckboxValues() {
    const checkboxes = document.querySelectorAll('input[type="checkbox"]');
    let checkedValues = [];

    checkboxes.forEach(function (checkbox) {
        if (checkbox.checked) {
            checkedValues.push(checkbox.value);
        }
    });

    localStorage.setItem('checkedValues', JSON.stringify(checkedValues));
}

document.getElementById('myForm').addEventListener('submit', function (event) {
    event.preventDefault();
    saveCheckboxValues();
});

    function loadCheckboxValues() {
    const checkedValues = JSON.parse(localStorage.getItem('checkedValues'));

    if (checkedValues) {
        const checkboxes = document.querySelectorAll('input[type="checkbox"]');
        checkboxes.forEach(function (checkbox) {
            if (checkedValues.includes(checkbox.value)) {
                checkbox.checked = true;
            }
        });
    }
}

loadCheckboxValues();
</script>

<rss  xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<atom:link href="https://ricksrods.com/recentFeed/" rel="self" type="application/rss+xml"/>
<title>Rick's Rods - New Items Feed</title>
<link>https://ricksrods.com/recent.asp</link>
<description>The latest items offered for sale at Rick's Rods.</description>
<language>en-us</language>
<copyright>Copyright (c) 2023 ricksrods.com</copyright>

<item>
<guid isPermaLink="false">RR-RECENT-4031-2026081801</guid>
<title><![CDATA[BF2266 (Phillipson)]]></title>
<description><![CDATA[8&#39;6&#34;, 3/2 Premium model. Custom Crafted. Weighing 5 1/2 oz.  HDH (DT5) line weight. Hammer handle grip. Down-locking wood insert no rock reel seat. Wrapped with pure black silk tipped with gold and black. Gold tone nickel silver ferrules sizes 12 and 18. This was Phillipson&#39;s top of the line rod and was crafted between 1946 and 1948.  Includes original bag and gold anodized aluminum Phillipson tube. This rod has never been fished.]]></description>
<link>https://ricksrods.com/product_view.asp?pID=4031</link>
<pubDate>Tue, 18 Aug 2026 00:00:00 -0600</pubDate>
</item>

</channel>
</rss>