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("14May2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRtYXkyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("2 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14May2018");
blenza_linkies("thumb","lozzy","14May2018","834482963",3,
[
// MTRtYXkyMDE4
["11208736","Beatriz","https://beascrapbooking.blogspot.com.es/2018/05/reto-crafty-sentiments-designs-pastel.html",null,1526375353],
["11208745","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/05/sparkles-monthly-challenges-ch104-dt.html",null,1526377485],
["11208758","Kym","https://kyms-crafty-cards.blogspot.co.uk/2018/05/hope-you-feel-better-soon-card.html",null,1526379680],
["11208773","Ċ½eljka","https://creativemomanddaughter.blogspot.hr/2018/05/wedding-exploding-box.html",null,1526383046],
["11208800","Donna R","https://indianainking.blogspot.com/2018/05/quakers-for-you-with-dueling-darlings.html",null,1526387694],
["11208814","le idee di penelope ","https://ideedipenelope.blogspot.it/2018/05/una-nuova-vita.html",null,1526390170],
["11208950","Jacky - Paddington Fan","http://paddingtonfan.blogspot.co.uk/2018/05/can-you-smell-sea.html",null,1526403526],
["11209022","Tracey","http://lalkygirl-my-creative-place.blogspot.co.uk/2018/05/beautiful-you-gift-bag-and-cards.html",null,1526411766],
["11209025","Lilly","http://lillys-craftcorner.blogspot.co.uk/2018/05/technically-awesome.html",null,1526411987],
["11209035","Tracey","http://lalkygirl-my-creative-place.blogspot.co.uk/2018/05/seashells-card-for-in2craft.html",null,1526413351],
["11209036","Renate","https://dotjesparelsenjuweeltjes.blogspot.nl/2018/05/the-sketchy-challenges-reminder.html",null,1526413755],
["11209156","elizabeth h","http://warmharted.blogspot.com/2018/05/the-places-youll-go.html",null,1526437826],
["11209202","Birgit","https://cardsrfun.blogspot.se/2018/05/enjoy-little-thingsguest-designing.html",null,1526449367],
["11209245","Bisse","https://vasemmalkadella.blogspot.fi/2018/05/pojalle-rippijuhlaan.html",null,1526456727],
["11209266","jenimc","http://jenicraftroom.blogspot.co.uk/2018/05/all-dressed-up.html",null,1526460089],
["11209273","pinky","https://pinkysworldsuprojects.blogspot.co.uk/2018/05/barber-shop-gift-card.html",null,1526461610],
["11209285","jenimc","http://jenicraftroom.blogspot.co.uk/2018/05/french-wine.html",null,1526467484],
["11209383","Ellie","http://livelaughstamp.blogspot.com/2018/05/mimis-bike-ride-for-ellibelles-crafty.html",null,1526478026],
["11209552","tinyworks","https://tinyworks81.blogspot.it/2018/05/card-shabby-chic-gdt-choosday.html",null,1526487622],
["11209557","tinyworks","https://tinyworks81.blogspot.it/2018/05/card-happy-birthday-masculine.html",null,1526487826],
["11209688","Jackie T","https://tinyrosecr.blogspot.co.uk/2018/05/you-always-need-thank-you-cards-after.html",null,1526499788],
["11209731","Craftartista","https://craftartista.blogspot.gr/2018/05/flower-and-ladybug.html",null,1526508845],
["11209761","Michelle M","http://chelleshocked2.blogspot.co.uk/2018/05/petal-lu-challenge-may-15th-2018.html",null,1526518299],
["11209808","Lisa Walsh","https://papercraftbusiness.com/pop-up-box-card",null,1526529660],
["11209848","Ans Gilbert","https://dekaartenvanonsmam.blogspot.nl/2018/05/merry-christmas_17.html",null,1526538472],
["11209870","Monica","http://handmadecardswithlove.blogspot.sg/2018/05/grad-card.html",null,1526549297],
["11209897","Desire Fourie","http://desiref.blogspot.co.za/2018/05/the-more-you-praise-digistamps4joy-may.html",null,1526559511],
["11209913","yvonne krijgsman","https://yvonne1965shamina.blogspot.nl/2018/05/een-kaart-gemaakt-met-twee-paar-laarzen.html",null,1526562682],
["11209915","Jennifer Scull","http://justcoffeepleasestampsribbonspaper.blogspot.com/2018/05/faith-can-move-mountains.html",null,1526563048],
["11209917","Mindy Baxter","https://www.mycreativescoop.com/smooth-copic-coloring-vs-textured-copic-coloring-video/",null,1526563538],
["11209949","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/05/flowers-box-card.html",null,1526574636],
["11209958","Wies*","https://wiescreablog.blogspot.nl/2018/05/vogeltje-op-een-bloesemtak.html",null,1526576052],
["11209966","Jen Leeflang","https://jenleeflang.blogspot.co.za/2018/05/anything-goes-with-optional-twist-of.html",null,1526578018],
["11209980","Jean","http://jeancrosby.blogspot.co.uk/2018/05/summer-girl.html",null,1526584142],
["11210000","AJ","https://ajcreativeenergy.blogspot.com/2018/05/kimono-maylee.html",null,1526585533],
["11210023","Tip Top","http://tiptoptoppers.blogspot.co.uk/2018/05/little-miss-muffet-challenge-189.html",null,1526590358],
["11210034","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/05/exploding-box-with-card.html",null,1526593079],
["11210035","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/05/fisherman-birthday-card.html",null,1526593131],
["11210135","Teresa","http://redobsessioncards.blogspot.co.uk/2018/05/football-mad.html",null,1526596811],
["11210175","Teresa","http://redobsessioncards.blogspot.co.uk/2018/05/a-mothers-magic.html",null,1526600622],
["11210214","Uma Didwania","https://craftinlife.blogspot.in/2018/04/bow-card.html?m=1",null,0],
["11210216","Uma Didwania","https://craftinlife.blogspot.in/2018/05/have-beautiful-day.html?m=1",null,1526610797],
["11210269","Wendy Batchen","https://wenscreations.blogspot.co.uk/2018/05/scrappers-delights-may-rak.html",null,1526630245],
["11210278","Cathymac","http://goldeninkspirations.blogspot.com/2018/05/two-for-tuesday-hello-friend.html",null,1526633347],
["11210279","Cathymac","http://goldeninkspirations.blogspot.com/2018/05/give-me-jesus.html",null,1526633479],
["11210290","Carol Lutz","http://clutzycards.blogspot.com.au/2018/05/polkadoodles-challenge-things-beginning.html",null,1526636338],
["11210314","Dorothy S","https://cardsbydorothy.blogspot.com/2018/05/graduation-time-dt-card-for-challenge.html",null,1526642317],
["11210319","Jane","https://mistybluescreations.blogspot.com/2018/05/a-little-shabby-chic-at-digi-choosday.html",null,1526643182],
["11210323","AUNTY SUE","https://auntysuescraftcavern.blogspot.co.uk/2018/05/crafty-catz-challenge-anything-goes.html",null,1526643703],
["11210352","Dreja","https://drejasbastelwelt.blogspot.de/2018/05/lesekafer-und-geburtstag.html",null,1526646681],
["11210385","NanaConnie","http://mygrammysattic.blogspot.com/2018/05/sir-tailor-of-haberdash.html",null,1526651561],
["11210452","elizabeth h","http://warmharted.blogspot.com/2018/05/framed-flower.html",null,1526659060],
["11210460","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/05/ching-chou-kuiks-digital-stamps_18.html",null,1526659267],
["11210716","Mindy Baxter","https://www.mycreativescoop.com/how-to-color-an-octopus-using-copic-markers/",null,1526668447],
["11210745","Vannessa","http://saffiresstamping.blogspot.co.uk/2018/05/little-miss-muffet-stamps-challenge-189.html",null,1526671879],
["11211200","DebiB","http://thatmightlookgoodonacard.blogspot.com/2018/05/fathers-day-card-marathon.html",null,1526685930],
["11211260","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/05/floral-wedding-card.html",null,1526714198],
["11211311","Jane Willis","http://onionsandpaper.blogspot.co.uk/2018/05/sisterhood-of-snarky-stampers-i-is-for.html",null,1526731256],
["11211471","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/05/single-rose.html",null,1526747972],
["11211503","cheiro urgia","https://cheirourgia.blogspot.si/2018/05/green-drops.html",null,1526752570],
["11211524","Bridie","http://bgpaynecrafts.blogspot.co.uk/2018/05/craft-creations-motorbike-decoupage.html",null,1526757645],
["11211534","Wies*","https://wiescreablog.blogspot.co.uk/2018/05/motorrijder.html",null,1526759113],
["11211553","Pam Sebring","http://psebring.blogspot.com/2018/05/classic-birthday.html",null,1526762663],
["11211659","tilly trotter","http://tillyscraftycorner.blogspot.co.uk/2018/05/good-morning_18.html",null,1526798471],
["11211677","Nicolette","http://nicoletteskaarten.blogspot.nl/2018/05/reminder-en-eindelijk-mijn.html",null,1526805574],
["11211686","Hazel","https://craftyhazelnut.blogspot.co.uk/2018/05/chnc-challenge-386.html",null,1526807147],
["11211714","Teresa","http://redobsessioncards.blogspot.co.uk/2018/05/aqua-flowers.html",null,1526814287],
["11211720","Desire Fourie","http://desiref.blogspot.co.za/2018/05/you-are-awesome-color-it-creat-it-show.html",null,1526815190],
["11211845","elizabeth h","http://warmharted.blogspot.com/2018/05/caffeinated.html",null,1526835794],
["11212024","Ans Gilbert","http://dekaartenvanonsmam.blogspot.nl/2018/05/zonnige-groeten.html",null,1526889308],
["11212092","Melanie","https://creative-world-of-melanie.blogspot.de/2018/05/baby-set-3.html",null,1526905946],
["11212157","Sementes de Papel","http://sementesdepapel.blogspot.com.es/2018/05/una-bonita-sirena-y-su-cangrejo.html",null,1526913037],
["11212307","Teresa","http://redobsessioncards.blogspot.co.uk/2018/05/retro-mini.html",null,1526941694],
["11212393","Rosina","http://rosina-scrapcards.blogspot.nl/2018/05/proficiat.html",null,0],
["11212419","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/05/lemon-shortbread-challenge-tuesday-22.html",null,1526980478],
["11212485","Sharon","https://sharonscreativeramblings.blogspot.co.uk/2018/04/challenge-entries.html",null,0],
["11212486","Sharon","https://sharonscreativeramblings.blogspot.co.uk/2018/05/fussy-cutting.html",null,1526993995],
["11212644","Melanie","https://creative-world-of-melanie.blogspot.de/2018/05/night-nurse-nina.html",null,1527016613],
["11212645","Pippa","https://pippapblog.wordpress.com/2018/05/21/choose-your-favourite-colours/",null,1527016727],
["11212689","Angie J","https://angiescraftfusion.blogspot.com.au/2018/05/vls-pearl-and-vidalia.html",null,1527027046],
["11212692","Teresa","http://redobsessioncards.blogspot.co.uk/2018/05/on-my-bicycle.html",null,1527027835],
["11212721","lynsey mccord","https://lynseymccord.blogspot.com.au/2018/05/didi-doodle-jade-sky-hi-everyone-im-bit.html",null,1527038015],
["11212860","le idee di penelope ","https://ideedipenelope.blogspot.it/2018/05/una-box-card-per-il-compleanno-del-mio.html",null,1527066353],
["11212866","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/05/new-atg-challenge-over-at-ttcrd-ikes.html",null,1527067856],
["11212867","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/05/ice-cream-cream-cone-for-summer.html",null,1527067909],
["11212873","Melanie Gee","https://melgeecrafts.com/2018/05/23/crafty-sentiments-designs-inspiration-jasmin-swing/",null,1527069785],
["11212874","Melanie Gee1","https://melgeecrafts.com/2018/05/23/challenge-for-crafting-by-designs-23-05-2018/",null,1527069811],
["11212876","Monica","http://handmadecardswithlove.blogspot.sg/2018/05/and-another-grad-card.html",null,1527070213],
["11212932","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/05/stepper-card.html",null,1527078185],
["11212940","Carla","https://carla-writes.blogspot.com/2018/05/a-day-in-paradise-card.html",null,1527079010],
["11212950","Ursula Uphof","https://ursulauphof.blogspot.co.za/2018/05/the-outlawz-new-colour-challenge.html",null,1527080667],
["11213118","Plony","http://plonysbloggie.blogspot.nl/2018/05/60-jaar-getrouwd.html",null,1527098297],
["11213166","DebiB","https://thatmightlookgoodonacard.blogspot.com/2018/05/tuesday-throwdown-challenge-393-with.html",null,1527106619],
["11213182","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/05/happy-birthday-dearest-friend.html",null,1527109419],
["11213192","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/05/this-is-commissioned-sympathy-card-8-x.html",null,1527112525],
["11213252","Lisa-olsi","https://lisa-olsi.blogspot.se/2018/05/kattkort-i-svartvitt.html",null,1527124665],
["11213259","Pam Sebring","http://psebring.blogspot.com/2018/05/brown-moose.html",null,1527127784],
["11213282","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2018/05/conie-fongs-braids-in-my-hair.html",null,1527141143],
["11213283","Ans Gilbert","http://dekaartenvanonsmam.blogspot.nl/2018/05/christmas-greetings.html",null,1527143163],
["11213334","Chandhini","http://thecreativetwins.blogspot.in/2018/05/birthday-greeting-card.html",null,1527164663],
["11213421","Monika Reeck","https://creativewithmonika.blogspot.de/2018/05/atsm-293-merry-christmas-in-red-black.html",null,1527184113],
["11213444","AJ","https://ajcreativeenergy.blogspot.com/2018/05/my-balloons.html",null,1527190438],
["11213446","Angela","https://inspired4ucrafts.blogspot.co.uk/2018/05/big-eye-big-head-dolls-for-my-besties.html",null,1527190581],
["11213448","Jackie T","https://tinyrosecr.blogspot.co.uk/2018/05/moving-along-with-times-mawtt-black-and.html",null,1527191324],
["11213496","Pam Sebring","http://psebring.blogspot.com/2018/05/woodland-butterflies.html",null,1527211630],
["11213560","Anna","http://nonsolocard.blogspot.it/2018/05/have-wonderful-day.html",null,1527234918],
["11213563","Grietje's Kaartenhoekje","https://grietje78.blogspot.nl/2018/05/luchtballon.html",null,1527236260],
["11213640","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/05/but-first-coffee.html",null,1527250405],
["11213642","basslady","https://bassladycreations.blogspot.de/2018/05/karte-mit-einem-ornament.html?m=0#more",null,1527250866],
["11213831","Altered Fairy Tales","https://alteredfairytales.blogspot.com/2018/05/project-share-sometimes-im-flower.html",null,1527285762],
["11213854","Norma","http://creatingandsharingit.blogspot.com/2018/02/polkadoodles-everything-goes.html",null,1527293656],
["11213860","Craftartista","https://craftartista.blogspot.gr/2018/05/fairyland.html",null,1527296457],
["11213878","Cass","https://casscreatingnow.blogspot.com.au/2018/05/twice-fun.html",null,1527303520],
["11213927","Larissa","https://car-d-elicious.blogspot.nl/2018/05/as-you-like-it-challenge-131-flora-or.html",null,1527320877],
["11213946","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/05/chnc-challenge-387.html",null,1527326294],
["11214097","Varsha from C-Arts ","http://cartsandcrafts.blogspot.in/2018/05/unforgettable-moments-mix-media-beach.html",null,1527346594],
["11214245","Michelle","https://michelledees.blogspot.de/2018/05/elfje-fairy.html",null,1527392908],
["11214281","Julie Gearinger","http://stampingwithjuliegearinger.blogspot.com/2018/05/sorry-i-was-so-prickly.html",null,1527402760],
["11214312","Zora","http://lofquisten.blogspot.se/2018/05/lite-i-repris.html",null,1527409457],
["11214331","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/05/hoera-een-kleindochter.html",null,1527415428],
["11214572","sweetpea","https://sweetpea-janscraftyspot.blogspot.co.uk/2018/05/toucan-fun_25.html",null,1527450813],
["11214583","Ma-Mi","http://rilcekinkljuncek.blogspot.si/2018/05/akvarelno-besedilo.html",null,1527452674],
["11214663","Ans Gilbert","https://dekaartenvanonsmam.blogspot.nl/2018/05/happy-anniversary.html",null,1527490328],
["11214909","fiona walker","https://twinklingstarrystars.blogspot.co.uk/2018/05/gypsy-bride.html",null,1527530279],
["11214943","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/05/you-passed-your-driving-test.html",null,1527537444],
["11214997","Sharon Hudson","http://craftyhugs.blogspot.com/2018/05/magical-fairy-scene.html",null,1527556289],
["11215058","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/05/3x-bedankt.html",null,1527581027],
["11215096","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/05/congratulations-to-you.html",null,1527590007],
["11215098","Lisa","https://ellas-design.blogspot.co.uk/2018/05/passion-for-promarkers-anything-goes.html",null,1527590512],
["11215140","Gina","https://ginascards.blogspot.co.uk/2018/05/polkadoodles-digi-tuesday-challenge.html",null,1527599545],
["11215172","Carla","https://carla-writes.blogspot.com/2018/05/flapper-molli-dex-card.html",null,1527604047],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}