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('
');
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:443/linkies");
blenza_setthumbs("31Aug2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzFhdWcyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("6 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("31Aug2019");
blenza_linkies("thumb","lozzy","31Aug2019","1791174857",3,
[
// MzFhdWcyMDE5
["11382000","janja - finart","https://myfinart.blogspot.com/2019/08/baptism-cards.html",null,1567325863],
["11382003","janja - finart","https://myfinart.blogspot.com/2019/09/shabby-card.html",null,1567326200],
["11382004","Granne","https://aavamaki.blogspot.com/2019/09/sheepski-designs-die-cuts-punches.html",null,1567326353],
["11382005","Desire Fourie","https://desiref.blogspot.com/2019/09/something-to-sing-about-design-team.html",null,1567326428],
["11382015","Rutscht","https://rutscht.blogspot.com/2019/09/atc-36-de-52.html",null,1567329033],
["11382022","GerJanne","https://gerjanneke2.blogspot.com/2019/09/nieuwe-challenge-dak-en-k.html",null,1567330087],
["11382032","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/09/challenge-33-bei-do-all-kreatives.html",null,1567331684],
["11382033","Craftartista","https://craftartista.blogspot.com/2019/09/hostess-of-friendly-challenge-no-117.html",null,1567331707],
["11382039","Kym","http://kyms-crafty-cards.blogspot.com/2019/09/ching-chou-kuik-digital-stamps.html",null,1567332707],
["11382047","Željka","https://creativemomanddaughter.blogspot.com/2019/08/wk-17-anything-goes-crafting-challenge.html",null,1567334470],
["11382049","Silke","https://kartenkram.blogspot.com/2019/09/meer-und-muscheln.html",null,1567334718],
["11382079","Jackie T","https://tinyrosecr.blogspot.com/2019/09/crafts-galore-encore-anything-goes.html",null,1567342187],
["11382106","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/09/nuovo-challenge-di-magnolia-forever.html",null,1567344149],
["11382110","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/09/ed-eccoci-anche-per-simply-magnolia-al.html",null,1567344968],
["11382121","AnnChuangCrafts","https://anncard.blogspot.com/2019/09/fantastic.html",null,1567347827],
["11382122","AnnChuangCrafts","https://anncard.blogspot.com/2019/09/lost-world.html",null,1567348071],
["11382139","Karen C","http://busyinspirations.blogspot.com/2019/09/cleaning-wstella.html",null,1567350878],
["11382178","Hazel","https://craftyhazelnut.blogspot.com/2019/09/craftyhazelnuts-patterned-paper.html",null,1567359466],
["11382197","NanaConnie","http://mygrammysattic.blogspot.com/2019/09/unicorn-dreams.html",null,1567362816],
["11382224","Rachelle Oltean","https://redcre8s.blogspot.com/2019/09/all-occasion-card-hero-arts-mmh-kit.html",null,1567375939],
["11382230","Carole J","https://cjcrafty.blogspot.com/2019/09/gecko-galz-steampunk-autumn.html",null,1567378093],
["11382298","Lisa :D","https://royalpumpkinart.blogspot.com/2019/09/stamptember-day-one-thank-heaven.html",null,1567406709],
["11382299","Jane","https://jane-janesjournal.blogspot.com/2019/09/a-last-butterfly-for-summer.html?m=1",null,1567406840],
["11382327","Andree","https://acecardsandree.blogspot.com/2019/09/crafts-galore-encore-september-2019.html",null,1567412067],
["11382336","Suze","https://craftysuze.blogspot.com/2019/09/reading.html",null,1567419123],
["11382350","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/09/ja.html",null,1567424873],
["11382378","Annemi","https://systeryster-annemi.blogspot.com/2019/09/1st-monday-in-month.html",null,1567431354],
["11382388","Anna","https://nonsolocard.blogspot.com/2019/09/with-all-my-heart.html",null,1567435048],
["11382437","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/09/nieuwe-kerstboompjes-op-mijn-kaart.html",null,1567442546],
["11382447","Twisted Witch - Lin","http://twisted-witch.blogspot.com/2019/09/ccm-240-pearls-andor-gems.html",null,1567446240],
["11382448","Paperesse","http://www.paperesse.com/2019/09/thank-you-card-featuring-2-cute-ink.html",null,1567446284],
["11382484","Angie's Creations","http://angiescreationsblog.blogspot.com/2019/09/two-cards-done.html#links",null,1567455335],
["11382499","cheiro urgia","https://cheirourgia.blogspot.com/2019/09/a-sense-of-fall.html",null,1567459723],
["11382502","Carole J","https://cjcrafty.blogspot.com/2019/09/vera-lane-studio-moon-girl.html",null,1567460799],
["11382568","Ruth Lopez","https://www.myhobbymyart.com/2019/09/reto-11-dia-de-muertos-halloween.html",null,1567476577],
["11382594","Karen C","http://busyinspirations.blogspot.com/2019/09/things-with-wings.html",null,1567479250],
["11382623","ria","https://purpleliciouskingdom.blogspot.com/2019/09/spectember-day-3-cute-companions.html",null,1567493022],
["11382632","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/09/speciaal-bericht.html",null,1567494447],
["11382633","Željka","https://creativemomanddaughter.blogspot.com/2019/09/anniversary-card-with-polkadoodles.html",null,1567495168],
["11382644","Linda Mc Enery","https://lindamscreations.blogspot.com/2019/09/passion-for-promarkers-challenge-509.html",null,1567497800],
["11382654","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2019/09/passion-for-promarkers-challenge-509.html",null,1567501151],
["11382670","Suetarby","https://craftingwithloveandfairydust.blogspot.com/2019/08/steampunk-top-hat.html",null,1567503667],
["11382671","Birgit","https://cardsrstillfun.blogspot.com/2019/09/happy-birthday.html",null,1567503655],
["11382672","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/09/curiosity-and-dog.html",null,1567503909],
["11382680","Emma R","https://emgoescardmaking.blogspot.com/2019/09/carpenter-joe-tiddly-tac-toe.html",null,1567507414],
["11382690","jenimc","https://jenicraftroom.blogspot.com/2019/09/winter-wishes.html",null,1567511613],
["11382695","Jennifer Greco","https://glitterinmyhair.blogspot.com/2019/09/polkadoodles-digichoosday-week-36.html",null,1567513294],
["11382705","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/09/per-il-compleanno-di-myriam-e-per-le.html",null,1567516013],
["11382731","Judy V","https://jvzcreations.blogspot.com/2019/09/cute-as-button-september-challenge.html",null,1567524550],
["11382734","Creative Smiles","https://creativesmiles2.blogspot.com/2019/09/qkr-stampede-and-stamp-on-it-at-2.html",null,1567525940],
["11382736","Faith A","http://daffodil-faitha.blogspot.com/2019/09/morgans-dt-edit.html",null,1567526884],
["11382777","Julie T","https://juliescraftyspot.blogspot.com/2019/09/a-gift-winnie.html",null,1567531679],
["11382778","Jennie Gibson","https://jenniesilver.wordpress.com/2019/09/03/in-sympathy-2/",null,1567532226],
["11382793","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/09/we-zijn-ook-weer-met-een-nieuwe.html",null,1567536192],
["11382839","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/09/bauble-christmas.html",null,1567542445],
["11382840","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/09/border-terrier-borthday-card.html",null,1567542534],
["11382986","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/09/all-occasion-card-using-conie-fong-emma.html",null,1567571217],
["11383018","Priyadarshini","https://simpleartcraft.wordpress.com/2019/09/03/circle-card",null,1567580262],
["11383023","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/09/dress-my-card.html",null,1567581181],
["11383028","ria","https://purpleliciouskingdom.blogspot.com/2019/09/spectember-day-4-black-and-white.html",null,1567582283],
["11383071","Suze","https://craftysuze.blogspot.com/2019/09/three-rs.html",null,1567593074],
["11383138","elizabeth h","http://warmharted.blogspot.com/2019/09/off-to-horse-show.",null,1567604318],
["11383141","*Vicki*","https://stampedsmiles.com/2019/09/03/brutus-monroe-wednesday-inspiration-team-hop-with-patterned-papers/",null,1567604530],
["11383175","Angie","https://cimbacreativefun.blogspot.com/2019/09/happy-halloween-haunted-house.html",null,1567610636],
["11383297","Kathie","https://kathiezkardz.blogspot.com/2019/09/button-love.html",null,1567629139],
["11383344","Bisse","https://vasemmalkadella.blogspot.com/2019/09/anna-unelmien-vieda.html",null,1567635346],
["11383368","Jennifer Greco","https://glitterinmyhair.blogspot.com/2019/09/time-for-tea-designs-september-fun.html",null,1567644207],
["11383387","Carla","https://carla-writes.blogspot.com/2019/09/what-i-did-when-hurricane-dorian-came.html",null,1567656483],
["11383397","marie","http://marieraly.blogspot.com/2019/09/blog-post.html",null,1567661024],
["11383424","EmmaT","https://emmatrenouth.blogspot.com/2019/09/rare-breeds.html",null,1567671913],
["11383435","AuntySue","https://auntysuescraftcavern.blogspot.com/2019/09/craft-challenge-decoupage.html",null,1567677487],
["11383460","Kym","http://kyms-crafty-cards.blogspot.com/2019/09/happy-birthday-from-crazy-cat.html",null,1567688719],
["11383528","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2369612183088367/?type=3&theater",null,1567702917],
["11383586","Lori Podolsky","https://loripodolsky.blogspot.com/2019/09/autumns-here-by-ching-chou-kuik.html",null,1567709976],
["11383619","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/09/vandaag-een-kerstkaart-gemaakt-met-op.html",null,1567714489],
["11383694","J. Atterbury Creations","https://jatterburycreations.blogspot.com/2019/09/cas-series-crazy-birds-encouragement.html",null,1567744269],
["11383725","Tip Top","http://tiptoptoppers.blogspot.com/2019/09/more-coffee.html",null,1567754695],
["11383746","Jane Tyrrell ","https://jane-janesjournal.blogspot.com/2019/09/first-conker-of-2019.html?m=1",null,1567759868],
["11383792","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/09/trouwkaart.html",null,1567772131],
["11383837","Lisa :D","https://royalpumpkinart.blogspot.com/2019/09/anything-goes-new-challenge-with-angies.html",null,1567776585],
["11383840","Lisa :D","https://royalpumpkinart.blogspot.com/2019/09/stamptember-day-two-i-melt-for-you.html",null,1567777002],
["11383844","Lisa :D","https://royalpumpkinart.blogspot.com/2019/09/stamptember-day-three-be-kind-and.html",null,1567777426],
["11383860","Ann-Marie S.","https://mylittlepatchofheaven-ams.blogspot.com/2019/08/what-to-wear-and-some-news.html",null,1567782688],
["11383952","Kym","https://kyms-crafty-cards.blogspot.com/2019/09/colour-crazy-challenge-blog-friday-6.html",null,1567794450],
["11383974","Jac","https://jacs-playground.blogspot.com/2019/09/crafty-catz-challenge-473-anything-goes.html#comment-form",null,1567797822],
["11384024","earl-lea-riser.","https://earl-lea-riser.blogspot.com/2019/09/wryn-colouring-hearts.html",null,1567807589],
["11384064","Ruth Lopez","http://www.myhobbymyart.com/2019/09/polkadoodles-anything-goes.html#comment-form",null,1567833145],
["11384102","Hazel","https://craftyhazelnut.blogspot.com/2019/09/chnc-challenge-454.html",null,1567844981],
["11384112","Craftartista","https://craftartista.blogspot.com/2019/09/sending-all-my-love.html",null,1567849345],
["11384189","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/09/the-living-years.html",null,1567862025],
["11384193","Claudia","https://knutselmeisjes.blogspot.com/2019/09/december-groetjes.html",null,1567863072],
["11384208","Dawn S","https://dawnscraftybits.blogspot.com/2019/09/ching-chou-kuik-facebook-challenge-fall.html",null,1567867885],
["11384224","Loopyloo","https://loopyloocards.com/2019/09/07/blue-bouquet/",null,1567871684],
["11384227","Rijacki Ledum","https://rijacki.blogspot.com/2019/09/just-another-page-kraftin-kimmie-stamps.html",null,1567872099],
["11384319","Janie R","https://crafterscastle.blogspot.com/2019/09/vintage-journal-tutorial.html",null,1567885617],
["11384499","Dreja","https://drejasbastelwelt.blogspot.com/2019/09/geburtstag-und-halloween.html",null,1567934140],
["11384504","Janja - finart","https://myfinart.blogspot.com/2019/09/layout-amazimg.html",null,1567934671],
["11384523","Priya Mishra","https://quillingbypriya.blogspot.com/2019/09/india-scrapbook-layout.html",null,1567938857],
["11384525","Priya Mishra","https://quillingbypriya.blogspot.com/2019/09/sea-adventure-scrapbook-layout.html",null,1567938992],
["11384535","Scarlett ","https://scarlettszone.blogspot.com/2019/09/faceless-beauty.html",null,1567940239],
["11384563","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2377788268937425/?type=3&theater",null,1567948138],
["11384655","Andrea Norris","https://sheepskidesigns.blogspot.com/2019/09/love-to-skate.html",null,1567957380],
["11384705","Koraliki Beaty","https://koralikibeaty.blogspot.com/2019/08/clean-na-18-urodziny-dla-polkadoodles.html",null,1567969664],
["11384709","Barbara Bruder","http://artandsoulcreations.blogspot.com/2019/09/butterflies.html",null,1567971350],
["11384710","Natasa","https://najboljsezelje.blogspot.com/2019/09/vrecka-iz-blaga.html",null,1567971650],
["11384717","Judy V","https://jvzcreations.blogspot.com/2019/09/digi-doodles-studios-inspiration.html",null,1567973435],
["11384718","jenimc","https://jenicraftroom.blogspot.com/2019/09/merry-christmas-tree.html",null,1567974252],
["11384720","Barbara Bruder","http://artandsoulcreations.blogspot.com/2019/09/boo-to-you.html",null,1567974977],
["11384724","Judy V","https://jvzcreations.blogspot.com/2019/09/masculine-birthday-card.html",null,1567975960],
["11384732","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/09/personalised-rugby-60th-birhthday.html",null,1567977543],
["11384733","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/09/uncle-birthday-card.html",null,1567977601],
["11384755","Susan H","https://shogan03-timetoplay.blogspot.com/2019/09/beautiful-people.html",null,1567995585],
["11384769","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/09/birthday-bicycles.html",null,1568001600],
["11384788","monique","http://moniqueschattefor.blogspot.com/2019/09/ice-princess.html",null,1568012324],
["11384795","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/09/beterschap.html",null,1568015079],
["11384826","Carole J","https://cjcrafty.blogspot.com/2019/09/artsystamper-magnificent-magnolias.html",null,1568023599],
["11384882","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/09/gastdesigner-bij-cheerfull.html",null,1568039831],
["11384886","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/09/chibi-new-release-at-scrappers-delights.html",null,1568038134],
["11384889","Natasa","http://www.natspaperworld.com/miske-na-posti/",null,1568040171],
["11384918","Catnip and Kitty Whiskers","http://catnipandkittywhiskers.blogspot.com/2019/09/b-is-for-bear.html",null,1568052313],
["11384922","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/09/een-kerstkaart-gemaakt-met-op-de.html",null,1568053329],
["11384957","Maggie S","https://maggiescathouse.blogspot.com/2019/09/tasty-treats.html",null,1568060899],
["11385044","Janes Journal","https://jane-janesjournal.blogspot.com/2019/09/dino-ducks.html",null,1568091690],
["11385094","AuntySue","https://auntysuescraftcavern.blogspot.com/2019/09/gems-pearls-sequins-at-passion-for.html",null,1568110758],
["11385136","Lisbeth","https://krealis.blogspot.com/2019/09/wicked.html",null,1568123109],
["11385155","Dori","http://www.perfectlycreatedchaos.com/2019/09/cross-stitch-hello.html",null,1568128592],
["11385217","CreaNancy","http://creanancy.blogspot.com/2019/09/happy-bday.html",null,1568143983],
["11385235","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/09/christmas-card-using-conie-fong.html",null,1568147746],
["11385313","Barbara Bruder","http://artandsoulcreations.blogspot.com/2019/09/merry-christmas.html",null,1568178150],
["11385406","Saphron","https://www.lemonbiscuit.blog/crafts/pennys-paper-crafty-challenge-447/",null,1568200414],
["11385407","Donna","http://lakefrontstampingcreations.blogspot.com/2019/09/the-house-that-stamps-built-tic-tac-toe.html",null,1568200540],
["11385424","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/09/een-kleindochter.html",null,1568204398],
["11385591","ScrappyHorses","https://scrappyhorses.blogspot.com/2019/09/rounding-out-corners.html",null,1568250440],
["11385626","Janes Journal","https://jane-janesjournal.blogspot.com/2019/09/back-from-sunshine.html",null,1568275121],
["11385687","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2019/09/leanns-world-101-challenge-18.html",null,1568292058],
["11385692","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2019/09/lets-craft-create-challenge-151.html",null,1568292672],
["11385702","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/09/ik-heb-een-kaart-gemaakt-in-de-vorm-van.html",null,1568295471],
["11385825","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/09/weer-een-paarse-label.html",null,1568317011],
["11385935","Rosina","https://rosina-scrapcards.blogspot.com/2019/09/happy-birthday.html",null,1568353871],
["11385938","Clare","https://clarelloyd.blogspot.com/2019/09/wanna-fly.html",null,1568354197],
["11386029","Renate ","https://dotjesparelsenjuweeltjes.blogspot.com/2019/09/the-friendly-hedghog-fall.html",null,1568380544],
["11386054","Teresa","https://redobsessioncards.blogspot.com/2019/09/pink-christmas-unicorn.html?m=1",null,1568386276],
["11386059","Bonnie Garby","http://maketime2craft.com/2019/09/really-reasonable-ribbon-september-blog-hop-4.html",null,1568387728],
["11386160","Jac","http://jacs-playground.blogspot.com/2019/09/crafty-catz-challenge-474-anything-goes.html#comment-form",null,1568413099],
["11386182","Teresa","https://redobsessioncards.blogspot.com/2019/09/the-birthday-cake.html?m=1",null,1568416529],
["11386192","Teresa","https://redobsessioncards.blogspot.com/2019/09/autumn-beauty.html?m=1",null,1568417249],
["11386199","Teresa","https://redobsessioncards.blogspot.com/2019/09/autumn-love.html?m=1",null,1568417647],
["11386201","Teresa","https://redobsessioncards.blogspot.com/2019/09/fairy-special.html?m=1",null,1568417902],
["11386234","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/09/v-solo.html",null,1568426814],
["11386253","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/09/steampunk-christmas-time.html",null,1568437488],
["11386282","Željka","https://creativemomanddaughter.blogspot.com/2019/09/wk-18-anything-goes-crafting-challenge.html",null,1568447775],
["11386286","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/09/kokeshi-jolie.html",null,1568450678],
["11386303","Hazel","https://craftyhazelnut.blogspot.com/2019/09/chnc-challenge-455.html",null,1568456089],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}