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("27Feb2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MjdmZWIyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("2 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("27Feb2018");
blenza_linkies("thumb","lozzy","27Feb2018","1045125452",3,
[
// MjdmZWIyMDE4
["11175888","Anita","https://anitas-creaties.blogspot.nl/2018/03/nieuwe-challenge-bij-cheerful-sketches.html",null,1519892091],
["11175901","Wendy Batchen","https://wenscreations.blogspot.co.uk/2018/02/inspiration-destination-challenge-145.html",null,1519897222],
["11175903","Carole J","https://cjcrafty.blogspot.co.uk/2018/03/gecko-galz-paris-in-springtime.html",null,1519897495],
["11175905","Desire Fourie","http://desiref.blogspot.co.za/2018/03/thoughts-color-it-create-it-show-it-off.html",null,1519897791],
["11175915","pinky","https://pinky-pinkysworld.blogspot.co.uk/2018/03/mothers-day.html",null,1519899332],
["11175924","Kym","https://kyms-crafty-cards.blogspot.co.uk/2018/03/ching-chou-kuik-digital-stamps-march.html",null,1519901229],
["11175942","Jackie T","https://tinyrosecr.blogspot.co.uk/2018/03/moving-along-with-times-mawtt-challenge.html",null,1519905481],
["11175969","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/03/15-jaar-in-dienst.html",null,1519911426],
["11175971","Cicci with the Pen","http://ciccividpennan.blogspot.se/2018/03/for-magazine-march-april-mo-manning.html",null,1519911774],
["11175975","Zoe Sanderson","https://zoechaos.blogspot.co.uk/2018/03/a-pinch-and-punch-its-1st-of-month.html",null,1519911958],
["11175984","Carla","https://carla-writes.blogspot.com/2018/03/cute-bear-memorydex-card.html",null,1519913124],
["11175987","Carla","https://carla-writes.blogspot.com/2018/03/i-think-i-can-card.html",null,1519913683],
["11175998","CarolG NZ","https://creationsnz.blogspot.co.nz/2018/03/stop-smile-breathe.html",null,1519915889],
["11176043","sparkling pink","https://sparklingpinktitta.blogspot.it/2018/03/tilda-with-heart.html",null,1519927584],
["11176047","Craftartista","https://craftartista.blogspot.gr/2018/03/diving-into-spring.html",null,1519928214],
["11176077","Larissa","https://car-d-elicious.blogspot.nl/2018/03/as-you-like-it-challenge-125-single-or.html",null,1519930225],
["11176092","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/03/cardz-4-galz-challenge-66.html",null,1519932595],
["11176103","Rijacki: Sunflowers","http://rijacki.blogspot.ca/2018/03/sunflowers-SheepskiDesigns.html",null,1519935396],
["11176104","cheiro urgia","https://cheirourgia.blogspot.si/2018/03/spring-flowers.html",null,1519935432],
["11176110","jenimc","http://jenicraftroom.blogspot.co.uk/2018/03/first-day-at-school.html",null,1519936634],
["11176143","Jill Tiffany","https://jiecraftbyjilltiffany.blogspot.co.id/2018/03/be-who-you-are.html",null,1519947439],
["11176177","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/02/happy-birthday-to-you-always-happy.html",null,1519956633],
["11176179","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/03/theres-no-bunny-like-you-creative-with.html",null,1519956754],
["11176181","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/02/today-is-all-about-you-aud-sentiments.html",null,1519956888],
["11176208","elizabeth h","http://warmharted.blogspot.com/2018/03/hatty-birthday.html",null,1519969174],
["11176224","Maryvellart","https://mymaryvell.blogspot.bg/2018/03/masculine-boy.html",null,1519971825],
["11176240","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/03/for-magazine-march-april-dolly-rock.html",null,1519977212],
["11176243","Monique","http://crealoetje.blogspot.nl/2018/03/fly-away.html",null,1519977624],
["11176250","Margreet","https://margreets-scrapcards.blogspot.nl/2018/03/industrial.html",null,1519979610],
["11176268","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/lion-birthday-card.html",null,1519984260],
["11176270","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/rainbow-card.html",null,1519985330],
["11176289","Jannet","https://gillslap.blogspot.co.uk/2018/03/fairy-playing-to-mushrooms.html",null,1519988283],
["11176379","Ginny B","http://homespuncards.blogspot.com/2018/03/dimensional-flower-birthday-card.html",null,1519996779],
["11176448","le idee di penelope ","https://ideedipenelope.blogspot.it/2018/03/swap-mc-guire-inspiration.html",null,1520004091],
["11176453","Jodi - Kaboo Designs","http://kaboodesigns.blogspot.com/2018/03/i-craft-whats-your-superpower.html",null,1520004724],
["11176482","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/03/liz-and-daves-wedding-card-and-box.html",null,1520007854],
["11176533","Jean","http://jeancrosby.blogspot.co.uk/2018/03/flowers.html",null,1520013033],
["11176576","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/03/today-is-your-lucky-day-bugaboo-free.html",null,1520017713],
["11176626","Craftartista","https://craftartista.blogspot.gr/2018/03/so-happy.html",null,1520024794],
["11176658","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/a-mothers-day-card.html",null,1520030567],
["11176768","Shirley Chalmers","https://nannieflash.blogspot.co.uk/2018/03/challenge-214-mothers-day-pink-gem.html",null,1520068476],
["11176778","Tone K.","http://tonesscrapperom.blogspot.no/2018/03/tag-til-herre-tag-to-man.html",null,1520072439],
["11176781","Dreja","http://drejasbastelwelt.blogspot.de/2018/03/teemeerie-und-noncute-schmetterling.html",null,1520073132],
["11176827","Louise","https://louise-passioncreations.blogspot.ca/2018/03/welcome-wagon-paper-nest-dolls-new.html",null,1520079895],
["11176836","Pippa","https://pippapblog.wordpress.com/2018/03/01/musical-greetings/",null,1520080598],
["11176885","Lisa Bird","https://craftycard-designs.co.uk/safe-journey/",null,1520086380],
["11176908","Ellie","http://livelaughstamp.blogspot.com/2018/03/allsorts-457-and-papercrafters-linky.html",null,1520091239],
["11176942","Pippa","https://pippapblog.wordpress.com/2018/03/03/visiting-ikes-world/",null,1520097952],
["11176984","Lou Sims","https://lulucardmaking.blogspot.co.uk/2018/03/pretty-girly-mixed-media-tag-using.html",null,1520105646],
["11176989","Ċ½eljka","https://creativemomanddaughter.blogspot.hr/2018/03/baby-boy-exploding-box.html",null,1520107895],
["11177022","Gale K","http://galesstampingcorner.blogspot.com/2018/03/clover-fairy.html",null,1520116400],
["11177049","Pam Sebring","http://psebring.blogspot.com/2018/03/cute-ducks.html",null,1520122364],
["11177077","Maxine D","http://kiwimeskreations.blogspot.co.nz/2018/03/turtle-y-awesome.html",null,1520131958],
["11177090","Pam Sebring","http://psebring.blogspot.com/2018/03/hbd-birthday-bunny.html",null,1520137026],
["11177109","Janie R.","https://crafterscastle.blogspot.com/2018/03/twisted-easel-card-share-tutorial-with.html",null,1520140782],
["11177123","Jane","https://mistybluescreations.blogspot.com/2018/03/mollys-winter-friends.html",null,1520145522],
["11177133","Desire Fourie","http://desiref.blogspot.co.za/2018/03/step-outside-digistamps4joy-march-2018.html",null,1520147547],
["11177139","Sheryl Hare","https://marchharecards.blogspot.co.uk/2018/03/atg-twist-reuse-upcycle.html",null,1520148793],
["11177145","Lyndas Crafty Hall","http://lyndascraftyhall.blogspot.co.uk/2018/03/just-dance-like-tomorrow-doesnt-exist.html",null,1520149872],
["11177150","Desire Fourie","http://desiref.blogspot.co.za/2018/03/a-good-friend-digistamps4joy-sunday-new.html",null,1520150462],
["11177171","patty","http://pattyskreativseite.blogspot.de/2018/03/inspieriert-von-manuela-versuche-ich.html",null,1520156657],
["11177175","Terry","https://cardscreativity.blogspot.nl/2018/03/we-love-to-create-challenge-6-anything.html",null,1520157329],
["11177187","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com.au/2018/03/anything-goes-for-march-with-us-on-my.html",null,1520160795],
["11177216","Helen","http://helenscrafthaven.blogspot.co.uk/2018/03/pile-it-on-challenge-circles.html",null,1520165166],
["11177230","Ines","https://inka-mojmalyswiat.blogspot.com/2018/02/pamiatka-pierwszej-komunii-swietej.html",null,0],
["11177232","Ines","https://inka-mojmalyswiat.blogspot.com/2018/03/inspiracja-dla-scrap-shopu.html",null,1520167277],
["11177287","Paperesse","http://www.paperesse.com/2018/03/handyman-homme-tout-faire-birthday-card.html",null,1520172872],
["11177303","NanaConnie DT","http://mygrammysattic.blogspot.com/2018/03/kickin-back-fishing-day.html",null,1520173914],
["11177315","Renate","https://renatekaarten.blogspot.nl/2018/03/home-is-where-ocean-is.html",null,1520174951],
["11177320","Renate 2","https://renatekaarten.blogspot.nl/2018/03/a-single-rose-can-be-my-garden-single.html",null,1520175240],
["11177327","Margreet","http://margreets-scrapcards.blogspot.nl/2018/03/bugaboo-birdie.html",null,1520175725],
["11177328","Pippa","https://pippapblog.wordpress.com/2018/03/01/go-for-green-midway-reminder/",null,1520175806],
["11177379","Crealientje","https://isocrealientje.blogspot.nl/2018/03/50-jaar.html",null,1520184348],
["11177383","elizabeth h","http://warmharted.blogspot.com/2018/03/hedgehog-note.html",null,1520184524],
["11177391","Chrissy","https://chrissyscardland.blogspot.co.nz/2018/03/holiday-project.html",null,1520185991],
["11177393","Birgit","https://cardsrfun.blogspot.se/2018/03/its-your-day-today.html",null,1520186088],
["11177421","Glenda Atkins","https://gilbyscorner.blogspot.ca/2018/03/catch-bug-challenge-stella-says-sketch.html ",null,1520189411],
["11177465","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/place.html",null,1520199504],
["11177466","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/gardening-birthday-card.html",null,1520199627],
["11177481","Sharon Hudson","https://craftyhugs.blogspot.co.uk/2018/03/recessed-window-card-with-handmade.html?m=0",null,1520205321],
["11177487","Craftartista","https://craftartista.blogspot.gr/2018/03/a-little-spring-birdie-in-love.html",null,1520207107],
["11177544","elizabeth h","http://warmharted.blogspot.com/2018/03/its-yappy-birthday.html",null,1520226911],
["11177584","Ans Gilbert","https://dekaartenvanonsmam.blogspot.nl/2018/03/congratulations.html",null,1520234375],
["11177592","Nicolette","http://nicoletteskaarten.blogspot.nl/2018/03/happy-birthday.html",null,1520236428],
["11177611","Meighan Wheller","https://meighanwheller.blogspot.com.au/2018/03/bb-march.html",null,1520239278],
["11177618","carol gill","https://crafty-stamper.blogspot.co.uk/2018/03/stamps-and-brushoes.html",null,1520240803],
["11177619","Carole J","https://cjcrafty.blogspot.co.uk/2018/03/vera-lane-studio-bright-ideas.html",null,1520240806],
["11177622","PaperPlotterLotta","http://paperplotterlottas-craftchaos.blogspot.de/2018/03/oddball-alcohol-inks-and-water-for.html",null,1520241024],
["11177638","Sue","https://sue-hickey.blogspot.com/2018/03/anything-goes-with-twist-anything-but.html",null,1520244745],
["11177649","Valerie","http://lescrapdevava.blogspot.ch/2018/03/pile-it-on-140-circles.html",null,1520246947],
["11177669","MARLENE","https://cardsmadebymarlene.blogspot.co.uk/2018/03/vintage-at-dream-valley-challenge.html",null,1520250332],
["11177846","Larissa","https://www.disdigistamps.com/store/p1436/Bunnysuit_Bear_Disguise_B%26W.html",null,1520271803],
["11177932","Laine","https://dreamlaine.blogspot.co.uk/2018/03/easter-basket-project-with-spring-sprite.html",null,1520283774],
["11177956","sweetpea","https://sweetpea-janscraftyspot.blogspot.co.uk/2018/03/bobo.html",null,1520287795],
["11177962","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/rugby-birthday-card.html",null,1520288417],
["11177974","CarolG NZ","https://creationsnz.blogspot.co.nz/2018/03/ffoxy.html",null,1520290272],
["11177995","ValeryAnne","https://itsanalienlife.blogspot.co.uk/2018/03/napier-green-with-numbers.html",null,1520293546],
["11178039","Pam Sebring","http://psebring.blogspot.com/2018/03/water-can-kitty.html",null,1520305460],
["11178045","Lovely Linda","https://lovelylindascraftcentral.blogspot.com.au/2018/03/just-be-you.html",null,1520306667],
["11178107","J. Atterbury Creations","http://jatterburycreations.blogspot.com/2018/02/scripture-series-christ-died-for-us.html",null,1520326145],
["11178108","J. Atterbury Creations","http://jatterburycreations.blogspot.com/2018/03/from-clothing-tags-to-gift-tags-join.html",null,1520326171],
["11178113","Renate 3","https://renatekaarten.blogspot.nl/2018/03/veel-liefs.html",null,1520328066],
["11178125","Beatriz","http://beascrapbooking.blogspot.com.es/2018/03/reto-marzo-colouring-in-scrapland.html",null,1520332788],
["11178145","Beatriz","http://beascrapbooking.blogspot.com.es/2018/03/reto-anything-goes-and-new-release.html",null,1520337832],
["11178271","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/03/march-bugaboo-new-release.html",null,1520355974],
["11178413","Vannessa","https://saffiresstamping.blogspot.co.uk/2018/03/polkadoodles-challenge-celebrations.html",null,1520372089],
["11178446","sparkling pink","https://sparklingpinktitta.blogspot.it/2018/03/craft-galore-encore.html",null,1520378487],
["11178448","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/deer-card.html",null,1520378835],
["11178459","Craftartista","https://craftartista.blogspot.gr/2018/03/be-happy.html",null,1520380067],
["11178556","CreaNancy","https://creanancy.blogspot.com/2018/03/85.html",null,1520405385],
["11178624","Julie P","https://julieprice3.wordpress.com/2018/03/07/let-it-be-spring/",null,1520418333],
["11178642","Kali","http://bastelgrotte.de/?p=10134",null,1520420726],
["11178875","Pippa","https://pippapblog.wordpress.com/2018/03/07/humor-me-wednesday-international-working-womens-day/",null,1520442198],
["11178885","Bernadet ","https://cardsbybernadet.blogspot.nl/2018/03/new-release-bij-all-dressed-up.html",null,1520443476],
["11178911","Grietje\\'s Kaartenhoekje","https://grietje78.blogspot.nl/2018/03/een-kaartje-omdat.html",null,1520446491],
["11178959","Jean","http://jeancrosby.blogspot.co.uk/2018/03/little-seedlings.html",null,1520454338],
["11178988","Donna R","https://indianainking.blogspot.com/2018/03/united-in-love.html",null,1520458545],
["11179049","Gloria Shirr ","https://purpleglocreations.blogspot.com/2018/03/love-card-calendar-using-conie-fong.html",null,1520469557],
["11179060","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/03/happy-birthday-to-you-pause-dream-enjoy.html",null,1520472032],
["11179065","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/03/heard-you-were-flat-on-your-back.html",null,1520472533],
["11179134","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2018/03/create.html",null,1520489142],
["11179183","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/dragon-card.html",null,1520504431],
["11179191","Carole Dixon","http://cardandcake.blogspot.co.uk/2018/03/mothers-day.html",null,1520506226],
["11179214","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/03/kerst-week-10.html",null,1520518159],
["11179256","Denise P.","https://myinkimprint.blogspot.com/2018/03/bleach-stamping.html",null,1520526966],
["11179261","Cath","https://katykrunch.blogspot.co.uk/2018/03/count-your-rainbowsnot-your.html",null,1520527682],
["11179363","CarolG NZ","https://creationsnz.blogspot.co.nz/2018/03/bold.html",null,1520548660],
["11179407","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/03/happy-birthday-catch-bug.html",null,1520563594],
["11179449","Jane Willis","http://onionsandpaper.blogspot.co.uk/2018/03/mail-whale.html",null,1520579150],
["11179453","laura","https://laurangolo.blogspot.it/2018/03/new-baby.html",null,1520579844],
["11179480","NIkki S","http://nicolestalker.blogspot.com.au/2018/03/happy-birthday.html",null,1520588281],
["11179518","Teresa","http://redobsessioncards.blogspot.co.uk/2018/03/puppy-love.html",null,1520596056],
["11179527","Pat K","http://patkscards.blogspot.ca/2018/03/birthday.html",null,1520597213],
["11179537","Dorothy S","https://cardsbydorothy.blogspot.com/2018/03/st-patricks-day-dt-card-for-qkr.html",null,1520598576],
["11179703","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/03/get-better-soon-bugaboo-free-friday.html",null,1520620806],
["11179718","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/03/ching-chou-kuiks-digital-stamps.html",null,1520623324],
["11179723","Ines","https://inka-mojmalyswiat.blogspot.com/2018/03/inspiracja-dla-ctrafty-moly.html",null,1520623715],
["11179738","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/03/colour-crazy-challenge-blog-friday-9.html",null,1520624887],
["11179793","Paper Profusion","https://paperprofusion.blogspot.ie/2018/03/treasure-our-planet.html",null,1520636064],
["11179839","Gloria Shirr ","https://purpleglocreations.blogspot.com/2018/03/thank-you-card-using-ching-chou-kuik.html",null,1520655832],
["11179948","Jacki D","https://cookingupacard.blogspot.co.uk/2018/03/Flowers-4-u-on-Mothers-Day.html",null,1520682432],
["11179984","Craftartista","https://craftartista.blogspot.gr/2018/03/spring-landscape.html",null,1520686159],
["11180253","Cheryl","http://www.cardsandclutter.com/2018/03/doodles-guest-post.html",null,1520725552],
["11180264","Sharon Hudson","https://craftyhugs.blogspot.co.uk/2018/03/mothers-day-project.html?m=1",null,1520727447],
["11180275","Teresa","https://redobsessioncards.blogspot.co.uk/2018/03/snow-white-reindeer.html",null,1520729253],
["11180285","Craftartista","https://craftartista.blogspot.gr/2018/03/painting-inspiration.html",null,1520731749],
["11180378","Sanne","https://scrappesanne.dk/lollipop-kort-til-konfirmanden/",null,1520755261],
["11180390","Sanne","https://scrappesanne.dk/foraarskort-inspireret-paasken/",null,1520759525],
["11180401","Pippa","https://pippapblog.wordpress.com/2018/03/05/shades-of-yellow/",null,1520761560],
["11180411","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/03/happy-birthday-to-me.html",null,1520763547],
["11180557","Helen Liu","http://stampfairy-helen.blogspot.tw/2018/03/true-friends.html",null,1520780266],
["11180656","Claudia","http://knutselmeisjes.blogspot.be/2018/03/hoi-wij-ikke-mijn-mama-joran-en-lisbeth.html",null,1520797275],
["11180670","Lilly","http://lillys-craftcorner.blogspot.co.uk/2018/03/sweet-wishes.html",null,1520799063],
["11180680","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/personalised-new-baby-card.html",null,0],
["11180692","Teresa","https://redobsessioncards.blogspot.co.uk/2018/03/home-tweet-home.html",null,1520805241],
["11180731","Craftartista","https://craftartista.blogspot.gr/2018/03/bad-girl.html",null,1520819179],
["11180744","Marciava","https://theuniquescrapper.blogspot.com/2018/03/birthday-card-fun.html",null,1520825746],
["11180822","Lisa :D","https://royalpumpkinart.blogspot.com/2018/03/31-days-of-crafting-day-one-new-ideas.html",null,1520845714],
["11180827","Lisa :D","https://royalpumpkinart.blogspot.com/2018/03/use-green-new-challenge-with-simply.html",null,1520846821],
["11180829","Lisa :D","https://royalpumpkinart.blogspot.com/2018/03/31-days-of-crafting-day-three-minnie.html",null,1520847247],
["11180844","Donna T","http://lakefrontstampingcreations.blogspot.com/",null,1520851689],
["11180930","Sue T","https://suescraftycorner-sue.blogspot.co.uk/2018/03/mothers-day.html",null,1520862145],
["11181009","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/03/difficult-roads.html",null,1520870812],
["11181125","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/personalised-new-grandson-card.html",null,1520890688],
["11181145","Pippa","https://pippapblog.wordpress.com/2018/03/12/progressing-with-limited-runs/",null,1520895065],
["11181172","Craftartista","https://craftartista.blogspot.gr/2018/03/so-cool.html",null,1520901481],
["11181292","Teresa","https://redobsessioncards.blogspot.co.uk/2018/03/rose-beauty.html",null,1520932200],
["11181381","le idee di penelope ","https://ideedipenelope.blogspot.it/2018/03/un-quadernetto-per-ballerina.html",null,1520948588],
["11181405","Nicolette","http://nicoletteskaarten.blogspot.nl/2018/03/fijne-verjaardag.html",null,1520951748],
["11181443","Anna","http://nonsolocard.blogspot.it/2018/03/easter-time-at-crafty-sentiments.html",null,1520957198],
["11181474","DebiB","http://thatmightlookgoodonacard.blogspot.com/2018/03/tuesday-throwdown-challenge-383-with.html",null,1520961503],
["11181475","Ma-Mi","http://rilcekinkljuncek.blogspot.si/2018/03/pastelno-cvetje.html",null,1520961630],
["11181755","Linda Simpson","http://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2018/03/a-friend-is.html",null,1521010601],
["11181861","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com.au/2018/03/were-making-it-green-at-crafty-gals.html",null,1521028989],
["11181866","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/golden-wedding-anniversary-card.html",null,1521029296],
["11181876","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/bingo-birthday-card.html",null,1521030227],
["11181968","Caroline\\\\\\'s Creaties ","http://caroline-creaties.blogspot.nl/2018/03/babyboy.html",null,1521041278],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}