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("14Feb2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRmZWIyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("12 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Feb2019");
blenza_linkies("thumb","lozzy","14Feb2019","1813088794",3,
[
// MTRmZWIyMDE5
["11312543","pinky","https://pinkysworldsuprojects.blogspot.com/2019/02/hello-cupcake-step-card.html",null,1550223602],
["11312550","Jasmina","https://handmadebyjasmina.blogspot.com/2019/02/music-notes-andor-instruments-gd.html",null,1550225625],
["11312650","Anna","https://nonsolocard.blogspot.com/2019/02/n1-dad.html",null,1550239148],
["11312668","My Other World","https://scrapsdamaryv.blogspot.com/2019/02/creative-with-stamps-inspiracao-de.html",null,1550242428],
["11312696","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/02/hoi-allemaal-woensdag-had-ik-nog-een.html",null,1550245381],
["11312723","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/02/sparkles-monthly-challenges-ch-113-dt.html",null,1550248688],
["11312736","Shamita","https://spiralcreativity.blogspot.com/2019/02/fae.html",null,1550250949],
["11312751","Rutscht","https://rutscht.blogspot.com/2019/02/dream-big-darling.html",null,1550252665],
["11312761","Kym","http://kyms-crafty-cards.blogspot.com/2019/02/ching-chou-kuiks-digital-stamps_15.html",null,1550255006],
["11312769","tinyworks","http://tinyworks81.blogspot.com/2019/02/card-love-is-all-around-designer-team.html",null,1550255596],
["11312771","tinyworks","http://tinyworks81.blogspot.com/2019/02/shaker-card-balloon-chicken-gdt-colour.html",null,1550255616],
["11312800","Clare","https://clarelloyd.blogspot.com/2019/02/skies-im-under.html",null,1550260845],
["11312976","Hazel","https://craftyhazelnut.blogspot.com/2019/02/chnc-challenge-425.html",null,1550308509],
["11313051","Cathymac","https://goldeninkspirations.blogspot.com/2019/02/hoppy-birthday-dd-color-challenge.html",null,1550322202],
["11313182","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/02/gefeliciteerd_16.html",null,1550342595],
["11313192","Nicky","https://stiggyscrafts.blogspot.com/2019/02/you-are-special-everyday.html",null,1550344006],
["11313200","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/02/mocht-deze-maand-gd-zijn-bij-brazilie.html",null,1550346114],
["11313240","*Vicki*","https://stampedsmiles.com/2019/02/16/adopt-dont-shop-whimsy-stamps-party/",null,1550357725],
["11313242","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2030905833625672/?type=3&theater",null,0],
["11313243","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2037589736290615/?type=3&theater",null,1550357968],
["11313306","Barbara Bruder","http://artandsoulcreations.blogspot.com/2019/02/g-is-for-girl.html",null,1550368937],
["11313375","Grietje's Kaartenhoekje","https://grietje78.blogspot.com/2019/02/baby-deurhanger.html",null,1550392812],
["11313384","Hermien","https://handmadebyhermien.blogspot.com/2019/02/reminder-k.html",null,1550396709],
["11313387","Teresa","http://redobsessioncards.blogspot.com/2019/02/full-of-grace.html?m=1",null,1550398210],
["11313407","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/02/thinking-inking.html",null,1550400836],
["11313422","Wies","https://wiescreablog.blogspot.com/2019/02/bloem-in-lentekleuren.html",null,1550404069],
["11313424","Cinderella","https://cinderellasdreamcardsblog.blogspot.com/2019/02/super-bedankt-voor-de-goede-zorgen-deel.html",null,1550404706],
["11313426","Helen","https://helenscrafthaven.blogspot.com/2019/02/pile-it-on-challenge-pretty-in-pink_17.html",null,1550405305],
["11313459","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/02/happy-birthday.html",null,1550408547],
["11313505","CreaNancy","https://creanancy.blogspot.com/2019/02/catch-bug-sss-704.html",null,1550415733],
["11313528","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/02/youngest-sons-birthday-card.html",null,1550419697],
["11313531","Marciava Warrell","https://theuniquescrapper.blogspot.com/2019/02/feeling-blue-thinking-of-you-card.html",null,1550420530],
["11313600","NanaConnie","https://mygrammysattic.blogspot.com/2019/02/love-in-flower-basket.html",null,1550434008],
["11313643","Mary Marsh","https://thecharmedlife-maryr917.blogspot.com/2019/02/we-go-together.html",null,1550446297],
["11313660","elizabeth h","http://warmharted.blogspot.com/2019/02/snowed-in.html",null,1550452230],
["11313719","Rosina","http://rosina-scrapcards.blogspot.com/2019/02/doosjes.html",null,1550474209],
["11313733","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/02/sent-with-love.html",null,1550480211],
["11313748","jenimc","https://jenicraftroom.blogspot.com/2019/02/delicious-pie.html",null,1550484246],
["11313749","basslady","https://bassladycreations.blogspot.com/2019/02/stylishes-set-our-help-is-in-name-of.html?m=0",null,1550484406],
["11313750","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/02/100-jaar.html",null,1550484619],
["11313773","Birgit","https://cardsrfun.blogspot.com/2019/02/vintage-christmas-card.html",null,1550492159],
["11313795","Lilian B","http://lillyb46.blogspot.com/2019/02/such-busy-weekend.html",null,1550497182],
["11313833","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/02/een-kerstkaart-gemaakt-in-de-vorm-van.html",null,0],
["11313865","sallysbitz2","https://sallysbitz2.blogspot.com/2019/02/engagement-card.html",null,1550505925],
["11313868","monique","http://moniqueschattefor.blogspot.com/2019/02/ladybug-birthday_18.html",null,1550506388],
["11313886","Laine","https://dreamlaine.blogspot.com/2019/02/rainbow-daisy-elf.html",null,1550508105],
["11313908","Teresa","http://redobsessioncards.blogspot.com/2019/02/all-things-grow-with-love.html?m=1",null,1550510371],
["11313912","Michelle L","https://laughingducks2012.blogspot.com/2019/02/a-pot-of-tea.html",null,1550510925],
["11313924","Anna","https://nonsolocard.blogspot.com/2019/02/minnie-e-topolino.html",null,1550513078],
["11313929","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2019/02/colour-crazy-challenge_15.html",null,1550516355],
["11314051","laura","https://laurangolo.blogspot.com/2019/02/calla.html",null,1550557980],
["11314054","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/02/blue-iguana-love_19.html",null,1550560163],
["11314058","Maya","https://mayas-hobbyblogg.blogspot.com/2019/02/eskebox.html",null,1550563765],
["11314074","creativEle","https://creativele.blogspot.com/2019/02/spring-is-springing-with-josh-planting.html",null,1550568775],
["11314116","Craftartista","https://craftartista.blogspot.com/2019/02/memories-and-letter.html",null,1550584011],
["11314129","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/02/vintagebaby.html",null,1550585565],
["11314163","jenimc","https://jenicraftroom.blogspot.com/2019/02/fairies-wings.html",null,1550592540],
["11314183","Teresa","http://redobsessioncards.blogspot.com/2019/02/my-little-seal.html",null,1550595376],
["11314211","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/02/anything-goes-at-creations-in-pink.html",null,1550603002],
["11314362","Marja","https://marjaskaarten.blogspot.com/2019/02/blanche-butterfly.html",null,1550653087],
["11314398","pinky","https://pinkysworldsuprojects.blogspot.com/2019/02/share-what-you-love-birthday-card.html",null,1550654862],
["11314417","Plony","https://plonysbloggie.blogspot.com/2019/02/vintageshabby-chic-album.html",null,1550658541],
["11314445","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/02/er-is-er-een-jarig.html",null,1550665639],
["11314476","Julie Reed","https://pumpkinbellycards.blogspot.com/2019/02/pancake-day.html",null,1550670101],
["11314525","Claudia","http://knutselmeisjes.blogspot.com/2019/02/birthday.html",null,1550675113],
["11314546","Tina","https://paperplotterlottas-craftchaos.blogspot.com/2019/02/oddball-february-challenge-reminder_20.html",null,1550679163],
["11314548","Michelle L","https://laughingducks2012.blogspot.com/2019/02/pennys-paper-crafty-no-418-sponsored-by.html",null,1550679540],
["11314555","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/02/ancora-fiori.html",null,1550680547],
["11314571","Valeryanne","https://itsanalienlife.blogspot.com/2019/02/more-apertures.html",null,1550684959],
["11314610","coops","https://coopsclutteredcorner.blogspot.com/2019/02/passion-for-promarkers-colour-it.html",null,1550694394],
["11314627","Renata","https://renatinaustvarjanja.blogspot.com/2019/02/rdece-marjetice.html",null,1550699234],
["11314641","AJ","https://ajcreativeenergy.blogspot.com/2019/02/faith-hope-love.html",null,1550702889],
["11314712","Meighan Wheller","https://meighanwheller.blogspot.com/2019/02/sg-girl-power.html",null,1550726673],
["11314737","decorcraftdesign","https://decorcraftdesign.wordpress.com/2019/02/21/diy-easy-succulent-pot-holder-from-upcycling-tin-can/",null,1550743001],
["11314744","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/02/simply-just-for-you.html",null,1550744883],
["11314753","cheiro urgia","https://cheirourgia.blogspot.com/2019/02/pieces-of-happiness.html",null,1550747705],
["11314790","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/02/een-kaart-gemaakt-met-een-meisje-en.html",null,1550760734],
["11314855","Silke","https://kartenkram.blogspot.com/2019/02/schlicht-und-blumig.html",null,1550781269],
["11314867","Made By Mandy","https://amandacruxton2.blogspot.com/2019/02/happy-valentines-day.html",null,1550783882],
["11314973","Cat Goodwin","https://thetownscat.wixsite.com/thetownscat/single-post/2019/02/18/Time-for-Tea-Design-New-Launch",null,1550826959],
["11315001","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/02/path-of-positivity-love-or-should-that.html",null,1550833090],
["11315013","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/02/kartki-inspiracyjne.html",null,1550836439],
["11315039","Priyadarshini","https://simpleartcraft.wordpress.com/2019/02/21/chabby-chic-card-3",null,1550840150],
["11315042","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/02/valentine-gift-box.html",null,1550840334],
["11315125","Wendy Dierckx","https://butterfly-wendy.blog/2019/02/20/cow-trio/",null,1550853492],
["11315148","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/02/music-in-paris.html",null,1550855123],
["11315256","Kym","https://kyms-crafty-cards.blogspot.com/2019/02/colour-crazy-challenge-blog-friday-22.html",null,1550861244],
["11315265","Kym","http://kyms-crafty-cards.blogspot.com/2019/02/ching-chou-kuiks-digital-stamps_22.html",null,1550862080],
["11315278","Teresa","http://redobsessioncards.blogspot.com/2019/02/king-of-jungle.html?m=1",null,1550863284],
["11315293","Teresa","http://redobsessioncards.blogspot.com/2019/02/candy-cane.html?m=1",null,1550868606],
["11315294","Teresa","http://redobsessioncards.blogspot.com/2019/02/hello-little-butterflies.html?m=1",null,1550868652],
["11315404","Desire Fourie","https://desiref.blogspot.com/2019/02/birthday-time-guest-designing-over-at.html",null,1550917204],
["11315413","Hazel","https://craftyhazelnut.blogspot.com/2019/02/chnc-challenge-426.html",null,1550919726],
["11315416","Carole J","https://cjcrafty.blogspot.com/2019/02/gecko-galz-moonlight-and-silhouettes.html",null,1550919887],
["11315631","Made By Mandy","https://amandacruxton2.blogspot.com/2019/02/cool-dude.html",null,1550948096],
["11315759","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/02/happy-birthday_24.html",null,1550991620],
["11315783","Angela","https://mijnhobbyhonk.blogspot.com/2019/02/hotfoil.html",null,1550997856],
["11315793","Scatty Jan","https://scrappyscatty.blogspot.com/2019/02/hello-friend.html",null,1551002130],
["11315820","shellshearer","https://shellshearer.blogspot.com/2019/02/grown-with-love.html",null,1551007913],
["11315883","Janis Lewis","https://pausedreamenjoy.blogspot.com/2019/02/decorative-square-fun-fold-card.html",null,1551015498],
["11315895","Grietje's Kaartenhoekje2","https://grietje78.blogspot.com/2019/02/happy-birthday.html",null,1551017714],
["11315902","CreaNancy","https://creanancy.blogspot.com/2019/0https://creanancy.blogspot.com/2019/02/catch-bug-fotochallenge.html2/creative-sketchy-girls-33.html",null,0],
["11315903","CreaNancy","https://creanancy.blogspot.com/2019/02/catch-bug-fotochallenge.html",null,1551018771],
["11315910","Judy V","https://jvzcreations.blogspot.com/2019/02/love-grows.html",null,1551019328],
["11315929","Jasmina","https://handmadebyjasmina.blogspot.com/2019/02/skatlica-za-isaka.html",null,1551021992],
["11316038","Diane Ahlers","http://ahlers5.blogspot.com/",null,1551049608],
["11316079","Priyadarshini","https://simpleartcraft.wordpress.com/2019/02/24/altered-mdf-board",null,1551068003],
["11316105","Rosina","http://rosina-scrapcards.blogspot.com/2019/02/verjaardagskaartje.html",null,1551079005],
["11316107","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/02/lets-drive.html",null,1551079165],
["11316111","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/02/unicorn-magic.html",null,1551080497],
["11316127","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/02/een-dochter.html",null,1551087572],
["11316171","monique","https://moniqueschattefor.blogspot.com/2019/02/you-are-mine-sunschine.html",null,1551098187],
["11316173","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2019/02/22/february-2019-challenge-christmas-cards-facebook-group/",null,1551098750],
["11316257","Craftartista: Mia","https://craftartista.blogspot.com/2019/02/aperture-card-and-surprise-gifts-from.html",null,1551109254],
["11316300","Tamie Camp","https://paperinfusionsandmore.blogspot.com/2019/02/i-like-you.html",null,1551117528],
["11316306","Natasa","https://najboljsezelje.blogspot.com/2019/02/deteljica.html",null,1551119002],
["11316322","Glenda Atkins","https://gilbyscorner.blogspot.com/2019/02/crafty-cardmakers-challenge-228-flowers.html",null,1551122015],
["11316427","Gloria Shirr","https://purpleglocreations.blogspot.com/2019/02/birthday-card-using-conie-fong-serenity.html",null,1551143900],
["11316438","Cass","https://casscreatingnow.blogspot.com/2019/02/mixed-media-journal-cover.html",null,1551145195],
["11316462","Junebug Creations","https://junebugcreations.wordpress.com/2019/02/26/paper-pumpkin-pop-up-blog-hop-feb",null,1551160230],
["11316471","Kali","https://bastelgrotte.de/?p=11899",null,1551164069],
["11316483","Maria M","https://marymarins.blogspot.com/2019/02/waiting-for-you-round-mixed-media-canvas.html",null,1551167426],
["11316492","Monika Reeck","https://creativewithmonika.blogspot.com/2019/02/butterflies-birthday-card-with-uniko.html",null,1551172345],
["11316497","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2019/02/passion-for-promarkers-challenge-482.html",null,1551175257],
["11316549","decorcraftdesign","https://decorcraftdesign.wordpress.com/2019/02/26/re-purposing-wooden-spatulas-into-cute-family-hangers/",null,1551182816],
["11316596","Craftartista","https://craftartista.blogspot.com/2019/02/rainy-day-and-coffee.html",null,1551189905],
["11316644","Dreja","https://drejasbastelwelt.blogspot.com/2019/02/halbzeit-sweet-stampers.html",null,1551195274],
["11316708","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/02/preprost-bel-vencek.html",null,1551207313],
["11316730","Silke","https://kartenkram.blogspot.com/2019/02/party-bande.html",null,1551211155],
["11316834","AndreaBastelmaus","https://andreabastelmaus.blogspot.com/2019/02/frosch-und-libelle.html",null,1551242090],
["11316861","Nisha","https://creationspersonalised.blogspot.com/2019/02/digital-love_19.html",null,1551246151],
["11316894","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/02/50-jaar.html",null,1551252976],
["11316916","Linda Mc Enery ","https://lindamscreations.blogspot.com/2019/02/the-paper-shelter-challenge-372.html",null,1551258104],
["11316941","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/02/when-you-accidentally-disobey-sketch.html",null,1551265804],
["11316981","Vivian Foo","https://www.facebook.com/photo.php?fbid=1447237998745317&set=a.753827484753042&type=3&theater",null,1551275162],
["11316985","Vivian Foo","https://www.facebook.com/photo.php?fbid=1446583645477419&set=a.753827484753042&type=3&theater",null,1551275327],
["11316990","Vivian Foo","https://www.facebook.com/photo.php?fbid=1446585655477218&set=a.753827484753042&type=3&theater",null,1551275477],
["11317023","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/02/voor-margo.html",null,1551279219],
["11317042","Fleur","https://fleurapassionforcraft.blogspot.com/2019/02/maisie-mouse.html",null,1551280272],
["11317073","Altered Fairy Tales","http://alteredfairytales.blogspot.com/2019/02/crafty-creations-challenges-paper.html",null,1551286985],
["11317272","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/02/winter_28.html",null,1551341546],
["11317300","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/02/a-wreath-filled-with-deepest-sympathy.html",null,1551351449],
["11317306","Emma R","https://emgoescardmaking.blogspot.com/2019/02/exciting-news.html",null,1551352663],
["11317326","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/02/kerst-week-9.html",null,1551363588],
["11317346","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/02/babykaartje.html9.html",null,0],
["11317348","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/02/babykaartje.html",null,1551365296],
["11317376","Cathymac","https://goldeninkspirations.blogspot.com/2019/02/throwback-thursday-glorious-gable-box.html",null,1551371855],
["11318139","Lisa :D","https://royalpumpkinart.blogspot.com/2019/03/31-days-of-crafting-day-one-no-apologies.html",null,0],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}