document.write('\n');
document.write('\n');
var blenza_opt_namemax = 80;
var blenza_opt_linkmax = 152;
var bzloc_youfirst = "You're first";
var bzloc_younext = "You're next";
var bzloc_ifparticip = "If you are participating in";
var bzloc_toaddlink = "To add your entry to the list";
var bzloc_enter = "Enter";
var bzloc_next = "Next";
var bzloc_siteusing2a = "fill in the form below and press ";
var bzloc_siteusing2 = bzloc_siteusing2a + bzloc_enter + ".";
var bzloc_thumb2a = " to add your thumbnail.";
var bzloc_thumb2 = bzloc_siteusing2a + bzloc_next + bzloc_thumb2a;
var bzloc_siteusing3 = "click here and fill in the form that pops up";
var bzloc_yourname = "Your name";
var bzloc_yoururl = "Your URL";
var bzloc_comment = "Please leave a comment after linking... Thank you!";
var bzloc_checkname = "Please enter your name.";
var bzloc_namelength = "The length of your name must be less than or equal to";
var bzloc_checkurl = "Please enter your link URL.";
var bzloc_urllength = "The length of your URL must be less than or equal to";
var bzloc_urlprefix = "Link URL must begin with 'http://'";
var bzloc_sharedmeme = "Shared Meme - Click to Subscribe";
var bzloc_clicktodisp = "Click here to display the links for this post";
var bzloc_upgrademult = "You may upgrade to display more than one Linky at a time";
var bzloc_owner = "Blog Owner";
var bzloc_export = "If you wish to export this list to HTML, click here";
var bzloc_disablemsg = "Click here to disable this message";
var bzloc_whatthis = "What is this?";
var bzloc_expiry = "Linky Widget expiration";
var bzloc_winner = "Winning entry";
var bzloc_caching = "Caching system in use... links may take a minute to post";
var bzloc_thumbnext = "Click here to add your thumbnail if the pop-up does not appear.";
var bzloc_cktool = "Click here for Mister Linky's name/URL cookie removal tool.";
var bzloc_nopopwin = "Unable to open the thumbnail popup window. Check your browser settings.";
var bzloc_maint = "Please read about the upcoming system maintenance";
var bzloc_bugcheck = "An internal error has occurred. Please report this at http://www.misterlinky.net/helpdesk/";
var bzloc_dashboard = "Dashboard";
var bzloc_clickdisp = "Click to display the links and settings for this widget";
var bzloc_policy = "Check to accept use/privacy policy (click to read)";
var bzloc_nopolicy = "You must accept the use/privacy policy to use this widget.\n\nClick the link below to read the policy and check the box to accept.\n\nThen press Enter again to add your link to the list.\n\nNOTE: If you like, you can click a button on the policy page\nto save a cookie and remember you've accepted the policy.";
blenza_ifr = null;
var blenza_newwin = 1;
function getIEVersion(){
var agent = navigator.userAgent;
var reg = /MSIE\s?(\d+)(?:\.(\d+))?/i;
var matches = agent.match(reg);
if (matches != null) {
return { major: matches[1], minor: matches[2] };
}
return { major: "-1", minor: "-1" };
}
var ie_version = getIEVersion();
var is_ie10 = ie_version.major == 10;
var is_ie9e = ie_version.major > 0 && ie_version.major <= 9;
if (!blenza_inited) {
var blenza_whoName = null;
var blenza_whoEmail = null;
var blenza_whoURL = null;
var blenza_user = null;
var blenza_xurl = null;
var blenza_showredx = true;
var blenza_color = null;
var blenza_thumbGetter = null;
var blenza_thumbExternal = null;
var blenza_thumbRoot = new Array();
var blenza_thumbApprove = null;
var blenza_border = "#000";
var blenza_gray = "#888";
var blenza_meme_unset = new Array();
var blenza_meme_id = new Array();
var blenza_meme_name = new Array();
var blenza_meme_text = new Array();
var blenza_meme_shared = new Array();
var blenza_nourl = new Array();
var blenza_hideurl = new Array();
var blenza_ord = 0;
var blenza_expiration = null;
var blenza_memelinks = true;
var blenza_winnerName = null;
var blenza_winnerUrl = null;
var blenza_bycol = 1;
var blenza_fliplinks = 0;
var blenza_alphasort = 0;
blenza_dynamic = false;
var metas = document.getElementsByTagName("meta");
for (var i = 0; i < metas.length; i++) {
if (metas[i].name == "blogger-template")
blenza_dynamic = metas[i].content == "dynamic";
}
}
var blenza_ntu = new Array();
function blenza_xhr()
{
if (window.XMLHttpRequest) return new XMLHttpRequest();
else if (window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP");
else return null;
}
function blenza_xml(text)
{
if (text.message != null) text = text.message;
var xml;
if (text.length >= 5 && text.substring(0, 5) == "request-error" + text + "";
return blenza_parse(xml);
}
function blenza_parse(xml)
{
var doc;
if (window.DOMParser) {
var p = new DOMParser();
doc = p.parseFromString(xml,"text/xml");
}
else {
doc = new ActiveXObject("Microsoft.XMLDOM");
doc.async = false;
doc.loadXML(xml);
}
return doc;
}
function blenza_send(url, data, postid, cb)
{
// hack: if it's IE9 or earlier, just do a get and be done with it
if (is_ie9e) {
var img = document.getElementById("status-" + postid);
if (img != null) {
var now = new Date().getTime();
img.src = url + "?" + data + "&iehack=true&ts=" + now;
}
cb(blenza_xml("success"));
return;
}
try {
var method = data ? "POST" : "GET";
var req = blenza_xhr();
req.open(method, url, true);
if ("withCredentials" in req) {
req.withCredentials = true;
}
if (method == "POST")
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");
req.onreadystatechange = function() {
if (req.readyState !== 4) return;
if (req.status != 200) {
cb(blenza_xml("Unexpected request status " + req.status));
}
else if (req.responseXML != null) {
cb(req.responseXML);
}
else {
cb(blenza_xml(req.responseText));
}
};
req.send(data);
}
catch (e) {
msg = e.message;
if (msg == null || msg.length == 0) msg = "Unknown error";
cb(blenza_xml(msg));
}
}
function blenza_getValue(ele, name)
{
if (ele == null) return null;
var elems = ele.getElementsByTagName(name);
if (elems == null) return null;
var one = elems.item(0);
if (one == null || one.firstChild == null) return null;
if (one.firstChild.data != null) return one.firstChild.data;
else return null;
}
function blenza_checkStatus(ele)
{
if (ele == null) {
alert("Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: could not check status");
return false;
}
var sts = blenza_getValue(ele, "status");
if (sts == "success")
return true;
var err = blenza_getValue(ele, "error");
if (sts == "request-error")
msg = "An error occurred while processing the request:\n" + err + "\nPlease try your request again later";
else if (sts == "internal-error")
msg = "Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: " + err;
else if (err == "Duplicate entry")
msg = "That entry has already been added to the list";
else
msg = "Error: " + err;
alert(msg);
return false;
}
function blenza_doInsert(form, xurl, postid, cb)
{
var data = "";
for (i = 0; i < form.elements.length; i++) {
var ele = form.elements[i];
var name = ele.name;
if (name.length < 3 || name.substring(0,3) != "ml_") continue;
if (data.length > 0) data += "&";
data += name.substring(3) + "=";
var val;
if (ele.type == "checkbox") {
if (ele.checked) val = ele.value;
else val = "";
}
else val = ele.value;
data += escape(val);
}
blenza_send(xurl + "/entry_api.php", data, postid, cb);
}
function blenza_switcheroo(off, on)
{
var ele1 = blenza_elem(off);
ele1.style.display = "none";
var ele2 = blenza_elem(on);
ele2.style.display = "block";
}
function blenza_setNextone(pi, name, url)
{
var nx = blenza_elem("nextone-" + pi);
if (nx != null) {
nx.innerHTML = '' + name + '';
}
}
function blenza_reThumb(a, pi)
{
var form = document.getElementById("blenza_" + pi);
if (form == null) {
alert("Cannot locate form, please report internal error to Mister Linky");
return false;
}
form.action = blenza_xurl + "/thumbwin.php";
var name;
if (form.ml_name) name = form.ml_name.value;
else name = form.name.value;
if (! blenza_checkName(name)) return false;
var url;
if (form.ml_url) url = form.ml_url.value;
else url = form.url.value;
if (! blenza_checkUrl(pi, url)) return false;
a.href = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + escape(name) + "&url=" + escape(url);
return true;
}
function blenza_policyCheck(id)
{
var chk = document.getElementById("policy" + id);
if (chk) chk.checked = true;
}
// new and improved!
function blenza_doEnter(form) // false on error
{
if (!form) return;
try {
var name = null;
if (form.ml_name && form.ml_name.value) name = form.ml_name.value;
var url = null;
if (form.ml_url && form.ml_url.value) url = form.ml_url.value;
var pi = form.ml_postid.value;
var xurl = form.ml_xurl.value;
if (! blenza_checkName(name)) return false;
if (pi == null || xurl == null) {
alert(bzloc_bugcheck);
return false;
}
if (!form.policy.checked) {
alert(bzloc_nopolicy);
return false;
}
if (! blenza_checkUrl(pi, url)) return false;
if (form.ml_src.value != "thumb") {
var cb = function(doc) {
if (! blenza_checkStatus(doc)) return;
blenza_setNextone(pi, name, url);
blenza_switcheroo("theform-" + pi, "theform2-" + pi);
}
blenza_doInsert(form, xurl, pi, cb);
}
else {
var popurl = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + name + "&url=" + escape(url);
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin == null) alert(bzloc_nopopwin);
}
}
catch (e) {
alert("Uncaught error: " + e.message + "\n" + e.stack);
}
return false;
}
function blenza_checkName(name)
{
if (name.length == 0) {
alert(bzloc_checkname);
return false;
}
if (name.length > blenza_opt_namemax) {
alert(bzloc_namelength + " " + blenza_opt_namemax);
return false;
}
return true;
}
function bz_starts(str, pre)
{ return (str.substring(0, pre.length) == pre); }
function blenza_checkUrl(pi, url)
{
if (blenza_nourl[pi] > 0) return true;
if (url.length == 0) {
alert(bzloc_checkurl);
return false;
}
if (url.length > blenza_opt_linkmax) {
alert(bzloc_urllength + " " + blenza_opt_linkmax);
return false;
}
if (!bz_starts(url, "http://") && !bz_starts(url, "https://")) {
alert(bzloc_urlprefix);
return false;
}
if (url == "http://www.") {
alert(bzloc_checkurl);
return false;
}
return true;
}
function blenza_elem(id)
{
return document.getElementById(id);
}
function blenza_display(xurl, owner, pi)
{
var popwin = window.open(xurl + "/display.php?owner=" + owner + "&postid=" + pi, "blenza_linkypop", "height=360,width=400,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null) {
return;
}
}
function blenza_getthumb(owner, pi, secret)
{
var popurl = blenza_thumbGetter + "getthumb.php?owner=" + owner + "&postid=" + pi + "&secret=" + secret + "&init=true";
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null)
setTimeout(function(){ blenza_getthumb2(popwin, popurl); }, 3000);
}
function blenza_getthumb2(popwin, popurl)
{
try {
if (popwin == null) return;
if (popwin.innerHeight != null) return;
}
catch (err) {
return;
}
}
function blenza_setwho(n, e, u)
{
blenza_whoName = n;
blenza_whoEmail = e;
blenza_whoURL = u;
}
function blenza_setuser(v)
{
blenza_user = v;
}
function blenza_setredx(v)
{
blenza_showredx = v;
}
function blenza_setxurl(v)
{
blenza_xurl = v;
}
function blenza_setcolor(v)
{
blenza_color = v;
}
function blenza_setthumbs(pi, g, e, r, a)
{
blenza_thumbGetter = g;
blenza_thumbExternal = e;
blenza_thumbRoot[pi] = r;
blenza_thumbApprove = (a > 0);
}
function blenza_setmeme(pi, id, name, text, shared)
{
blenza_meme_unset[pi] = false;
blenza_meme_id[pi] = id;
blenza_meme_name[pi] = name;
blenza_meme_text[pi] = text;
blenza_meme_shared[pi] = shared;
}
function blenza_unsetmeme(pi)
{
blenza_meme_unset[pi] = true;
blenza_meme_id[pi] = null;
blenza_meme_name[pi] = null;
blenza_meme_text[pi] = null;
blenza_meme_shared[pi] = null;
}
function blenza_setYourUrl(pi, nourl, hideurl)
{
blenza_nourl[pi] = nourl;
blenza_hideurl[pi] = hideurl;
}
function blenza_setExpires(str)
{
blenza_expiration = str;
}
function blenza_setMemelinks(v)
{
blenza_memelinks = v;
}
function blenza_setWinner(name, url)
{
blenza_winnerName = name;
blenza_winnerUrl = url;
}
function blenza_setFliplinks(n)
{
blenza_fliplinks = n;
}
function blenza_setAlphasort(n)
{
blenza_alphasort = n;
}
function blenza_setBycol(n)
{
blenza_bycol = n;
}
function blenza_dispExpires()
{
if (blenza_expiration == null) return;
document.write("
" + bzloc_expiry + ": " + blenza_expiration + ".
");
if (blenza_winnerName == null) return;
document.write("' + afterComment + spanCktool);
if (is_ie9e) document.write('![](' + blenza_xurl + '/images/status-pending.png)
');
if ((src != "easy") && (src != "thumb")) {
document.write("
" + bzloc_caching);
}
document.write('');
blenza_linkies_fini(src, owner, pi, secret, cols, data);
}
function blenza_linkies(src, owner, pi, secret, cols, data)
{
if (pi == "^Preview") data = previewData;
blenza_linkies_wrap1();
blenza_linkies_list(src, owner, pi, secret, cols, data);
if ((src == 'comm') || (src == 'disp')) return;
if (src == 'side')
blenza_linkies_side(src, owner, pi, secret, cols, data, "magic")
else
blenza_linkies_box(src, owner, pi, secret, cols, data, "magic")
blenza_linkies_wrap2();
}
var blenza_inited = true;
try {
blenza_setwho("","","");
blenza_setuser("");
blenza_setxurl("//www.blenza.com/linkies");
blenza_setthumbs("14Sep2024", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "g/goddessisa/MTRzZXAyMDI0", "1");
blenza_setcolor("default");
blenza_setExpires("4 months ago");
blenza_setAlphasort("0");
blenza_unsetmeme("14Sep2024");
blenza_linkies("thumb","GoddessIsa","14Sep2024","1710548577",3,
[
// MTRzZXAyMDI0
["11934792","Donna W. 1","https://duncanstreetdesigns.blogspot.com/2024/09/beautiful-blossoms-challenge-21-sepoct.html",null,1726403294],
["11934889","Francesca","https://percorsidifantasia.home.blog/2024/09/15/sparkles-monthly-challenges-180/",null,1726431564],
["11934920","Linda W. (ScrappinBari)","https://scrappinstampinsingin.blogspot.com/2024/09/a-french-bulletin-board-card-for-craft.html",null,1726445701],
["11935010","Maria","https://tinyworks81.blogspot.com/2024/09/journaling-page-my-little-flower-girl.html",null,1726498262],
["11935032","Marie Flayer","https://njstampingqueen.blogspot.com/2024/09/bridal-shower-card-with-atlantic-hearts.html",null,1726509686],
["11935053","Donna W. 2","https://duncanstreetdesigns.blogspot.com/2024/09/classic-design-challenge-sepoct-with.html",null,1726517088],
["11935110","Lisa J","https://craftytrain.blogspot.com/2024/09/ajs-spooky-bundles.html",null,1726556422],
["11935148","ScrappyHorses","https://scrappyhorses.blogspot.com/2024/09/another-inspiring-quote-at-pop.html",null,1726583510],
["11935291","Erika","https://erikine-spomincice.blogspot.com/2024/09/spanski-bezeg.html",null,1726646131],
["11935307","Nelleke ","https://farmerblog-nelleke.blogspot.com/2024/09/grote-zonnebloemen.html",null,1726655224],
["11935315","Carol Gill","https://crafty-stamper.blogspot.com/2024/09/animal-magic_0705537218.html",null,1726658078],
["11935322","Pam's Pearls","https://pamspearls4u.blogspot.com/2024/09/feeling-little-green.html",null,1726658974],
["11935393","Silke","https://kartenkram.blogspot.com/2024/09/gute-besserung.html",null,1726692413],
["11935444","Vivian Foo","https://www.facebook.com/photo/?fbid=3177695479032885&set=a.753827484753042",null,1726738879],
["11935463"," Sheryl Hare","https://marchharecards.blogspot.com/2024/09/5-shades-of-grey.html",null,0],
["11935477","Judy V","https://jvzcreations.blogspot.com/2024/09/fabulous-envelope-box-card.html",null,1726759421],
["11935487","Janja","https://janja10.blogspot.com/2024/09/previjalne-torbe-za-dojencke.html",null,1726764117],
["11935512","Annie H","https://annieskaartenenzo.blogspot.com/2024/09/sneeuwman-met-egels-di.html",null,1726783617],
["11935576","yvonne","https://yvonne1965shamina.blogspot.com/2024/09/een-andere-verjaardagscreatie-die-ik.html",null,1726825008],
["11935618","ScrappyHorses","https://scrappyhorses.blogspot.com/2024/09/colors-of-fall-at-ciu.html",null,1726841894],
["11935720","Bea","https://beacrejakaarten.blogspot.com/2024/09/herinneringskaart-voor.html",null,1726909199],
["11935877","Lisa J","https://craftytrain.blogspot.com/2024/09/reading-in-moonlight.html",null,1726995445],
["11935922","Jose","https://josevoorbeeldkaarten.blogspot.com/2024/09/fall-animals.html",null,1727014103],
["11935969","~DEANNE~","https://littlebitopaper.blogspot.com/2024/09/may-winds-carry-you-home.html",null,1727035111],
["11936045","Elle-Jeanne ","https://krekwakwo.blogspot.com/2024/09/veel-sterkte-met-dit-grote-verlies.html",null,1727078378],
["11936142","Hobbyhoekje van Annie","https://hobbyhoekjeannie.blogspot.com/2024/09/bannapie-winterday-my-besties.html",null,1727127970],
["11936175","Erika","https://erikine-spomincice.blogspot.com/2024/09/kvackanje.html",null,1727166205],
["11936368","Bridie","https://hearthearthcrafting.com/2024/09/25/reservoir-walk-scrapbook-layout-12x12-scrapbooking-idea/",null,1727270234],
["11936387","Judy V","https://jvzcreations.blogspot.com/2024/09/elegant-let-it-snow-card.html",null,1727280589],
["11936425","Silke","https://kartenkram.blogspot.com/2024/09/snuggle-owls.html",null,1727305117],
["11936449","Trijntje","https://trijntjeskaarten.blogspot.com/2024/09/kerstkaart-week-39.html",null,1727335677],
["11936478","Lisa Bird","https://craftycard-designs.co.uk/gnome-friends-in-the-garden-especially-for-you/",null,1727359769],
["11936492","Donna W. 3","https://duncanstreetdesigns.blogspot.com/2024/09/autumn-scenes-with-penny-black.html",null,1727363303],
["11936498","Jane Savage ","https://janesav101.blogspot.com/2024/09/digi-choosday-christmas-card-with-cute.html",null,1727370682],
["11936582","Janja","https://janja10.blogspot.com/2024/09/bozicna-zvezda.html",null,1727420572],
["11936591","Trijntje","https://trijntjeskaarten.blogspot.com/2024/09/beterschap-met-vogeltjes.html",null,1727424055],
["11936673","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2024/09/twilight-birdy.html",null,1727464159],
["11936814","~DEANNE~","https://littlebitopaper.blogspot.com/2024/09/meow-ornament-white-spruce-studio.html",null,1727557770],
["11936866","María","https://scrapeandopasoelrato.blogspot.com/2024/09/ordinary-people.html",null,1727597280],
["11936870","Pauline C","https://passionforpapercraft.blogspot.com/2024/09/hot-hot-hot.html",null,1727599781],
["11936910","Lisa J","https://craftytrain.blogspot.com/2024/09/a-latte-love-at-coffee-shop.html",null,1727614732],
["11936946","Elin ","https://elinsitthobbyrom.blogspot.com/2024/09/pensjonisten.html",null,1727625067],
["11937016","~DEANNE~","https://littlebitopaper.blogspot.com/2024/09/only-in-darkness.html",null,1727654779],
["11937059","Bridie","https://hearthearthcrafting.com/2024/09/30/sticks-and-bones-riding-high-handmade-greetings-card/",null,1727700783],
["11937154","Anet","https://anetscrafting.blogspot.com/2024/10/flower-vase-altenew.html",null,1727759340],
["11937161","Uschi","https://uschiskartenkrams.blogspot.com/2024/10/dak-93-make-your-own-background-using.html",null,1727764102],
["11937172","Trijntje","https://trijntjeskaarten.blogspot.com/2024/10/geborduurde-kaarten-met-tekst-mal.html",null,1727766979],
["11937185","Erika","https://erikine-spomincice.blogspot.com/2024/10/vecplastna-rezalna-sablona.html",null,1727775342],
["11937493","Ellie","https://www.simplyellibelle.com/2024/10/a-little-fall-gnome-four-seasons.html",null,1727875860],
["11937545","Rosi","https://daenys-creations.blogspot.com/2024/10/katzelkraft-i-am-happier-than.html",null,1727882414],
["11937565","Gale K","https://galesstampingcorner.blogspot.com/2024/10/boil-and-trouble-mouse.html",null,1727886157],
["11937616","Andrea Norris","https://sheepskidesigns.blogspot.com/2024/10/knitted-hat.html",null,1727900596],
["11937624"," MARLENE","https://idolovemakingcards.blogspot.com/2024/10/anything-goes-at-morgans-artworld.html",null,1727901431],
["11937625","Andrea Norris","https://sheepskidesigns.blogspot.com/2024/10/round-and-round-we-go.html",null,1727901454],
["11937632","Francesca","https://percorsidifantasia.home.blog/2024/10/02/addicted-to-stamps-and-more-478/",null,1727903017],
["11937745","ScrappyHorses","https://scrappyhorses.blogspot.com/2024/10/october-holidayscolors.html",null,1727963896],
["11937775","Jane Savage 2","https://janesav101.blogspot.com/2024/10/creative-inspirations-shaped-card-with.html",null,1727974872],
["11937996","Bridie","https://hearthearthcrafting.com/2024/10/02/vintage-baby-scrapbook-layout-inspiration/",null,1728058826],
["11938024","Nelleke","https://farmerblog-nelleke.blogspot.com/2024/10/oxide-inkt-op-fotopapier.html",null,1728073332],
["11938094","MeSi","https://kortitjakokkailut.blogspot.com/2024/10/hocus-pocus.html",null,1728113796],
["11938154","Claire's crafty corner","https://claires-crafty-corner.blogspot.com/2024/10/halloween-gnomes.html",null,1728132702],
["11938160","Claire's crafty corner","https://claires-crafty-corner.blogspot.com/2024/10/floral-unicorn.html",null,1728133680],
["11938174","ScrappyHorses","https://scrappyhorses.blogspot.com/2024/10/a-journal-for-name-game.html",null,1728138797],
["11938178","Claudia's kaartjes","https://claudiaskaartjes.blogspot.com/2024/10/herfst.html",null,1728140693],
["11938323","María","https://scrapeandopasoelrato.blogspot.com/2024/10/a-place-to-start-october-2024.html",null,1728203408],
["11938400","Claudia's kaartjes","https://claudiaskaartjes.blogspot.com/2024/10/fijne-kerst.html",null,1728226577],
["11938419","Silke","https://kartenkram.blogspot.com/2024/10/fleiige-eichhornchen.html",null,1728232096],
["11938506","Lou Z","https://jemlouproductions.blogspot.com/2024/10/halloween-cats-for-just-purple-at-lets.html",null,1728288824],
["11938515","Lou Z","https://jemlouproductions.blogspot.com/2024/10/boo-i-can-see-you-by-all-dressed-up-for.html",null,1728290394],
["11938617","Francesca","https://percorsidifantasia.home.blog/2024/10/07/a-place-to-start-october-24/",null,1728334554],
["11938628","Hobbyhoekje van Annie","https://hobbyhoekjeannie.blogspot.com/2024/09/hearts.html",null,1728338283],
["11938631","Bonnie Garby","https://maketime2craft.com/2024/10/with-sincere-sympathy-card.html",null,1728338545],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}