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("14Feb2020", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRmZWIyMDIw", "1");
blenza_setcolor("default");
blenza_setExpires("1.5 weeks ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Feb2020");
blenza_linkies("thumb","lozzy","14Feb2020","1702500548",3,
[
// MTRmZWIyMDIw
["11437935","Cathy(kraftykoolkat)","https://kraftykoolkat.blogspot.com/2020/02/sparkles-monthly-challenges-ch125-dt.html",null,1581770050],
["11437949","Kym","https://kyms-crafty-cards.blogspot.com/2020/02/happy-50th-birthday-anne.html",null,1581770734],
["11437999","Birgit","https://cardsrstillfun.blogspot.com/2020/02/big-congrats-hug-on-birthday.html",null,1581774589],
["11438073","monique","https://moniqueschattefor.blogspot.com/2020/02/kangeroo-valentine.html",null,1581782796],
["11438088","Janis Lewis","https://pausedreamenjoy.blogspot.com/2020/02/through-thick-thin.html",null,1581784549],
["11438115","Donna R","https://indianainking.blogspot.com/2020/02/12-months-of-christmas-link-up.html",null,1581789954],
["11438120","Judy V","https://jvzcreations.blogspot.com/2020/02/so-sorry.html",null,1581791098],
["11438141","Creative Smiles","https://creativesmiles2.blogspot.com/2020/02/speekski-designs-at-do-all-kreatives.html",null,1581795321],
["11438226","CarolG NZ","https://creationsnz.blogspot.com/2020/02/sweet-heart.html",null,1581819942],
["11438285","Hermien","https://handmadebyhermien.blogspot.com/2020/02/reminder-k.html",null,1581843774],
["11438292","Jootje","https://jootjesscrapcards.blogspot.com/2020/02/gelukkig-getrouwdhappily-married.html",null,1581845442],
["11438322","caroline","https://caroline-creaties.blogspot.com/2020/02/koffiekaartje.html",null,1581850417],
["11438364","TRACEYMO","https://mowbraydesigns.blogspot.com/2020/02/your-scrapbook-place-reminder.html",null,1581860500],
["11438393","Michelle","https://michelledees.blogspot.com/2020/02/zeepaardje-seahorse.html",null,1581863865],
["11438396","Michelle L","https://laughingducks2012.blogspot.com/2020/02/game-station-fun.html",null,1581864128],
["11438454","jenimc","https://jenicraftroom.blogspot.com/2020/02/easter-bag.html",null,1581871328],
["11438489","Helen","https://craftinghelen.blogspot.com/2020/02/winged-unicorn-from-lauren-c-waterworth.html",null,1581877237],
["11438579","CarolG NZ","https://creationsnz.blogspot.com/2020/02/heart-box.html",null,1581893154],
["11438632","Elle-jeanne","https://krekwakwo.blogspot.com/2020/02/daar-zit-muziek-in.html?m=1",null,1581922222],
["11438637","Kym","https://kyms-crafty-cards.blogspot.com/2020/02/good-luck-in-your-new-job-kevin.html",null,1581923055],
["11438647","Jane's Journal","https://jane-janesjournal.blogspot.com/2020/02/visible-image-total-chaos.html",null,1581925469],
["11438666","Made by Mandy","https://amandacruxton2.blogspot.com/2020/02/winter-blues.html",null,1581929398],
["11438669","Bianca's Scrapcards","https://biancasscrapcards.blogspot.com/2020/02/happiness.html",null,1581932191],
["11438671","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2020/02/love-always-wins.html",null,1581932808],
["11438695","Scrapacrolles","http://scrapacrolles.over-blog.com/2020/02/un-nouveau-defi-et-une-carte.html",null,1581939021],
["11438704","Made by Mandy","https://amandacruxton2.blogspot.com/2020/02/baby-robin.html",null,1581941315],
["11438715","My Other World","https://scrapsdamaryv.blogspot.com/2020/02/make-my-monday-116-critters.html",null,1581943763],
["11438718","Carole J","https://cjcrafty.blogspot.com/2020/02/vera-lane-studio-lil-bit-of-heaven.html",null,1581944135],
["11438724","Lynn McAuley","https://confessionsofaleft-brainedstamper.blogspot.com/2020/02/birthday-roses-kss.html",null,1581945518],
["11438729","yvonne","https://yvonne1965shamina.blogspot.com/2020/02/een-kaart-gemaakt-voor-mijn-vader-die.html",null,1581947012],
["11438764","marleen","https://marleenvanwetten.blogspot.com/2020/02/happy-easter.html",null,1581951050],
["11438766","marleen","https://marleenvanwetten.blogspot.com/2020/02/follow-stars.html",null,1581951484],
["11438769","Liliane","http://scrapchosdalilica.blogspot.com/2020/02/cartao-laranja-para-aniversario.html",null,1581952607],
["11438782","monique","http://moniqueschattefor.blogspot.com/2020/02/koala-love.html",null,1581954471],
["11438787","Emma R","https://emgoescardmaking.blogspot.com/2020/02/what-you-wish.html",null,1581955685],
["11438788","caroline","https://caroline-creaties.blogspot.com/2020/02/gastdesigner-bij-kic.html",null,1581955757],
["11438862","Claudia","https://knutselmeisjes.blogspot.com/2020/02/winter-fairy.html",null,1581967969],
["11438872","Twisted Witch - Lin","http://twisted-witch.blogspot.com/2020/02/dv-219-hand-coloured-image.html",null,1581969223],
["11438874","Zora","http://lofquisten.blogspot.com/2020/02/minikort.html",null,1581969365],
["11438888","Helen","https://helenscrafthaven.blogspot.com/2020/02/airborne.html",null,1581971807],
["11438896","CarolG NZ","https://creationsnz.blogspot.com/2020/02/first-steps.html",null,1581973315],
["11438925","Jen Evers","https://jenskoalatcrafts.blogspot.com/2020/02/couldnt-we-all-use-just-bit-more-time.html",null,1581980497],
["11438944","Karen C","http://busyinspirations.blogspot.com/2020/02/well-wishes.html",null,1581985235],
["11438948","Karen C","http://busyinspirations.blogspot.com/2020/02/wine-improves-with-age.html",null,1581986019],
["11439007","Nicolette","https://nicoletteskaarten.blogspot.com/2020/02/van-harte-gefeliciteerd.html",null,1582017968],
["11439024","Fiona Whitehead","https://craftystamping.blogspot.com/2020/02/pink-ink-designs.html",null,1582022778],
["11439034","Pippa","https://viewsfrommycraftroom.blogspot.com/2020/02/a-bit-more-adoration.html",null,1582026079],
["11439036","Dawn S","https://dawnscraftybits.blogspot.com/2020/02/holly-flower-basket-beautifully-pastel.html",null,1582026390],
["11439051","Karen Dunbrook","https://snippets-karen.blogspot.com/2020/02/comfort-and-peace.html",null,1582029583],
["11439082","America","https://cardsbyamerica.blogspot.com/2020/02/a-love-card.html",null,0],
["11439107","Mieke Duckers","https://www.miekesaddiction.blogspot.nl",null,1582045534],
["11439108","Sheryl Hare","https://marchharecards.blogspot.com/2020/02/cottontail.html",null,1582045579],
["11439114","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/thank-you-for-being-in-my-life-crafty.html",null,1582047039],
["11439118","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/shake-it-off-bugaboo-stamps-new-release.html",null,1582047809],
["11439259","Sharon","http://fiddlydiddlycardsandcreations.blogspot.com/2020/02/jasmine.html",null,1582064333],
["11439263","Sheryl Hare","https://marchharecards.blogspot.com/2020/02/festive-lhasa-apso.html",null,1582065792],
["11439282","Karthikha","https://loveforkrafts.blogspot.com/2020/02/valentines-day-cards-for-kids.html",null,1582070015],
["11439366","Lilian B","https://lillyb46.blogspot.com/2020/02/woywdw_19.html",null,1582099481],
["11439370","Rosina","http://rosina-scrapcards.blogspot.com/2020/02/happy-birthday-to-you.html",null,1582099845],
["11439412","Scatty Jan","https://scrappyscatty.blogspot.com/2020/02/texture-stampotique-challenge.html",null,1582108958],
["11439442","My Other World","https://scrapsdamaryv.blogspot.com/2020/02/pennys-challenges-465.html",null,1582115687],
["11439460","Creative Em","https://www.creative-em.com/2020/02/with-love.html",null,1582118288],
["11439463","Dreja","https://drejasbastelwelt.blogspot.com/2020/02/mannergeburtstag.html",null,1582118864],
["11439514","Karthikha","https://loveforkrafts.blogspot.com/2020/02/valentines-day-chocolate-bar-wrapper.html",null,1582129777],
["11439593","Saphron","https://www.lemonbiscuit.blog/crafts/pennys-paper-crafty-challenge-465/",null,1582150646],
["11439652","Rachelle Oltean","https://redcre8s.blogspot.com/2020/02/sympathy-card-artsystamper-digitals.html",null,1582178743],
["11439698","CreaNancy","https://creanancy.blogspot.com/2020/02/creative-sketchy-girls-45-girls-only.html",null,1582190907],
["11439719","Desire Fourie","https://desiref.blogspot.com/2020/02/the-best-thing-life-reminder-project.html",null,1582200421],
["11439744","Nicolette","http://nicoletteskaarten.blogspot.com/2020/02/groetjes.html",null,1582210915],
["11439841","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/thanks-thank-you-for-loving-me-aud.html",null,1582229562],
["11439852","America","https://cardsbyamerica.blogspot.com/2020/02/baby-girl-mini-album.html",null,0],
["11439887","Judy V","https://jvzcreations.blogspot.com/2020/02/stampers-delights-thrifty-thursday.html",null,1582244984],
["11439956","jenimc","https://jenicraftroom.blogspot.com/2020/02/baby-girl-verandah.html",null,1582277632],
["11439957","Larissa","https://car-d-elicious.blogspot.com/2020/02/niek-heeft-zijn-zwemdiploma-c.html",null,1582277789],
["11439960","Larissa","https://car-d-elicious.blogspot.com/2020/02/gerda-steiner-designs-thank-you.html",null,1582279058],
["11439986","Vivi","http://handmadebyvivi.blogspot.com/2020/02/sending-hugs.html",null,0],
["11440002","*Vicki*","https://stampedsmiles.com/2020/02/21/full-bloom-rainbow/",null,1582290595],
["11440008","AuntySue","https://auntysuescraftcavern.blogspot.com/2020/02/crafty-catz-challenge-with-optional.html",null,1582291386],
["11440019","yvonne","https://yvonne1965shamina.blogspot.com/2020/02/mijn-herinneringskaart-voor-de.html",null,1582293276],
["11440056","Sherri Thacker","https://sherri-iloveflipflops.blogspot.com/2020/02/cut-it-up-challenge-194.html",null,1582300817],
["11440058","Gale K","https://galesstampingcorner.blogspot.com/2020/02/cute-as-button-inspiration-showcase.html",null,1582301172],
["11440125","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/smile-colour-crazy-challenge-wk-7.html",null,1582313077],
["11440127","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/live-it-up-happy-birthday-crafty-catz.html",null,1582313944],
["11440137","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/enjoy-chill-of-winter-bugaboo-free.html",null,1582315433],
["11440163","Crafty Cards By Marg","https://craftycardsbymarg.blogspot.com/2020/02/a-card-for-challenge-or-two.html",null,1582320776],
["11440189","Nikki C","https://graphixanddesign.blogspot.com/2020/02/feb-17-29-anything-goes.html",null,1582330229],
["11440257","Kym","https://kyms-crafty-cards.blogspot.com/2020/02/bookmarks-and-card-in-debbi-moore.html",null,1582365496],
["11440260","Michela Piras","https://cartaecoloriblog.wordpress.com/2020/02/21/wk8-new-challenge-polkadoodles/",null,1582365947],
["11440277","Janny","https://kaarten-van-janny.blogspot.com/2020/02/twee-kaarten-gekleurd.html",null,1582367927],
["11440288","Nicolette","https://nicoletteskaarten.blogspot.com/2020/02/babyboom.html",null,1582369742],
["11440292","Cinderella 1","https://cinderellasdreamcardsblog.blogspot.com/2020/02/verjaardagskaart-birthday-card.html",null,1582370247],
["11440318","Made by Mandy","https://amandacruxton2.blogspot.com/2020/02/masquerade-mask.html",null,1582373324],
["11440321","Hazel","https://craftyhazelnut.blogspot.com/2020/02/chnc-challenge-478.html",null,1582373427],
["11440378","Janis Lewis","https://pausedreamenjoy.blogspot.com/2020/02/believe-in-yourself.html",null,1582381215],
["11440591","Priyadarshini","https://simpleartcraft.wordpress.com/2020/02/23/altered-old-phone",null,1582435742],
["11440655","Repolainen","https://repolainenreissaa.blogspot.com/2020/02/tennari.html",null,1582455862],
["11440704","Dawn S","https://dawnscraftybits.blogspot.com/2020/02/love-must-be-something-in-air.html",null,1582463535],
["11440964","Craftartista","https://craftartista.blogspot.com/2020/02/mandala-free-image-12.html",null,1582517093],
["11440991","America","https://cardsbyamerica.blogspot.com/2020/02/bithday-wishes.html",null,1582522400],
["11441033","Aimeslee Winans","https://paper-paisleys.blogspot.com/2020/02/feeding-my-need-for-spring.html",null,1582535457],
["11441044","Carole Jones","https://cjcrafty.blogspot.com/2020/02/vera-lane-studio-quirky-bird-house.html",null,1582540888],
["11441118","yvonne","https://yvonne1965shamina.blogspot.com/2020/02/vandaag-een-easel-kerstkaart-gemaakt.html",null,1582557227],
["11441175","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/moose-you-big-time-always-fun-151.html",null,1582570345],
["11441240","Glenda Atkins","https://gilbyscorner.blogspot.com/2020/02/crafty-cardmakers-challenge-251.html",null,1582583007],
["11441241","CarolG NZ","https://creationsnz.blogspot.com/2020/02/no-weigh.html",null,1582583205],
["11441348","Nicolette","http://nicoletteskaarten.blogspot.com/2020/02/tijd-voor-taart.html",null,1582629396],
["11441377","caroline","https://caroline-creaties.blogspot.com/2020/02/monochrome_25.html",null,1582635609],
["11441432","Loopyloo","https://loopyloocards.com/2020/02/25/christmas-joy-wreath/",null,1582650332],
["11441460","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/hope-you-feel-better-soon-crafty.html",null,1582658610],
["11441463","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/congratulations-on-you-happy-news.html",null,1582659127],
["11441511","NanaConnie","https://mygrammysattic.blogspot.com/2020/02/skating-by.html",null,1582669719],
["11441723","Creative Em","https://www.creative-em.com/2020/02/designer-focus-tina-cox.html",null,1582723261],
["11441745","Lori Podolsky","https://loripodolsky.blogspot.com/2020/02/smell-flowers-pixie-by-lemon-shortbread.html",null,1582728810],
["11441780","Judy V","https://jvzcreations.blogspot.com/2020/02/february-cute-as-button-inspiration.html",null,1582738530],
["11441814","Tone K.","http://tonesscrapperom.blogspot.com/2020/02/my-favorite-aj.html",null,1582751731],
["11441830","Teresa","http://redobsessioncards.blogspot.com/2020/02/love.html?m=1",null,1582757506],
["11441843","Teresa","http://redobsessioncards.blogspot.com/2020/02/footie.html?m=1",null,1582764754],
["11441960","Shona Hamill","https://handmadebyhamill.blogspot.com/2020/02/curious-wonders-samples-for-jmc-designs.html",null,1582812345],
["11441969","Shona Hamill","https://handmadebyhamill.blogspot.com/2020/02/cas-penguins-for-christmas-with-cuties.html",null,1582812800],
["11442018","Larissa","https://car-d-elicious.blogspot.com/2020/02/as-you-like-it-challenge177-your.html",null,1582825951],
["11442048","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2020/02/feeling-sketchy-sopek-s-potonikami.html",null,1582835448],
["11442057","Teresa","http://redobsessioncards.blogspot.com/2020/02/love-birds.html?m=1",null,1582838367],
["11442063","Teresa","http://redobsessioncards.blogspot.com/2020/02/black-bling-and-snowflakes.html?m=1",null,1582839172],
["11442086","Aimeslee Winans","https://paper-paisleys.blogspot.com/2020/02/time-to-groove.html",null,1582847017],
["11442126","Teresa","https://redobsessioncards.blogspot.com/2020/02/floral-birthday.html?m=1",null,1582863192],
["11442164","Nicolette","https://nicoletteskaarten.blogspot.com/2020/02/shoppen-is-een-prima-medicijn.html",null,1582879378],
["11442183","Loopyloo","https://loopyloocards.com/2020/02/28/x-for-xtra-embellishments/",null,1582883293],
["11442255","Dawn S","https://dawnscraftybits.blogspot.com/2020/02/pinky-swear-keep-secret.html",null,1582895588],
["11442298","Leslie Turner","http://lovetoscrap2.com/2020/02/26/happy-st-patricks-day-treat-box",null,1582900706],
["11442299","Leslie Turner","http://lovetoscrap2.com/2020/02/27/happy-spring-2",null,1582900751],
["11442347","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/miss-you-gobs-colour-crazy-challenge-wk.html",null,1582910139],
["11442350","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/your-kindness-crafty-catz-495.html",null,1582910782],
["11442371","caroline","https://caroline-creaties.blogspot.com/2020/02/gewoon-even-wat-aandacht-voor-elkaar.html",null,1582914962],
["11442379","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2020/02/hello-friend-bugaboo-free-friday.html",null,1582916043],
["11442490","Anita","https://beadscharmsandwire.wordpress.com/2020/02/29/letters-art-journal/",null,1582959642],
["11442524","Priya","https://simpleartcraft-tips.blogspot.com/2020/02/stencil-highlighting-tubby-craft.html",null,1582970957],
["11442560","Pippa","https://viewsfrommycraftroom.blogspot.com/2020/02/february-anime-new-release-at-stampers.html",null,1582976761],
["11442597","Janis Lewis","https://pausedreamenjoy.blogspot.com/2020/02/enjoy-your-extra-day-this-year.html",null,1582981824],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}