(function () {
var ENDPOINT = "https://app.cash4pawn.com/api/functions/trackEvent";
function getSessionId() {
try {
var sid = sessionStorage.getItem("c4p_session_id");
if (!sid) {
sid = "sess_" + Date.now() + "_" + Math.random().toString(36).slice(2, 10);
sessionStorage.setItem("c4p_session_id", sid);
}
return sid;
} catch (e) {
return "sess_" + Date.now();
}
}
function getDeviceType() {
var ua = navigator.userAgent;
if (/tablet|ipad/i.test(ua)) return "tablet";
if (/mobi|android|iphone/i.test(ua)) return "mobile";
return "desktop";
}
function trackPageView() {
var event = {
event_type: "page_view",
source: "wix",
page_url: window.location.href,
page_path: window.location.pathname,
page_title: document.title,
session_id: getSessionId(),
referrer: document.referrer,
user_agent: navigator.userAgent,
device_type: getDeviceType(),
};
fetch(ENDPOINT, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ events: [event] }),
mode: "cors",
}).catch(function () {});
}
if (document.readyState === "complete") {
trackPageView();
} else {
window.addEventListener("load", trackPageView);
}
var lastPath = window.location.pathname;
setInterval(function () {
if (window.location.pathname !== lastPath) {
lastPath = window.location.pathname;
trackPageView();
}
}, 1000);
})();
top of page
Vintage Bone China “The Flowering Dogwood” Bell by Jeanne Holgate
Franklin Porcelain Bell – “The Sonia Rose”
Title: The Sonia Rose
Artist: Jeanne Hogarth
Manufacturer: Franklin Porcelain / The Franklin Mint
Year: 1985 (© 1985 FR shown inside)
Material: Fine porcelain (often referred to as bone china by Franklin)
Country of Manufacture: Japan
Description
Features a fully sculpted pink Sonia rose bloom forming the finial/top of the bell
Wrapped with raised green leaves and stem in high relief
Soft pastel coloring with realistic petal layering
Interior includes:
Porcelain clapper
Hanging wire
Black printed mark:
“THE SONIA ROSE by Jeanne Hogarth – © 1985 FR”
Gold-trimmed base rim, consistent with Franklin Porcelain quality
This is a flower-only design, not part of the bird series, but made during the same collectible era.
Typical Size
Height: ~4.5–5 inches
Diameter: ~2.75 inches
bottom of page