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("31Jan2020", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzFqYW4yMDIw", "1");
blenza_setcolor("default");
blenza_setExpires("4 weeks ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("31Jan2020");
blenza_linkies("thumb","lozzy","31Jan2020","1288716877",3,
[
// MzFqYW4yMDIw
["11431587","Grietje's Kaartenhoekje","https://grietje78.blogspot.com/2020/02/christmas-24-3-dry-or-heat-embossing.html",null,1580547176],
["11431590","caroline's creaties","https://caroline-creaties.blogspot.com/2020/02/nederlandse-kaart-bij-2sistersontheblog.html",null,1580547972],
["11431660","tinyworks","http://tinyworks81.blogspot.com/2020/02/card-you-have-my-herat-designer-team.html",null,1580557970],
["11431667","Granne","https://aavamaki.blogspot.com/2020/02/sheepski-designs-hearts-or-flowers.html",null,1580559212],
["11431670","Ella","https://mojeszydelkoweprzygody.blogspot.com/2020/02/challenge-38-bei-do-all-kreatives.html",null,1580559754],
["11431687","Cinderella 1","https://cinderellasdreamcardsblog.blogspot.com/2020/01/be-my-valentine.html",null,1580561416],
["11431704","Sarah N","https://papertreedotblog.wordpress.com/2020/02/01/back-to-school-2/",null,1580563069],
["11431714","Caz Crafty bits","https://cazcraftybits.blogspot.com/2020/02/home-is-where-heart-isjmc-designs.html",null,1580563982],
["11431738","Kym","https://kyms-crafty-cards.blogspot.com/2020/02/happy-birthday.html",null,1580566797],
["11431746","CarolG NZ","https://creationsnz.blogspot.com/2020/02/ritzy-penguin.html",null,1580567849],
["11431756","My Other World","http://scrapsdamaryv.blogspot.com/2020/02/creative-with-stamps-47-vermelho.html",null,1580568612],
["11431769","NanaConnie","http://mygrammysattic.blogspot.com/2020/02/in-garden.html",null,1580570040],
["11431778","Chris","https://andheresoneimadeearlier.blogspot.com/2020/02/crafty-calendar-february-challenge.html",null,1580570968],
["11431786","jenimc","https://jenicraftroom.blogspot.com/2020/02/lifes-beauty.html",null,1580573362],
["11431933","elizabeth h","http://warmharted.blogspot.com/2020/02/martini-thank-you.html",null,1580585116],
["11431988","Carole J","https://cjcrafty.blogspot.com/2020/02/crafts-galore-encore-sending-hedgehugs.html",null,1580592978],
["11431995","Judy V","https://jvzcreations.blogspot.com/2020/02/princess-patme-amilada.html?showComment=1580593070283#c6263773639440774205",null,1580593211],
["11432009","Carole J","https://cjcrafty.blogspot.com/2020/02/gecko-galz-age-of-aquarius.html",null,1580593900],
["11432013","Judy V","https://jvzcreations.blogspot.com/2020/02/foxy-love-kisses.html",null,1580594775],
["11432017","Hazel","https://craftyhazelnut.blogspot.com/2020/02/craftyhazelnuts-patterned-paper.html",null,1580596259],
["11432022","Hazel","https://craftyhazelnut.blogspot.com/2020/02/chnc-challenge-475.html",null,1580597086],
["11432055","Pam D","https://itisfinisheddesigns.blogspot.com/2020/02/thanks-bunch.html",null,1580605137],
["11432148","Chrissy","https://chrissyscardland.blogspot.com/2020/02/613-avenue-create-dt.html",null,1580633129],
["11432152","Madhu Bairoliya","https://thecraftplanet1.blogspot.com/2020/01/thinking-of-youbendi-card.html",null,1580633607],
["11432165","Wendy Batchen","https://wenscreations.blogspot.com/2020/02/cute-as-button-challenge-1st-february.html",null,1580636267],
["11432166","Pippa","https://viewsfrommycraftroom.blogspot.com/2020/02/scrappers-delights-facebook-progressive.html",null,1580636288],
["11432186","monique","http://moniqueschattefor.blogspot.com/2020/02/van-harte.html",null,1580638191],
["11432189","Granne","https://aavamaki.blogspot.com/2020/02/mermaid-card.html",null,1580638713],
["11432196","Rutscht","https://rutscht.blogspot.com/2020/02/smile.html",null,1580639967],
["11432200","Larissa","https://car-d-elicious.blogspot.com/2020/02/dis-digi-designs-challenge-all-about.html",null,1580641009],
["11432215","Terry","https://cardscreativity.blogspot.com/2020/02/we-love-to-create-challenge-2-anything.html",null,1580643968],
["11432221","caroline's creaties","https://caroline-creaties.blogspot.com/2020/02/voor-martijn.html",null,1580645211],
["11432290","AMERICA","https://cardsbyamerica.blogspot.com/2020/02/sending-love-amazing-paper-grace.html",null,1580653606],
["11432304","Victoria R","http://victorias-crafting-creations.blogspot.com/2020/02/caab-force-be-with-you-card.html?m=1",null,1580654470],
["11432370","Dawn Frost","http://stamp-n-play.blogspot.com/2020/02/bugaboo-mouse-hearts.html",null,1580661329],
["11432380","Beverly Cole","https://www.artsystamper.com/2020/02/gecko-galz-dt-3-from-1-printing.html",null,1580661905],
["11432402","le idee di penelope ","https://challenge.magnoliastamps.us/search/label/magnolia-licious%20challenge",null,0],
["11432403","le idee di penelope ","https://ideedipenelope.blogspot.com/2020/02/nuovo-challenge-su-simply-magnolia.html",null,1580663629],
["11432411","le idee di penelope ","https://ideedipenelope.blogspot.com/2020/02/nuovo-challenge-magnolia-forever.html",null,1580664244],
["11432422","Melanie Gee","https://melgeecrafts.com/2020/02/02/challenge-for-dragonfly-dreams-february-2020/",null,1580664725],
["11432425","Made by Mandy","https://amandacruxton2.blogspot.com/2020/02/happy-birthday-balloons.html",null,1580664816],
["11432484","Glittertastic","https://glittertastic.blogspot.com/2020/02/amys-18th.html",null,1580670457],
["11432561","NanaConnie","https://mygrammysattic.blogspot.com/2020/02/guest-designer-at-conie-fong.html",null,1580673433],
["11432736","Cass","https://casscreatingnow.blogspot.com/2020/02/a-place-to-start-create-masculine-card.html",null,1580710759],
["11432744","Elle-jeanne","https://krekwakwo.blogspot.com/2020/01/kerstkaart-week-5.html?m=1#comment-form",null,0],
["11432746","Elle-jeanne","https://krekwakwo.blogspot.com/2020/02/rood-en-zwart.html?m=1",null,1580713203],
["11432752","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2020/02/with-love.html",null,1580714474],
["11432757","Joy Wilson","https://joyfullystamps.com/2020/02/valentines-embellishments.html",null,1580716170],
["11432780","meg","https://bitsandpiecec.blogspot.com/2020/02/i-heart-you.html",null,1580721715],
["11432793","Carole J","https://cjcrafty.blogspot.com/2020/02/vera-lane-studio-be-kind.html",null,1580728969],
["11432795","Carol","https://carol-paperplay-carol.blogspot.com/2020/02/wl-2020-1.html",null,1580729167],
["11432825","Leslie Turner","http://lovetoscrap2.com/2020/02/01/faceted-christmas-ornaments",null,1580736246],
["11432826","Leslie Turner","http://lovetoscrap2.com/2020/02/01/happy-birthday-my-friend",null,1580736324],
["11432827","Leslie Turner","http://lovetoscrap2.com/2020/02/01/amour-wedding-album",null,1580736388],
["11432828","Leslie Turner","http://lovetoscrap2.com/2020/02/01/whats-mew",null,1580736424],
["11432829","Leslie Turner","http://lovetoscrap2.com/2020/02/01/happy-happy-birthday",null,1580736470],
["11432832","My Other World","https://scrapsdamaryv.blogspot.com/2020/02/make-my-monday-115-i-heart-you.html",null,1580737358],
["11432842","yvonne","https://yvonne1965shamina.blogspot.com/2020/02/we-zijn-ook-weer-met-een-nieuwe.html",null,1580741037],
["11432846","yvonne","https://yvonne1965shamina.blogspot.com/2020/02/we-zijn-weer-met-een-nieuwe-wedstrijd.html",null,1580742391],
["11432870","Sheryl Hare","https://marchharecards.blogspot.com/2020/02/botanical-orchids.html",null,1580749384],
["11432881","Craftartista","https://craftartista.blogspot.com/2020/02/i-am-mermaid-package-delivered-and.html",null,1580749655],
["11433022","elizabeth h","http://warmharted.blogspot.com/2020/02/love-letters.html",null,1580758165],
["11433145","Cinderella 2","https://cinderellasdreamcardsblog.blogspot.com/2020/02/give-peace-chance.html",null,1580762963],
["11433311","AJ","https://ajcreativeenergy.blogspot.com/2020/02/chocolate-box.html",null,1580774175],
["11433327","Karen C","http://busyinspirations.blogspot.com/2020/02/mothers-day.html",null,1580779155],
["11433416","Carole J","https://cjcrafty.blogspot.com/2020/02/path-of-positivity-youre-beary-special.html",null,1580814762],
["11433446","Maia","https://hetvalkennest.blogspot.com/2020/02/vintageshabby-chic-winter-verjaardag.html",null,1580821004],
["11433515","Judy V","https://jvzcreations.blogspot.com/2020/02/morgans-artworld-challenge-2-2020.html",null,1580836264],
["11433521","Dawn S","https://dawnscraftybits.blogspot.com/2020/02/love-hearts-with-oddella.html",null,1580837021],
["11433523","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/live-love-laugh-bugaboo-stamps-new.html",null,1580837237],
["11433527","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/wishing-we-lived-closer-crafty.html",null,1580838281],
["11433528","Karthikha","https://loveforkrafts.blogspot.com/2020/02/masculine-love-card.html",null,1580838313],
["11433638","Suze","https://craftysuze.blogspot.com/2020/02/its-winter.html",null,1580842663],
["11433721","Larissa","https://car-d-elicious.blogspot.com/2020/02/bee-mine.html",null,1580846753],
["11433914","Priyadarshini","https://simpleartcraft.wordpress.com/2020/02/05/explosion-box-and-bonus-mini-fotofolio-album",null,1580880069],
["11433996","Sheryl Hare","https://marchharecards.blogspot.com/2020/02/love-is-in-air.html",null,1580897392],
["11434056","Creative Em","https://www.creative-em.com/2020/02/precious-gift.html",null,1580908790],
["11434072","Nicolette","https://nicoletteskaarten.blogspot.com/2020/02/jarig.html",null,1580911514],
["11434128","Birgit","https://cardsrstillfun.blogspot.com/2020/02/thank-you-for-good-nursing.html",null,1580920781],
["11434150","caroline's creaties","https://caroline-creaties.blogspot.com/2020/02/voor-jeroen.html",null,1580925967],
["11434173","Beverly Cole","https://www.artsystamper.com/2020/02/creating-quick-card.html",null,1580929734],
["11434175","Hermien","https://handmadebyhermien.blogspot.com/2020/02/boerenbruiloft.html",null,1580929944],
["11434179","Maryann Scrapbooking","https://maryann-scrap.blogspot.com/2020/02/joyeux-anniversaire-anne.html",null,1580931109],
["11434185","Linda Mc Enery","http://lindamscreations.blogspot.com/2020/02/pennys-paper-crafty-challenge-464.html",null,1580932427],
["11434258","Sladjana Perisic","http://creativepixiedesigns.com/bugaboo-stamp-unicorn-chibi-lil-patch-of-crafty-friends-design-team-project/",null,1580945660],
["11434260","GerJanne","https://gerjanneke2.blogspot.com/2020/02/een-sketch-met-muziek.html",null,1580946591],
["11434273","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2020/02/sweet-napkin-card.html",null,1580951062],
["11434401","Meighan Wheller","https://meighanwheller.blogspot.com/2020/02/sg-anything-goes.html",null,1580981242],
["11434417","Anita","https://beadscharmsandwire.wordpress.com/2020/02/06/a-purr-fect-mini-book-art-journal/",null,1580987690],
["11434422","Pippa","https://viewsfrommycraftroom.blogspot.com/2020/02/path-of-positivity-february-challenge.html",null,1580990243],
["11434443","Leslie Turner","http://lovetoscrap2.com/2020/02/03/kraft-black-shoe",null,1580995322],
["11434444","Leslie Turner","http://lovetoscrap2.com/2020/02/05/i-love-you-2",null,1580995524],
["11434445","Leslie Turner","http://lovetoscrap2.com/2020/02/05/i-love-hanging-with-you",null,1580995644],
["11434446","Leslie Turner","http://lovetoscrap2.com/2020/02/05/its-5-oclock-somewhere",null,1580995770],
["11434448","Leslie Turner","http://lovetoscrap2.com/2020/02/05/life-without-cats-i-dont-think-so",null,1580995879],
["11434544","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/dreaming-always-of-you-aud-sentiments.html",null,1581021375],
["11434558","AJ","https://ajcreativeenergy.blogspot.com/2020/02/hot-air-balloons-of-love.html",null,1581024334],
["11434619","Olive Tsay","https://www.facebook.com/128146480688683/photos/a.335596256610370/1394356967400955/?type=3&theater",null,1581043439],
["11434621","Barbara Bruder","http://artandsoulcreations.blogspot.com/2020/02/february-2020-craft-dee-bowz-challenge.html",null,1581046483],
["11434661","Kym","https://kyms-crafty-cards.blogspot.com/2020/02/ching-chou-kuiks-digital-stamps.html",null,1581058750],
["11434892","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/wishing-you-best-colour-crazy-challenge.html",null,1581095793],
["11434903","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/thanks-for-bee-ing-there-crafty-catz-492.html",null,1581096680],
["11434930","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/you-are-always-in-my-heart-bugaboo.html",null,1581097886],
["11435068","Kym","https://kyms-crafty-cards.blogspot.com/2020/02/colour-crazy-challenge-blog-friday-7.html",null,1581102863],
["11435071","yvonne","https://yvonne1965shamina.blogspot.com/2020/02/ik-heb-een-magical-kerstkaart-gemaakt.html",null,1581103242],
["11435117","jenimc","https://jenicraftroom.blogspot.com/2020/02/down-on-farm.html",null,1581106656],
["11435277","Helen","https://helenscrafthaven.blogspot.com/2020/02/burgundy-platinum-christmas.html",null,1581115113],
["11435387","Melanie Gee","https://melgeecrafts.com/2020/02/06/challenge-for-aud-sentiments-06-02-2020/",null,1581151430],
["11435428","Valerie","https://lescrapdevava.blogspot.com/2020/02/youre-instafamous.html",null,1581162933],
["11435573","Grietje's Kaartenhoekje","https://grietje78.blogspot.com/2020/02/i-love-dogs.html",null,1581174662],
["11435581","Judy V","https://jvzcreations.blogspot.com/2020/02/dds-new-release-preview.html",null,1581176489],
["11435594","Swissie","https://swissieliv.blogspot.com/2020/02/birthday-card-with-strawberries.html",null,1581177993],
["11435631","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/im-itching-for-playdate-catch-bug.html",null,1581187127],
["11435691","Liliane","http://scrapchosdalilica.blogspot.com/2020/02/boa-tarde-arteiras-mais-um-mes-se.html",null,1581204066],
["11435697","Teresa","http://redobsessioncards.blogspot.com/2020/02/the-love-cows.html?m=1",null,1581205714],
["11435703","Angela","https://inspired4ucrafts.blogspot.com/2020/02/mini-tag-journalbooklet.html",null,1581206402],
["11435872","Wendy Batchen","https://wenscreations.blogspot.com/2020/02/cute-as-button-progressive-challenge.html",null,1581246999],
["11435874","Nelleke","https://farmerblog-nelleke.blogspot.com/2020/02/scrabbelen.html",null,1581247256],
["11435935","Hazel","https://craftyhazelnut.blogspot.com/2020/02/chnc-challenge-476.html",null,1581255248],
["11435975","Pippa","https://viewsfrommycraftroom.blogspot.com/2020/02/chibi-new-release-at-scrappers-delights.html",null,1581260398],
["11435993","Mieke Duckers","https://www.miekesaddiction.blogspot.nl",null,1581263113],
["11436059","monique","https://moniqueschattefor.blogspot.com/2020/02/kabouter-taart.html",null,1581272382],
["11436097","Teresa","http://redobsessioncards.blogspot.com/2020/02/birthday-flowers.html?m=1",null,1581276665],
["11436177","Karen C","http://busyinspirations.blogspot.com/2020/02/happy-birthday-tri-fold-card.html",null,1581300767],
["11436217","Elle-jeanne","https://krekwakwo.blogspot.com/2020/02/baby-girl.html?m=1#comment-form",null,1581317693],
["11436227","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2020/02/hoe-oud.html",null,1581318613],
["11436232","Michela Piras","https://cartaecoloriblog.wordpress.com/2020/02/07/wk6-new-challenge-polkadoodles/",null,1581319581],
["11436241","Nicolette","https://nicoletteskaarten.blogspot.com/2020/02/love.html",null,1581323215],
["11436264","Carole J","https://cjcrafty.blogspot.com/2020/02/vera-lane-studio-fleur-fairy.html",null,1581327817],
["11436291","Vivian Foo","https://www.facebook.com/photo.php?fbid=1761485053987275&set=a.753827484753042&type=3&theater",null,1581338574],
["11436292","Scrapacrolles","http://scrapacrolles.over-blog.com/2020/02/defi-24-du-cbbb.html",null,1581338590],
["11436298","Pat K","https://patkscards.blogspot.com/2020/02/144-cute-pie-challenge.html",null,1581340515],
["11436310","yvonne","https://yvonne1965shamina.blogspot.com/2020/02/een-kaart-met-op-de-achtergrond-een.html",null,1581342645],
["11436318","Anita","https://beadscharmsandwire.wordpress.com/2020/02/10/dont-look-back-in-anger-art-journal/",null,1581343582],
["11436346","Anna","https://nonsolocard.blogspot.com/2020/02/minialbum-accordion.html",null,1581346866],
["11436386","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/you-are-simply-fabulous-always-fun-149.html",null,1581357816],
["11436428","CarolG NZ","https://creationsnz.blogspot.com/2020/02/the-rest-of-your-life.html",null,1581365717],
["11436572","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2020/02/hope-is.html",null,1581415845],
["11436581","earl-lea-riser.","https://earl-lea-riser.blogspot.com/2020/02/rorys-merigolds.html",null,1581418831],
["11436621","Julie T","https://juliescraftyspot.blogspot.com/2020/02/tulip-darling-bud.html",null,1581429499],
["11436638","Patsy Long","http://craftyafrican.blogspot.com/2020/02/digi-doodle-studios-tea-time.html",null,1581432316],
["11436710","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/happy-valentines-crafty-sentiments.html",null,1581448247],
["11436713","Lori Podolsky","http://loripodolsky.blogspot.com/2020/02/plum-blossoms-lady-by-lemon-shortbread.html",null,1581448859],
["11436716","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/love-you-bugaboo-stamps-new-release.html",null,1581449877],
["11436789","Leslie Turner","http://lovetoscrap2.com/2020/02/06/sweet",null,1581470119],
["11436790","Leslie Turner","http://lovetoscrap2.com/2020/02/08/oh-baby",null,1581470151],
["11436816","Barbara Bruder","http://artandsoulcreations.blogspot.com/2020/02/february-stamp-club-theme-card-shaped.html",null,1581476149],
["11436827","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2020/02/cute-as-button-challenge-53.html",null,1581481256],
["11436917","Vivian Foo","https://www.facebook.com/photo.php?fbid=1763326663803114&set=a.753827484753042&type=3&theater",null,1581502254],
["11436918","Anesha","https://skippereva.blogspot.com/2020/02/old-and-new.html",null,1581502373],
["11436944","Claudia","https://knutselmeisjes.blogspot.com/2020/02/baby.html",null,1581507992],
["11436948","Craftartista","https://craftartista.blogspot.com/2020/02/in-forest.html",null,1581508617],
["11436970","Donna T","http://lakefrontstampingcreations.blogspot.com/2020/02/the-house-that-stamps-built-tic-tac-toe.html",null,1581513462],
["11437019","jenimc","https://jenicraftroom.blogspot.com/2020/02/spring-on-its-way.html",null,1581523400],
["11437180","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/live-your-life-in-color-crafty-gals.html",null,1581547871],
["11437204","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2020/02/morgans-artworld-challenge-2.html",null,1581567300],
["11437218","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2020/02/love-to-craft-challenge-43.html",null,1581571650],
["11437252","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2020/02/mixed-media-tag.html",null,1581584457],
["11437293","Pam D","https://itisfinisheddesigns.blogspot.com/2020/02/happy-valentines-day.html",null,1581597703],
["11437311","yvonne","https://yvonne1965shamina.blogspot.com/2020/02/een-kerstkaart-gemaakt-met-op-de.html",null,1581602042],
["11437417","Karthikha","https://abitmoretimetocraft.blogspot.com/2020/02/a-bit-more-time-to-craft-challenge-109.html",null,0],
["11437418","Karthikha","https://loveforkrafts.blogspot.com/2020/02/anniversary-mini-album.html",null,1581628370],
["11437453","Teresa","http://redobsessioncards.blogspot.com/2020/02/just-two-of-us.html?m=1",null,1581634963],
["11437473","Rose Andrew","https://cardsforallreason.blogspot.com/2020/02/spring-has-sprung.html",null,1581638342],
["11437478","Olive Tsay","https://www.facebook.com/128146480688683/photos/a.335596256610370/1400185056818146/?type=3&theater",null,1581641194],
["11437534","Nicolette","http://nicoletteskaarten.blogspot.com/2020/02/veel-liefs.html",null,1581661300],
["11437588","Elle-jeanne","https://krekwakwo.blogspot.com/2020/02/happy-bithday.html?m=1",null,1581674105],
["11437598","Made by Mandy","https://amandacruxton2.blogspot.com/2020/02/valentines-card.html",null,1581676059],
["11437670","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2020/02/feeling-sketchy-praznicno-vzdusje.html",null,1581689601],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}