document.write('\n');
document.write('\n');
var blenza_opt_namemax = 80;
var blenza_opt_linkmax = 152;
var bzloc_youfirst = "You're first";
var bzloc_younext = "You're next";
var bzloc_ifparticip = "If you are participating in";
var bzloc_toaddlink = "To add your entry to the list";
var bzloc_enter = "Enter";
var bzloc_next = "Next";
var bzloc_siteusing2a = "fill in the form below and press ";
var bzloc_siteusing2 = bzloc_siteusing2a + bzloc_enter + ".";
var bzloc_thumb2a = " to add your thumbnail.";
var bzloc_thumb2 = bzloc_siteusing2a + bzloc_next + bzloc_thumb2a;
var bzloc_siteusing3 = "click here and fill in the form that pops up";
var bzloc_yourname = "Your name";
var bzloc_yoururl = "Your URL";
var bzloc_comment = "Please leave a comment after linking... Thank you!";
var bzloc_checkname = "Please enter your name.";
var bzloc_namelength = "The length of your name must be less than or equal to";
var bzloc_checkurl = "Please enter your link URL.";
var bzloc_urllength = "The length of your URL must be less than or equal to";
var bzloc_urlprefix = "Link URL must begin with 'http://'";
var bzloc_sharedmeme = "Shared Meme - Click to Subscribe";
var bzloc_clicktodisp = "Click here to display the links for this post";
var bzloc_upgrademult = "You may upgrade to display more than one Linky at a time";
var bzloc_owner = "Blog Owner";
var bzloc_export = "If you wish to export this list to HTML, click here";
var bzloc_disablemsg = "Click here to disable this message";
var bzloc_whatthis = "What is this?";
var bzloc_expiry = "Linky Widget expiration";
var bzloc_winner = "Winning entry";
var bzloc_caching = "Caching system in use... links may take a minute to post";
var bzloc_thumbnext = "Click here to add your thumbnail if the pop-up does not appear.";
var bzloc_cktool = "Click here for Mister Linky's name/URL cookie removal tool.";
var bzloc_nopopwin = "Unable to open the thumbnail popup window. Check your browser settings.";
var bzloc_maint = "Please read about the upcoming system maintenance";
var bzloc_bugcheck = "An internal error has occurred. Please report this at http://www.misterlinky.net/helpdesk/";
var bzloc_dashboard = "Dashboard";
var bzloc_clickdisp = "Click to display the links and settings for this widget";
var bzloc_policy = "Check to accept use/privacy policy (click to read)";
var bzloc_nopolicy = "You must accept the use/privacy policy to use this widget.\n\nClick the link below to read the policy and check the box to accept.\n\nThen press Enter again to add your link to the list.\n\nNOTE: If you like, you can click a button on the policy page\nto save a cookie and remember you've accepted the policy.";
blenza_ifr = null;
var blenza_newwin = 1;
function getIEVersion(){
var agent = navigator.userAgent;
var reg = /MSIE\s?(\d+)(?:\.(\d+))?/i;
var matches = agent.match(reg);
if (matches != null) {
return { major: matches[1], minor: matches[2] };
}
return { major: "-1", minor: "-1" };
}
var ie_version = getIEVersion();
var is_ie10 = ie_version.major == 10;
var is_ie9e = ie_version.major > 0 && ie_version.major <= 9;
if (!blenza_inited) {
var blenza_whoName = null;
var blenza_whoEmail = null;
var blenza_whoURL = null;
var blenza_user = null;
var blenza_xurl = null;
var blenza_showredx = true;
var blenza_color = null;
var blenza_thumbGetter = null;
var blenza_thumbExternal = null;
var blenza_thumbRoot = new Array();
var blenza_thumbApprove = null;
var blenza_border = "#000";
var blenza_gray = "#888";
var blenza_meme_unset = new Array();
var blenza_meme_id = new Array();
var blenza_meme_name = new Array();
var blenza_meme_text = new Array();
var blenza_meme_shared = new Array();
var blenza_nourl = new Array();
var blenza_hideurl = new Array();
var blenza_ord = 0;
var blenza_expiration = null;
var blenza_memelinks = true;
var blenza_winnerName = null;
var blenza_winnerUrl = null;
var blenza_bycol = 1;
var blenza_fliplinks = 0;
var blenza_alphasort = 0;
blenza_dynamic = false;
var metas = document.getElementsByTagName("meta");
for (var i = 0; i < metas.length; i++) {
if (metas[i].name == "blogger-template")
blenza_dynamic = metas[i].content == "dynamic";
}
}
var blenza_ntu = new Array();
function blenza_xhr()
{
if (window.XMLHttpRequest) return new XMLHttpRequest();
else if (window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP");
else return null;
}
function blenza_xml(text)
{
if (text.message != null) text = text.message;
var xml;
if (text.length >= 5 && text.substring(0, 5) == "request-error" + text + "";
return blenza_parse(xml);
}
function blenza_parse(xml)
{
var doc;
if (window.DOMParser) {
var p = new DOMParser();
doc = p.parseFromString(xml,"text/xml");
}
else {
doc = new ActiveXObject("Microsoft.XMLDOM");
doc.async = false;
doc.loadXML(xml);
}
return doc;
}
function blenza_send(url, data, postid, cb)
{
// hack: if it's IE9 or earlier, just do a get and be done with it
if (is_ie9e) {
var img = document.getElementById("status-" + postid);
if (img != null) {
var now = new Date().getTime();
img.src = url + "?" + data + "&iehack=true&ts=" + now;
}
cb(blenza_xml("success"));
return;
}
try {
var method = data ? "POST" : "GET";
var req = blenza_xhr();
req.open(method, url, true);
if ("withCredentials" in req) {
req.withCredentials = true;
}
if (method == "POST")
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");
req.onreadystatechange = function() {
if (req.readyState !== 4) return;
if (req.status != 200) {
cb(blenza_xml("Unexpected request status " + req.status));
}
else if (req.responseXML != null) {
cb(req.responseXML);
}
else {
cb(blenza_xml(req.responseText));
}
};
req.send(data);
}
catch (e) {
msg = e.message;
if (msg == null || msg.length == 0) msg = "Unknown error";
cb(blenza_xml(msg));
}
}
function blenza_getValue(ele, name)
{
if (ele == null) return null;
var elems = ele.getElementsByTagName(name);
if (elems == null) return null;
var one = elems.item(0);
if (one == null || one.firstChild == null) return null;
if (one.firstChild.data != null) return one.firstChild.data;
else return null;
}
function blenza_checkStatus(ele)
{
if (ele == null) {
alert("Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: could not check status");
return false;
}
var sts = blenza_getValue(ele, "status");
if (sts == "success")
return true;
var err = blenza_getValue(ele, "error");
if (sts == "request-error")
msg = "An error occurred while processing the request:\n" + err + "\nPlease try your request again later";
else if (sts == "internal-error")
msg = "Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: " + err;
else if (err == "Duplicate entry")
msg = "That entry has already been added to the list";
else
msg = "Error: " + err;
alert(msg);
return false;
}
function blenza_doInsert(form, xurl, postid, cb)
{
var data = "";
for (i = 0; i < form.elements.length; i++) {
var ele = form.elements[i];
var name = ele.name;
if (name.length < 3 || name.substring(0,3) != "ml_") continue;
if (data.length > 0) data += "&";
data += name.substring(3) + "=";
var val;
if (ele.type == "checkbox") {
if (ele.checked) val = ele.value;
else val = "";
}
else val = ele.value;
data += escape(val);
}
blenza_send(xurl + "/entry_api.php", data, postid, cb);
}
function blenza_switcheroo(off, on)
{
var ele1 = blenza_elem(off);
ele1.style.display = "none";
var ele2 = blenza_elem(on);
ele2.style.display = "block";
}
function blenza_setNextone(pi, name, url)
{
var nx = blenza_elem("nextone-" + pi);
if (nx != null) {
nx.innerHTML = '' + name + '';
}
}
function blenza_reThumb(a, pi)
{
var form = document.getElementById("blenza_" + pi);
if (form == null) {
alert("Cannot locate form, please report internal error to Mister Linky");
return false;
}
form.action = blenza_xurl + "/thumbwin.php";
var name;
if (form.ml_name) name = form.ml_name.value;
else name = form.name.value;
if (! blenza_checkName(name)) return false;
var url;
if (form.ml_url) url = form.ml_url.value;
else url = form.url.value;
if (! blenza_checkUrl(pi, url)) return false;
a.href = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + escape(name) + "&url=" + escape(url);
return true;
}
function blenza_policyCheck(id)
{
var chk = document.getElementById("policy" + id);
if (chk) chk.checked = true;
}
// new and improved!
function blenza_doEnter(form) // false on error
{
if (!form) return;
try {
var name = null;
if (form.ml_name && form.ml_name.value) name = form.ml_name.value;
var url = null;
if (form.ml_url && form.ml_url.value) url = form.ml_url.value;
var pi = form.ml_postid.value;
var xurl = form.ml_xurl.value;
if (! blenza_checkName(name)) return false;
if (pi == null || xurl == null) {
alert(bzloc_bugcheck);
return false;
}
if (!form.policy.checked) {
alert(bzloc_nopolicy);
return false;
}
if (! blenza_checkUrl(pi, url)) return false;
if (form.ml_src.value != "thumb") {
var cb = function(doc) {
if (! blenza_checkStatus(doc)) return;
blenza_setNextone(pi, name, url);
blenza_switcheroo("theform-" + pi, "theform2-" + pi);
}
blenza_doInsert(form, xurl, pi, cb);
}
else {
var popurl = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + name + "&url=" + escape(url);
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin == null) alert(bzloc_nopopwin);
}
}
catch (e) {
alert("Uncaught error: " + e.message + "\n" + e.stack);
}
return false;
}
function blenza_checkName(name)
{
if (name.length == 0) {
alert(bzloc_checkname);
return false;
}
if (name.length > blenza_opt_namemax) {
alert(bzloc_namelength + " " + blenza_opt_namemax);
return false;
}
return true;
}
function bz_starts(str, pre)
{ return (str.substring(0, pre.length) == pre); }
function blenza_checkUrl(pi, url)
{
if (blenza_nourl[pi] > 0) return true;
if (url.length == 0) {
alert(bzloc_checkurl);
return false;
}
if (url.length > blenza_opt_linkmax) {
alert(bzloc_urllength + " " + blenza_opt_linkmax);
return false;
}
if (!bz_starts(url, "http://") && !bz_starts(url, "https://")) {
alert(bzloc_urlprefix);
return false;
}
if (url == "http://www.") {
alert(bzloc_checkurl);
return false;
}
return true;
}
function blenza_elem(id)
{
return document.getElementById(id);
}
function blenza_display(xurl, owner, pi)
{
var popwin = window.open(xurl + "/display.php?owner=" + owner + "&postid=" + pi, "blenza_linkypop", "height=360,width=400,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null) {
return;
}
}
function blenza_getthumb(owner, pi, secret)
{
var popurl = blenza_thumbGetter + "getthumb.php?owner=" + owner + "&postid=" + pi + "&secret=" + secret + "&init=true";
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null)
setTimeout(function(){ blenza_getthumb2(popwin, popurl); }, 3000);
}
function blenza_getthumb2(popwin, popurl)
{
try {
if (popwin == null) return;
if (popwin.innerHeight != null) return;
}
catch (err) {
return;
}
}
function blenza_setwho(n, e, u)
{
blenza_whoName = n;
blenza_whoEmail = e;
blenza_whoURL = u;
}
function blenza_setuser(v)
{
blenza_user = v;
}
function blenza_setredx(v)
{
blenza_showredx = v;
}
function blenza_setxurl(v)
{
blenza_xurl = v;
}
function blenza_setcolor(v)
{
blenza_color = v;
}
function blenza_setthumbs(pi, g, e, r, a)
{
blenza_thumbGetter = g;
blenza_thumbExternal = e;
blenza_thumbRoot[pi] = r;
blenza_thumbApprove = (a > 0);
}
function blenza_setmeme(pi, id, name, text, shared)
{
blenza_meme_unset[pi] = false;
blenza_meme_id[pi] = id;
blenza_meme_name[pi] = name;
blenza_meme_text[pi] = text;
blenza_meme_shared[pi] = shared;
}
function blenza_unsetmeme(pi)
{
blenza_meme_unset[pi] = true;
blenza_meme_id[pi] = null;
blenza_meme_name[pi] = null;
blenza_meme_text[pi] = null;
blenza_meme_shared[pi] = null;
}
function blenza_setYourUrl(pi, nourl, hideurl)
{
blenza_nourl[pi] = nourl;
blenza_hideurl[pi] = hideurl;
}
function blenza_setExpires(str)
{
blenza_expiration = str;
}
function blenza_setMemelinks(v)
{
blenza_memelinks = v;
}
function blenza_setWinner(name, url)
{
blenza_winnerName = name;
blenza_winnerUrl = url;
}
function blenza_setFliplinks(n)
{
blenza_fliplinks = n;
}
function blenza_setAlphasort(n)
{
blenza_alphasort = n;
}
function blenza_setBycol(n)
{
blenza_bycol = n;
}
function blenza_dispExpires()
{
if (blenza_expiration == null) return;
document.write("
" + bzloc_expiry + ": " + blenza_expiration + ".
");
if (blenza_winnerName == null) return;
document.write("' + afterComment + spanCktool);
if (is_ie9e) document.write('
');
if ((src != "easy") && (src != "thumb")) {
document.write("
" + bzloc_caching);
}
document.write('');
blenza_linkies_fini(src, owner, pi, secret, cols, data);
}
function blenza_linkies(src, owner, pi, secret, cols, data)
{
if (pi == "^Preview") data = previewData;
blenza_linkies_wrap1();
blenza_linkies_list(src, owner, pi, secret, cols, data);
if ((src == 'comm') || (src == 'disp')) return;
if (src == 'side')
blenza_linkies_side(src, owner, pi, secret, cols, data, "magic")
else
blenza_linkies_box(src, owner, pi, secret, cols, data, "magic")
blenza_linkies_wrap2();
}
var blenza_inited = true;
try {
blenza_setwho("","","");
blenza_setuser("");
blenza_setxurl("//www.blenza.com:443/linkies");
blenza_setthumbs("14May2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRtYXkyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("9 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14May2019");
blenza_linkies("thumb","lozzy","14May2019","110018156",3,
[
// MTRtYXkyMDE5
["11345596","Cristina","https://rutscht.blogspot.com/2019/05/atcs-de-sirenas.html",null,1557907364],
["11345606","Jackie T","https://tinyrosecr.blogspot.com/2019/05/fortieth-ruby-wedding-anniversary-card.html",null,1557909230],
["11345618","pinky","https://pinkysworldsuprojects.blogspot.com/2019/05/butterfly-gala-tag.html",null,1557912476],
["11345621","Janes Journal","https://jane-janesjournal.blogspot.com/2019/05/back-to-studio.html",null,1557913199],
["11345641","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/05/sparkles-monthly-challenges-ch116-dt.html",null,1557915714],
["11345764","Vivian Foo","https://www.facebook.com/photo.php?fbid=1503618809773902&set=a.753827484753042&type=3&theater",null,1557925987],
["11345781","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/05/mermaid-card.html",null,1557928133],
["11345785","Priyadarshini","https://simpleartcraft.wordpress.com/2019/05/15/card-using-critter-sheet",null,1557928408],
["11345788","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/05/create-scene-card.html",null,1557928811],
["11345810","Simple Art Craft","https://simpleartcraft-tips.blogspot.com/2019/05/inking-on-pattern-paper.html",null,1557931165],
["11345845","Craftartista: Mia","https://craftartista.blogspot.com/2019/05/mom.html",null,1557932698],
["11345921","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2171398966243024/?type=3&theater",null,1557944388],
["11345971","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/05/table-plan.html",null,1557955925],
["11346062","Zora","https://lofquisten.blogspot.com/2019/05/1-ar.html",null,1557988223],
["11346064","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/05/gratitude-is-memory-of-heart.html",null,1557988778],
["11346107","Kym","https://kyms-crafty-cards.blogspot.com/2019/05/thank-you.html",null,1558002698],
["11346133","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/05/chic-black-dress.html",null,1558010173],
["11346147","*Vicki*","https://stampedsmiles.com/2019/05/16/in-stitches-for-cute-card-thursday/",null,1558015975],
["11346179","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/05/una-lollipop-semplice.html",null,1558024354],
["11346225","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/you-bring-sunshine-aud-sentiments-227.html",null,1558031809],
["11346231","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2173195332730054/?type=3&theater",null,1558032548],
["11346268","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/05/pens-to-go-alongside-guest-book.html",null,1558045345],
["11346320","Kym","http://kyms-crafty-cards.blogspot.com/2019/05/ching-chou-kuiks-digital-stamps_17.html",null,1558072737],
["11346362","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/05/une-carte-pleine-de-douceur.html",null,1558085042],
["11346390","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/05/creative-fingers-1705.html",null,1558092808],
["11346394","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/05/embossing-en-stippelworkshop.html",null,1558094492],
["11346417","TRACEYMO","https://mowbraydesigns.blogspot.com/2019/05/sparkles-monthly-challenge.html",null,1558097033],
["11346421","Carla","http://carla-writes.blogspot.com/2019/05/geisha-girl-img-16-doll-card.html",null,1558097553],
["11346430","Daydream Believer","https://daydreambeliever-gina.blogspot.com/2019/05/happy-mail-equals-happy-play.html",null,1558099005],
["11346467","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/05/een-kerstkaart-met-een-hertje-en-een.html",null,1558101221],
["11346480","Janes Journal","http://jane-janesjournal.blogspot.com/2019/05/more-may-cupcakes.html",null,1558102252],
["11346487","Vivian Foo","https://www.facebook.com/photo.php?fbid=1505402312928885&set=a.753827484753042&type=3&theater",null,1558103102],
["11346490","Higgledy Piggledy","http://higgledypiggledycrafts.blogspot.com/2019/05/just-beakause.html",null,1558103773],
["11346502","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/05/in-pink-cat.html",null,1558106088],
["11346520","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/i-feel-so-loved-colour-crazy-challenge.html",null,1558111485],
["11346527","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/happy-mothers-day-bugaboo-free-friday.html",null,1558112934],
["11346530","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/i-miss-your-hugs-crafty-catz-challenge_17.html",null,1558113471],
["11346553","Paperesse","http://www.paperesse.com/2019/05/christmas-card-with-kajans-scrapblogg.html",null,1558116674],
["11346620","Craftartista: Mia","https://craftartista.blogspot.com/2019/05/door-to-sea-80x60-cm.html",null,1558141272],
["11346681","Larissa","https://car-d-elicious.blogspot.com/2019/05/dis-digi-designs-challenge-make-it.html",null,1558168056],
["11346697","Hazel","https://craftyhazelnut.blogspot.com/2019/05/chnc-challenge-438.html",null,1558170916],
["11346720","Claudia","https://knutselmeisjes.blogspot.com/2019/05/christmas-hugs.html",null,1558180027],
["11346743","cheiro urgia","https://cheirourgia.blogspot.com/2019/05/baby-bee.html",null,1558183608],
["11346752","Ellie","https://www.ellibellescorner.com/2019/05/allsorts-challenge-520-and-521-happy.html",null,1558185832],
["11346771","ingunn","https://ingunnsinekort.blogspot.com/2019/05/violindame.html",null,1558188674],
["11346779","nnalorac","https://somethinggonemissing.blogspot.com/2019/05/dis-digi-designs-challenge-make-it.html",null,1558190509],
["11346794","Sabina","https://artbysabina.blogspot.com/2019/05/new-decade.html",null,1558192870],
["11346807","Marie-Celine","https://marieceline.co.uk/mini-3d-birdhouse-part-one",null,1558196199],
["11346817","Ann-Marie S.","https://mylittlepatchofheaven-ams.blogspot.com/2019/05/a-little-bit-of-tropical-polkadoodles.html",null,1558197839],
["11346826","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/catch-bug-bingo-saturday.html",null,1558198408],
["11346890","jenimc","https://jenicraftroom.blogspot.com/2019/05/hydrangeas.htmlyou-teacher.html",null,1558206531],
["11346937","Barbara Bruder","http://artandsoulcreations.blogspot.com/2019/05/you-are-purrrfect.html",null,1558222556],
["11346938","Gloria Shirr","https://purpleglocreations.blogspot.com/2019/05/all-occasion-card-using-ctmh-where.html",null,1558222854],
["11346972","Lisa :D","https://royalpumpkinart.blogspot.com/2019/05/are-you-mickey-or-mario.html",null,1558234955],
["11346996","Clare","https://clarelloyd.blogspot.com/2019/05/heart.html",null,1558246167],
["11347027","Teresa","http://redobsessioncards.blogspot.com/2019/05/a-mothers-love.html?m=1",null,1558253253],
["11347055","monique","https://moniqueschattefor.blogspot.com/2019/05/trouwkaart-blauw.html",null,1558258748],
["11347072","jenimc","https://jenicraftroom.blogspot.com/2019/05/babies-bunting-and-balloon-set.html",null,1558262637],
["11347125","Teresa","http://redobsessioncards.blogspot.com/2019/05/blue-flowers.html?m=1",null,1558271852],
["11347277","elizabeth h.","https://warmharted.blogspot.com/2019/05/have-yummy-day.html",null,1558302623],
["11347347","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/05/gefeliciteerd.html",null,1558333647],
["11347357","Janes Journal","http://jane-janesjournal.blogspot.com/2019/05/all-that-jazz.html",null,1558336703],
["11347363","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/05/gefeliciteerd.html",null,1558337623],
["11347365","Rosina","https://rosina-scrapcards.blogspot.com/2019/05/gefeliciteeerd.html",null,1558337729],
["11347417","Birgit","https://cardsrfun.blogspot.com/2019/05/happy-birthday.html",null,1558347872],
["11347464","Majalena","https://magdaandscraping.blogspot.com/2019/05/68-on-this-special-day-for-girl-or-for.html",null,1558355473],
["11347507","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/05/i-would-walk-500-miles.html",null,1558360941],
["11347530","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/05/per-il-compleanno-di-papa.html",null,1558364896],
["11347554","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/happiest-birthday-wishes-always-fun.html",null,1558371697],
["11347560","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/friends-are-family-cute-n-crafty.html",null,1558372979],
["11347571","Twisted Witch - Lin","http://twisted-witch.blogspot.com/2019/05/ccm-234-birthdays.html",null,1558374499],
["11347612","DebiB","https://thatmightlookgoodonacard.blogspot.com/2019/05/double-trouble-challenge-29-guest_20.html",null,1558380056],
["11347633","AJ","https://ajcreativeenergy.blogspot.com/2019/05/portrait-of-girl.html",null,1558383075],
["11347642","Karthikha","https://loveforkrafts.blogspot.com/2019/05/happy-birthday-quick-card-with.html",null,1558384688],
["11347658","Lola","https://littlecardmaker.blogspot.com/2019/05/sassy-fabulous-lady-in-orange-with.html",null,1558388971],
["11347747","Teresa","http://redobsessioncards.blogspot.com/2019/05/fishing.html?m=1",null,1558431292],
["11347751","Craftartista: Mia","https://craftartista.blogspot.com/2019/05/shine.html",null,1558431875],
["11347759","Teresa","http://redobsessioncards.blogspot.com/2019/05/dreaming.html?m=1",null,1558434945],
["11347800","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/05/path-of-positivity-challenge-midway.html",null,1558447911],
["11347838","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/05/anything-christmas-goes-at-holly-and.html",null,1558457984],
["11347864","CreaNancy","https://creanancy.blogspot.com/2019/05/cheerful-sketches-laatste-reminder-mei.html",null,1558462543],
["11347868","CreaNancy 2","https://creanancy.blogspot.com/2019/05/creative-sketchy-girls-36.html",null,1558463325],
["11347895","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/youre-tie-rrific-bugaboo-stamps-new.html",null,1558469045],
["11348077","Kym","https://kyms-crafty-cards.blogspot.com/2019/05/turtley-awesome-thank-you.html",null,1558511419],
["11348159","Teresa","http://redobsessioncards.blogspot.com/2019/05/celebrate-your-day.html?m=1",null,1558526623],
["11348267","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/you-are-mermazing-crafty-gals-corner-192.html",null,1558544966],
["11348291","Jasmina","https://handmadebyjasmina.blogspot.com/2019/05/gostja-v-craft-alnici-izziv-236.html",null,1558550203],
["11348297","Made By Mandy","https://amandacruxton2.blogspot.com/2019/05/tea-time-thankyou.html",null,1558551828],
["11348348","Gale K","https://galesstampingcorner.blogspot.com/2019/05/heart-of-spring.html",null,1558570866],
["11348351","Majalena","https://magdaandscraping.blogspot.com/2019/05/69-lilac-gold.html",null,1558572037],
["11348355","elizabeth h.","http://warmharted.blogspot.com/2019/05/day-dreaming.html",null,1558574283],
["11348374","Rijacki Ledum","https://rijacki.blogspot.com/2019/05/fae-magic.html",null,1558578449],
["11348423","Cass","https://casscreatingnow.blogspot.com/2019/05/have-hoppy-day.html",null,1558606818],
["11348440","Priyadarshini","https://simpleartcraft.wordpress.com/2019/05/23/simple-flower-card",null,1558612289],
["11348452","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/05/guilt-free-pussycat.html",null,1558615982],
["11348454","Anne Temple","https://annemade-anne.blogspot.com/2019/05/freyas-house-lavinia-world-challenges-1.html",null,1558616857],
["11348472","Lori Kobular","http://loriskreations.blogspot.com/2019/05/lavinia-world-challenge-1.html",null,1558623080],
["11348485","Glenda Atkins","https://gilbyscorner.blogspot.com/2019/05/crafty-cardmakers-challenge-234.html",null,1558625597],
["11348550","Valeryanne","https://itsanalienlife.blogspot.com/2019/05/once-more-into-fold.html",null,1558644584],
["11348556","Creative Smiles","http://creativesmiles2.blogspot.com/2019/05/lavinia-world-challenge-blog-premier.html",null,1558646196],
["11348560","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2185249921524595/?type=3&theater",null,1558647679],
["11348592","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/05/sarah-kays-elodie-in-her-garden-tag-to.html",null,1558665533],
["11348608","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/05/hoera-jarig.html",null,1558674846],
["11348696","Noelene Apap","https://noeleneapap.blogspot.com/2019/05/emma-with-starfish.html",null,1558690487],
["11348710","Kylie","https://addictedtostamps-kylie.blogspot.com/2019/05/brusho-atcs.html",null,1558693476],
["11348745","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/05/een-kaart-gemaakt-met-een-paar-hoge-hak.html",null,1558700405],
["11348752","Judy V","https://jvzcreations.blogspot.com/2019/05/polkadoodles-craft-challenge-week-21.html",null,1558701626],
["11348809","Tip Top","http://tiptoptoppers.blogspot.com/2019/05/daring-card-makers-challenge-victorian.html",null,1558709855],
["11348811","Caz Crafty bits","https://cazcraftybits.blogspot.com/2019/05/masculine-challenge-over-at.html",null,1558710021],
["11348813","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/05/cutie-chinese-girl.html",null,1558710140],
["11348857","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/whats-up-colour-crazy-challenge-20.html",null,1558720471],
["11348868","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/text-me-colour-crazy-challenge-20.html",null,1558721627],
["11348872","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/i-just-hugged-you-in-my-thoughts-crafty.html",null,1558722306],
["11348875","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/happy-fathers-day-bugaboo-free-friday.html",null,1558722956],
["11348877","Made By Mandy","https://amandacruxton2.blogspot.com/2019/05/birthday-elephant.html",null,1558723020],
["11348881","Mary Marsh","https://thecharmedlife-maryr917.blogspot.com/2019/05/a-rose-for-you.html",null,1558724649],
["11348885","Jasmina","https://handmadebyjasmina.blogspot.com/2019/05/masculine-gd-scrapping-4-fun.html",null,1558725630],
["11348986","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/05/gingerbread-squared.html",null,1558767842],
["11349027","Hazel","https://craftyhazelnut.blogspot.com/2019/05/chnc-challenge-439.html",null,1558780702],
["11349075","Dewi","https://sundaymorningcard.blogspot.com/2019/05/lucky.html",null,1558789903],
["11349117","Dreja","https://drejasbastelwelt.blogspot.com/2019/05/bucherwurm.html",null,1558799185],
["11349141","Mary Marsh","https://thecharmedlife-maryr917.blogspot.com/2019/05/princess-birthday.html",null,1558806379],
["11349176","Craftartista: Mia","https://craftartista.blogspot.com/2019/05/camel.html",null,1558815906],
["11349254","Karthikha","http://loveforkrafts.blogspot.com/2019/05/infinite-flipper-card.html",null,1558839604],
["11349278","Michelle","https://michelledees.blogspot.com/2019/05/art-journal-over-year.html",null,1558847293],
["11349338","Craftartista: Mia","https://craftartista.blogspot.com/2019/05/vintage-beauty.html",null,1558863570],
["11349358","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/05/fun-with-fancy-folds-at-crafty-gals.html",null,1558866846],
["11349378","Desire Fourie","https://desiref.blogspot.com/2019/05/birthday-time-guest-designing-over-at.html",null,1558871527],
["11349401","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2019/05/25/may-2019-challenge-christmas-cards-facebook-group/",null,1558873760],
["11349416","marleen","https://marleenvanwetten.blogspot.com/2019/05/trouwkaart.html",null,1558875445],
["11349468","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/05/een-zoon.html",null,1558880402],
["11349493","Chriss","https://chrissandlou.blogspot.com/2019/05/inas-challenge-59.html",null,1558883599],
["11349496","Helen","http://helenscrafthaven.blogspot.com/2019/05/blossom-branch-golden-wedding.html",null,1558883931],
["11349519","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/05/quando-una-card-torna-nuova-vita.html",null,1558888166],
["11349683","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/05/mannenkaart-en.html",null,1558938013],
["11349711","Suzi Mac","http://wwwsuzies.blogspot.com/2019/05/magnolia-licious-dt-rose-from-tilda.html",null,1558951756],
["11349727","Karen Dunbrook","https://snippets-karen.blogspot.com/2019/05/by-light-of-moon.html",null,1558955808],
["11349793","Cicci ","https://ciccividpennan.blogspot.com/2019/05/color-horse.html",null,1558974564],
["11349812","Majda","https://majdinustvarjalninemir.blogspot.com/2019/05/cokoladnica-zahvalnica.html",null,1558979259],
["11349826","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/congrats-always-fun-challenge-112.html",null,1558983423],
["11349840","Silke","https://kartenkram.blogspot.com/2019/05/fishing-expert.html",null,1558985632],
["11349959","Lisa-olsi","https://lisa-olsi.blogspot.com/2019/05/ett-kort-i-blatt.html",null,1559013688],
["11349993","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/05/happy-birthday.html",null,1559030031],
["11349997","creativEle","https://creativele.blogspot.com/2019/05/annabel-sail-with-me-for-summer.html",null,1559031548],
["11349999","Craftartista","https://craftartista.blogspot.com/2019/05/lovely-papercrafts.html",null,1559031866],
["11350058","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/05/boeken-en-een-cadeaubon.htmll",null,1559047557],
["11350069","Deonna B","https://ialwayslovetomakecards.blogspot.com/2019/05/i-gave-this-junk-journal-away-as-door.html",null,1559050236],
["11350106","Repolainen","https://repolainenreissaa.blogspot.com/2019/05/kotirannan-kokot.html",null,1559055678],
["11350170","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/05/feeling-sketchy-danes-je-tvoj-dan.html",null,1559069437],
["11350179","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/plant-world-in-flowers-bugaboo-stamps.html",null,1559069458],
["11350259","Zora","https://lofquisten.blogspot.com/2019/05/vanner-katt-och-mus.html",null,1559083407],
["11350340","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/05/the-polar-xpress-is-here.html",null,1559114849],
["11350407","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/05/lotv-christmas-one.html",null,1559127996],
["11350411","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/05/lotv-day-two-christmas.html",null,1559128452],
["11350552","Larissa","https://car-d-elicious.blogspot.com/2019/05/gerda-steiner-designs-all-i-want-to-do.html",null,1559150338],
["11350606","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/05/birthday-card.html",null,1559165782],
["11350717","Melanie","https://creative-world-of-melanie.blogspot.com/2019/05/faery-vidia.html",null,1559219406],
["11350718","Melanie","https://creative-world-of-melanie.blogspot.com/2019/05/emmas-sweet-friend.html",null,1559219484],
["11350737","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/05/voor-diny.html",null,1559225979],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}