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:80/linkies");
blenza_setthumbs("29Feb2020", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MjlmZWIyMDIw", "1");
blenza_setcolor("default");
blenza_setExpires("in 3 days");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_setmeme("29Feb2020","12728","A Bit More Time To Craft Challenge","",0);
blenza_linkies("thumb","lozzy","29Feb2020","320205572",3,
[
// MjlmZWIyMDIw
["11442923","Hazel","https://craftyhazelnut.blogspot.com/2020/03/craftyhazelnuts-patterned-paper-march.html",null,1583055681],
["11442932","pinky","https://pinkysworldsuprojects.blogspot.com/2020/03/timeless-tulips-for-easter.html",null,1583057150],
["11442937","monique","http://moniqueschattefor.blogspot.com/2020/02/lama-happy-day.html",null,1583058237],
["11442946","Dagmara","https://p-otworki.blogspot.com/2020/03/kartka-z-misiem-dt-inspiration-dla.html",null,1583061448],
["11442962","Kym","https://kyms-crafty-cards.blogspot.com/2020/03/ching-chou-kuik-digital-stamps-march.html",null,1583063619],
["11442978","My Other World","https://scrapsdamaryv.blogspot.com/2020/03/creative-with-stamps-48-ovo.html",null,1583065260],
["11442982","Helen","https://helenscrafthaven.blogspot.com/2020/03/james-butterflies.html",null,1583065551],
["11442995","Grietje","https://grietje78.blogspot.com/2020/03/red-green-and-gold-rood-groen-en-goud.html",null,1583067416],
["11443109","Jeanette","https://kraftykows.blogspot.com/2020/03/hoppy-birthday.html",null,1583079626],
["11443138","Gale K","https://galesstampingcorner.blogspot.com/2020/03/fantasy-fae-37.html",null,1583084648],
["11443166","Arlene at A Bit of This and That","https://arlenesbits.blogspot.com/2020/03/morgans-artworlds-march-challenge.html",null,1583091569],
["11443182","Judy V","https://jvzcreations.blogspot.com/2020/03/fabulous.html",null,1583096017],
["11443317","Desire Fourie","https://desiref.blogspot.com/2020/03/wishing-you-design-team-project-march.html",null,1583132490],
["11443318","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2020/03/happy-birthday.html",null,1583132861],
["11443327","Diny","https://dinys-scrapkaarten.blogspot.com/2020/03/baby-girl.html",null,1583134147],
["11443332","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2020/03/monday-and-start-of-fresh-week.html",null,1583134674],
["11443337","Marlies","https://scrapcardsbymarlies.blogspot.com/2020/03/spring-florals-bij-stamping-sensations.html",null,1583136509],
["11443352","Wendy Batchen","https://wenscreations.blogspot.com/2020/03/cute-as-button-challenge-1st-march-2020.html",null,1583140249],
["11443357","Wendy Batchen","https://wenscreations.blogspot.com/2020/03/morgans-artworld-challenge-1st-march.html",null,1583141672],
["11443364","Craftartista","https://craftartista.blogspot.com/2020/03/alone.html",null,1583146940],
["11443367","Carole Jones","https://cjcrafty.blogspot.com/2020/03/gecko-galz-once-upon-springtime.html",null,1583147453],
["11443375","Deezy","https://deezyshandmadecards.com/2020/03/02/place-to-start-march-2020-challenge-use-a-household-product/",null,1583149600],
["11443377","jenimc","https://jenicraftroom.blogspot.com/2020/03/fabulous-shoes.html",null,1583150070],
["11443378","Carole Jones","https://cjcrafty.blogspot.com/2020/03/crafts-galore-encore-fairy-children.html",null,1583150082],
["11443391","Ella ","https://mojeszydelkoweprzygody.blogspot.com/2020/03/dak-marzec.html",null,1583152353],
["11443396","Carol","https://carol-paperplay-carol.blogspot.com/2020/03/a-different-alice.html",null,1583153290],
["11443404","Anesha","https://skippereva.blogspot.com/2020/03/spring-flower.html",null,1583154977],
["11443435","Nicolette","http://nicoletteskaarten.blogspot.com/2020/03/happy-birthday.html",null,1583159205],
["11443442","Sheryl Hare","https://marchharecards.blogspot.com/2020/03/easter.html",null,1583160448],
["11443443","Pippa","https://viewsfrommycraftroom.blogspot.com/2020/03/stampers-delights-progressive-challenge.html",null,1583160502],
["11443450","yvonne","https://yvonne1965shamina.blogspot.com/2020/03/vandaag-starten-we-met-een-nieuwe.html",null,1583161368],
["11443458","Dreja","https://drejasbastelwelt.blogspot.com/2020/03/84-af-51-fs.html",null,1583162249],
["11443461","Dreja","https://drejasbastelwelt.blogspot.com/2020/03/hasen-im-blumentopf.html",null,1583162752],
["11443465","My Other World","https://scrapsdamaryv.blogspot.com/2020/03/make-my-monday-117-in-pink.html",null,1583162933],
["11443483","shellshearer","http://shellshearer.blogspot.com/2020/03/colouring-with-bleach.html",null,1583164024],
["11443525","Claudia","https://knutselmeisjes.blogspot.com/2020/03/hooray.html",null,1583173659],
["11443526","TwistedWitchLin","http://twisted-witch.blogspot.com/2020/03/dv-220-only-girls-allowed.html",null,1583173732],
["11443531","tinyworks","https://tinyworks81.blogspot.com/2020/03/card-little-gift-designer-team-magnolia.html",null,1583175038],
["11443537","Jean Chaney","https://tanglestreetcolorway.blogspot.com/2020/03/lucky-is-state-of-mind.html",null,1583176921],
["11443541","Karthikha","https://loveforkrafts.blogspot.com/2020/03/wall-decor-sunburst-mirror.html",null,1583178300],
["11443581","Annette Stapylton","https://annetteshobbyrosettes.blogspot.com/2020/03/morgans-artworld-open-challenge-03-1st.html",null,1583187291],
["11443588","elizabeth h","http://warmharted.blogspot.com/2020/03/bubbles.html",null,1583188772],
["11443613","Barbara Bruder","http://artandsoulcreations.blogspot.com/2020/03/march-2020-craft-dee-bowz-challenge.html",null,1583194707],
["11443653","Debbie","https://creativedesignsbystampndeb00.blogspot.com/2020/03/papered-canvas-with-photo.html",null,1583203967],
["11443702","Sherry G","http://loosestitchesandunraveledthreads.blogspot.com/2020/03/love-to-craft-challenge-44.html",null,1583217810],
["11443709","Sherry G","http://loosestitchesandunraveledthreads.blogspot.com/2020/03/morgans-artworld-challenge-3.html",null,1583218842],
["11443727","Ċ½eljka","https://creativemomanddaughter.blogspot.com/2020/03/hello-my-crafty-friends-its-tuesday-and.html",null,1583224731],
["11443748","yvonne","https://yvonne1965shamina.blogspot.com/2020/03/we-zijn-ook-weer-met-een-nieuwe.html",null,1583234343],
["11443769","KT Fit Kitty","http://ktdesigns2013.blogspot.com/2020/03/tms-544-tuesday-morning-sketches.html",null,1583238800],
["11443779","caroline","https://caroline-creaties.blogspot.com/2020/03/out-of-box.html",null,1583241686],
["11443834","Craftartista","https://craftartista.blogspot.com/2020/03/reality-and-fantasy.html",null,1583249539],
["11443857","Pippa","https://viewsfrommycraftroom.blogspot.com/2020/03/path-of-positivity-march-challenge.html",null,1583253397],
["11443948","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2020/03/lanterns.html",null,1583272491],
["11444040","AJ","https://ajcreativeenergy.blogspot.com/2020/03/whale-hello.html",null,1583284794],
["11444056","ingunn","https://ingunnsinekort.blogspot.com/2020/03/a-hot-mess-med-gule-sommerfuger-pa.html",null,1583288169],
["11444090","Priya","https://simpleartcraft.wordpress.com/2020/03/04/mixed-media-panel-le-anns-world-101",null,1583300119],
["11444117","Granne","https://aavamaki.blogspot.com/2020/03/the-male-room-team-colors.html",null,1583304825],
["11444149","Anita","https://beadscharmsandwire.wordpress.com/2020/03/04/flutter-mixed-media-tag/",null,1583312148],
["11444154","Loopyloo","https://loopyloocards.com/2020/03/04/embossing-freebie-and-gold/",null,1583312939],
["11444189","Sheryl Hare","https://marchharecards.blogspot.com/2020/03/avery-with-poinsettia.html",null,1583320613],
["11444220","monique","http://moniqueschattefor.blogspot.com/2020/03/bear-hugh.html",null,1583325694],
["11444288","Pat K","https://patkscards.blogspot.com/2020/03/more-than-1-fold-at-fabnfunky.html",null,1583336435],
["11444379","Jeanette","https://kraftykows.blogspot.com/2020/03/is-spring-here-yet.html",null,1583344920],
["11444404","Monika Reeck","https://creativewithmonika.blogspot.com/2020/03/sleep-well-my-dear-lovely-son-kevin.html",null,1583354563],
["11444427","Linda Mc Enery","https://lindamscreations.blogspot.com/2020/03/paper-nest-dolls-dog-walker-emma.html",null,1583361750],
["11444517","Diny","https://dinys-scrapkaarten.blogspot.com/2020/03/merry-christmas.html",null,1583390864],
["11444530","CarolG NZ","https://creationsnz.blogspot.com/2020/03/little-fishes.html",null,1583394781],
["11444540","Desire Fourie","https://desiref.blogspot.com/2020/03/happy-thoughts-design-team-project.html",null,1583397293],
["11444559","jackie c","https://getthejclook.blogspot.com/2020/03/use-plaid.html",null,1583401068],
["11444580","Lisa Bird","https://craftycard-designs.co.uk/the-lady-sending-love/",null,1583404018],
["11444586","Elle-jeanne","https://krekwakwo.blogspot.com/2020/03/kerstkaart-week-10.html?m=0",null,1583404564],
["11444613","Vivian Foo","https://www.facebook.com/photo.php?fbid=1784435638358883&set=a.753827484753042&type=3&theater",null,1583413140],
["11444614","Vivian Foo","https://www.facebook.com/photo.php?fbid=1784438615025252&set=a.753827484753042&type=3&theater",null,1583413388],
["11444634","yvonne","https://yvonne1965shamina.blogspot.com/2020/03/een-kerstkaart-gemaakt-in-roze-tinten.html",null,1583416550],
["11444663","NanaConnie","http://mygrammysattic.blogspot.com/2020/03/welcome-gnome.html",null,1583420310],
["11444931","tmd","https://feistycrafter.blogspot.com/2020/03/love-to-scrap-challenge-blog-131-little.html",null,1583451825],
["11444932","tmd","https://feistycrafter.blogspot.com/2020/03/dr-digi-thanks-for-adding-sunshine.html",null,1583451990],
["11444933","Shona Hamill","http://handmadebyhamill.blogspot.com/2020/03/snail-mail.html",null,1583453551],
["11445023","elizabeth h","http://warmharted.blogspot.com/2020/03/bunnies-on-parade.html",null,1583476948],
["11445033","Kym","https://kyms-crafty-cards.blogspot.com/2020/03/colour-crazy-challenge-blog-friday-6.html",null,1583478461],
["11445038","Melanie Gee","https://melgeecrafts.com/2020/03/04/digi-doodle-studios-dahlias-blooms/",null,1583478953],
["11445087","Kim Costello","https://paperbabe.blogspot.com/2020/03/paperbabe-stamps-challenge-114-anything.html",null,1583492894],
["11445210","Elle-jeanne","https://krekwakwo.blogspot.com/2020/03/feestvarken.html?m=0",null,1583509709],
["11445344","Kym","https://kyms-crafty-cards.blogspot.com/2020/03/ching-chou-kuiks-digital-stamps_6.html",null,1583526481],
["11445372","AJ","https://ajcreativeenergy.blogspot.com/2020/03/marie-antoinette.html",null,1583533737],
["11445377","CarolG NZ","https://creationsnz.blogspot.com/2020/03/pacific-hibiscus.html",null,1583534572],
["11445388","Vivi","http://handmadebyvivi.blogspot.com/2020/03/holiday-greetings.html",null,1583538112],
["11445432","Judy V","https://jvzcreations.blogspot.com/2020/03/birthday-balloons-card.html",null,1583554018],
["11445601","Leslie Turner","http://lovetoscrap2.com/2020/03/01/smile-2",null,1583586372],
["11445606","Leslie Turner","http://lovetoscrap2.com/2020/03/01/christmas-tags",null,1583586448],
["11445610","Leslie Turner","http://lovetoscrap2.com/2020/03/01/on-your-retirement",null,1583586503],
["11445613","Leslie Turner","http://lovetoscrap2.com/2020/03/01/hello-friend-2",null,1583586606],
["11445615","Leslie Turner","http://lovetoscrap2.com/2020/03/02/just-dance",null,1583586676],
["11445618","Leslie Turner","http://lovetoscrap2.com/2020/03/04/luck-o-the-irish",null,1583586746],
["11445620","Leslie Turner","http://lovetoscrap2.com/2020/03/06/i-love-mew",null,1583586808],
["11445859","Liliane Carvalho","http://scrapchosdalilica.blogspot.com/2020/03/boa-tarde-arteiras-vespera-do-dia-da.html",null,1583617841],
["11445881","Teresa","https://redobsessioncards.blogspot.com/2020/03/a-very-lilac-card.html?m=1",null,1583622413],
["11445899","Teresa","https://redobsessioncards.blogspot.com/2020/03/birthday-balloons.html?m=1",null,1583625955],
["11445918","Donna R","https://indianainking.blogspot.com/2020/03/hugs-and-fishes.html",null,1583636015],
["11445962","Lisbeth","https://krealis.blogspot.com/2020/03/inari-kitsune.html",null,1583648783],
["11446011","caroline","https://caroline-creaties.blogspot.com/2020/03/van-alles-wat.html",null,1583662781],
["11446132","MeSi","http://kortitjakokkailut.blogspot.com/2020/03/hoot-hoot-hooray.html",null,1583677978],
["11446165","Janis Lewis","https://pausedreamenjoy.blogspot.com/2020/03/purple-flowers-card.html",null,1583682713],
["11446257","Pam D","https://itisfinisheddesigns.blogspot.com/2020/03/shamrock-shaker-card.html",null,1583704133],
["11446266","Pam D","https://itisfinisheddesigns.blogspot.com/2020/03/happy-st-pattys-day.html",null,1583707356],
["11446280","Miss. Carrie's Creations","https://misscarriescreations.wordpress.com/2020/03/06/a-vintage-blue-rose-tag/",null,1583714355],
["11446327","Rosina","http://rosina-scrapcards.blogspot.com/2020/03/criss-cross-kaartje.html",null,1583736558],
["11446331","monique","https://moniqueschattefor.blogspot.com/2020/03/sneewstorm.html",null,1583736989],
["11446336","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2020/03/mannenkaart.html",null,1583738024],
["11446345","pinkclover","https://pinkclovercards.blogspot.com/2020/03/a-perfect-pair.html",null,0],
["11446354","Lisa :D","https://royalpumpkinart.blogspot.com/2020/03/anything-goes-new-challenge-with-angies.html",null,1583742223],
["11446369","Wies","https://wiescreablog.blogspot.com/2020/03/kaart-van-2016-gelift.html",null,1583750390],
["11446380","Lisa :D","https://royalpumpkinart.blogspot.com/2020/03/bingo-new-challenge-with-get-creative.html",null,1583754691],
["11446384","Lisa :D","https://royalpumpkinart.blogspot.com/2020/03/31-days-of-crafting-day-three-bunny.html",null,1583755444],
["11446388","Craftartista","https://craftartista.blogspot.com/2020/03/angel-and-lake-house.html",null,1583756241],
["11446390","Lisa :D","https://royalpumpkinart.blogspot.com/2020/03/31-days-of-crafting-day-four-simple.html",null,1583756381],
["11446391","CarolG NZ","https://creationsnz.blogspot.com/2020/03/hm-birthday-balloons.html",null,1583756362],
["11446400","Pippa","https://viewsfrommycraftroom.blogspot.com/2020/03/march-stampers-delights-chibi-new.html",null,1583758206],
["11446425","yvonne","https://yvonne1965shamina.blogspot.com/2020/03/vandaag-eens-heel-wat-anders-gemaakt.html",null,1583764848],
["11446439","Lisa :D","https://royalpumpkinart.blogspot.com/2020/03/shaped-cards-new-challenge-with-simply.html",null,1583767200],
["11446443","caroline","https://caroline-creaties.blogspot.com/2020/03/fijne-verjaardag.html",null,1583768237],
["11446447","Lisa :D","https://royalpumpkinart.blogspot.com/2020/03/31-days-of-crafting-day-nine-happy.html",null,1583768708],
["11446502","Larissa","https://car-d-elicious.blogspot.com/2020/03/peppercus-design-happy-easter.html",null,1583781426],
["11446508","Pippa","https://viewsfrommycraftroom.blogspot.com/2020/03/march-stampers-delights-anime-new.html",null,1583782272],
["11446604","DebiB","https://thatmightlookgoodonacard.blogspot.com/2020/03/joyful-stars-close-to-my-heart-march.html",null,1583809082],
["11446642","Made by Mandy","https://amandacruxton2.blogspot.com/2020/03/moms-birthday.html",null,1583829375],
["11446643","jenimc","https://jenicraftroom.blogspot.com/2020/03/spring-tulips.html",null,1583829856],
["11446660","Made by Mandy","https://amandacruxton2.blogspot.com/2020/03/joy.html",null,1583835222],
["11446672","Nicolette","https://nicoletteskaarten.blogspot.com/2020/03/voor-annerieke.html",null,1583838149],
["11446691","Scrapacrolles","http://scrapacrolles.over-blog.com/2020/03/un-arc-en-ciel.html",null,1583843639],
["11446766","Hazel","https://craftyhazelnut.blogspot.com/2020/03/chnc-challenge-480.html",null,1583859643],
["11446779","Patsy Long","http://craftyafrican.blogspot.com/2020/03/digi-doodle-studios-dahlias-blooms.html",null,1583865187],
["11446815","Larissa","https://car-d-elicious.blogspot.com/2020/03/kleuren-met-potloden-alles-mag.html",null,1583874065],
["11446856","Joy Wilson","https://joyfullystamps.com/2020/03/fairy-dust-makes-everything-better.html",null,1583890030],
["11446879","Barbara Bruder","http://artandsoulcreations.blogspot.com/2020/03/march-stamp-club-theme-card.html",null,1583900441],
["11446899","J. Atterbury Creations","https://jatterburycreations.blogspot.com/2020/03/scripture-series-lord-is-thy-keeper.html",null,1583912412],
["11446961","Priya","https://simpleartcraft.wordpress.com/2020/03/11/circle-card-2",null,1583924456],
["11447042","Maia","https://hetvalkennest.blogspot.com/2020/03/vintage-napkin-fold-kaart-en.html",null,1583945179],
["11447048","Nicolette","https://nicoletteskaarten.blogspot.com/2020/03/voor-caroline.html",null,1583947536],
["11447098","Teresa","http://redobsessioncards.blogspot.com/2020/03/birthday-cupcake.html?m=1",null,1583967022],
["11447099","Teresa","http://redobsessioncards.blogspot.com/2020/03/all-you-need-is-love.html?m=1",null,1583967782],
["11447102","Teresa","http://redobsessioncards.blogspot.com/2020/03/happy-days.html?m=1",null,1583968935],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}