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("14Mar2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRtYXIyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("2 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Mar2018");
blenza_linkies("thumb","lozzy","14Mar2018","407816874",3,
[
// MTRtYXIyMDE4
["11182292","Cristina","http://rutscht.blogspot.com/2018/03/oh-la-la.html",null,1521103790],
["11182305","Kali","http://bastelgrotte.de/?p=10166",null,1521106183],
["11182308","le idee di penelope ","https://ideedipenelope.blogspot.it/2018/03/una-pensione-una-card.html",null,1521107071],
["11182322","pinky","https://pinky-pinkysworld.blogspot.co.uk/2018/03/scrap-boys-first-card-challenge.html",null,1521109635],
["11182341","Kym","https://kyms-crafty-cards.blogspot.co.uk/2018/03/male-birthday-cards.html",null,1521114193],
["11182346","Diana","https://dianascreation.blogspot.nl/2018/03/flowers.html",null,1521114867],
["11182358","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2018/03/15/digistamps4joy-march-challenge-146-option-being-young/",null,1521116963],
["11182373","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/03/sparkles-monthly-challenges-ch102-dt.html",null,1521119066],
["11182374","ingunn","https://ingunnsinekort.blogspot.no/2018/03/gavekort-fra-vinmonopolet-resirkulert.html",null,1521119086],
["11182387","CarolG NZ","https://creationsnz.blogspot.co.nz/2018/03/mailbox-flowers.html",null,1521121366],
["11182397","tinyworks","https://tinyworks81.blogspot.it/2018/03/tutorial-colorazione-copic-timbro-penny.html",null,1521122603],
["11182398","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/03/kerst-week-11.html",null,1521123060],
["11182449","Anna","http://nonsolocard.blogspot.it/2018/03/tag-fashion.html",null,1521128519],
["11182497","My Other World","http://scrapsdamaryv.blogspot.pt/2018/03/creative-with-stamps-inspiracao-de-marco.html",null,1521136062],
["11182549","tinyworks","http://tinyworks81.blogspot.it/2018/03/card-especially-for-you-dt-storie-di.html",null,1521140757],
["11182553","Claudia","https://knutselmeisjes.blogspot.be/2018/03/een-fijne-felicitatie.html",null,1521141349],
["11182559","Wies*","http://wiescreablog.blogspot.nl/2018/03/oneindig-star-wars-kaart.html",null,1521141984],
["11182620","Vannessa","http://saffiresstamping.blogspot.co.uk/2018/03/whimsy-stamps-challenge-anything-goes.html",null,1521152048],
["11182690","Gloria Shirr","https://purpleglocreations.blogspot.com/2018/03/good-luck-card-using-aurora-wings.html",null,1521162350],
["11182714","Pam Sebring","http://psebring.blogspot.com/2018/03/my-easter.html",null,1521165470],
["11182718","Pam Sebring","http://psebring.blogspot.com/2018/03/green-just-for-you-2.html",null,1521167398],
["11182770","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/03/ching-chou-kuiks-digital-stamps_16.html",null,1521183080],
["11182797","Dreja","http://drejasbastelwelt.blogspot.de/2018/03/geburtstag-und-ostern.html",null,1521190058],
["11182817","carol gill","https://crafty-stamper.blogspot.co.uk/2018/03/mini-milk-cartons.html",null,1521193482],
["11182871","jenimc","http://jenicraftroom.blogspot.co.uk/2018/03/spring.html",null,1521202118],
["11182872","Cards by MI","https://kompis-kort-by-mi.blogspot.se/2018/03/outdoor-fun-over-at-winter-wonderland.html",null,1521202164],
["11182876","Dorothy S","http://cardsbydorothy.blogspot.com/2018/03/qkr-stampede-dt-card-atg-287.html",null,1521202483],
["11182927","Caroline\\'s Creaties 2","http://caroline-creaties.blogspot.nl/2018/03/dagje-strand.html",null,1521207712],
["11182931","Hayley Warren","https://crafty-littleangel.blogspot.co.uk/2018/03/polkadoodles-friday-challenge-easter.html",null,1521207918],
["11182938","Judy V","http://jvzcreations.blogspot.com/2018/03/easter-at-polkadoodles-challenge.html",null,1521208498],
["11182948","cheiro urgia","https://cheirourgia.blogspot.si/2018/03/a-pot-of-summer.html",null,1521209598],
["11182959","Jodi - Kaboo Designs","http://kaboodesigns.blogspot.com/2018/03/a-little-bit-of-art-journaling.html",null,1521210406],
["11182965","Babs","https://littlecraftingplace.blogspot.co.uk/2018/03/get-well-soon.html",null,0],
["11182966","Babs","http://littlecraftingplace.blogspot.co.uk/2018/03/get-well-soon.html?m=0",null,1521211762],
["11183082","Helen H","http://helenscraftyshed.blogspot.co.uk/2018/03/some-bunny-adores-you-and-your-some.html",null,1521224920],
["11183106","Donna R","https://indianainking.blogspot.com/2018/03/birthday-bear.html",null,1521228440],
["11183124","Jean","http://jeancrosby.blogspot.co.uk/2018/03/with-love.html",null,1521232065],
["11183157","Pippa","https://pippapblog.wordpress.com/2018/03/15/bunny-hopping-with-scribbles-designs/",null,1521237102],
["11183186","Cheryl","http://www.cardsandclutter.com/2018/03/sending-sunshine.html",null,1521245838],
["11183203","Pam Sebring","http://psebring.blogspot.com/2018/03/happy-st-pats.html",null,1521253760],
["11183207","Rijacki: Celebrate","https://rijacki.blogspot.com/2018/03/celebrate.html",null,1521255264],
["11183248","Sue Kment","http://suesstampingstuff.blogspot.com/2018/03/penny-black-easter-march.html",null,1521273431],
["11183267","PaperPlotterLotta","http://paperplotterlottas-craftchaos.blogspot.de/2018/03/oddball-new-release-magical-pile-of-cute.html",null,1521277761],
["11183331","Jane Willis","http://onionsandpaper.blogspot.co.uk/2018/03/cute-as-bug.html",null,1521292564],
["11183362","Glenda Atkins","https://gilbyscorner.blogspot.ca/2018/03/catch-bug-saturday-bingo-challenge.html",null,1521296672],
["11183392","Pippa","https://pippapblog.wordpress.com/2018/03/17/bugaboos-bingo-challenge/",null,1521299028],
["11183460","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/golden-wedding-aniiversary.html",null,1521309243],
["11183462","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/another-bingo-birthday-card.html",null,1521309304],
["11183489","Craftartista","https://craftartista.blogspot.gr/2018/03/beautiful-birds.html",null,1521317117],
["11183493","Jan Thompson","http://janlovetocraft.blogspot.co.uk/2018/03/perfect-partners-sparkle-pens-tutorial.html",null,1521317401],
["11183510","Angela","https://inspired4ucrafts.blogspot.co.uk/2018/03/brown-sugar-276.html",null,1521319428],
["11183559","Barbara Bruder","http://artandsoulcreations.blogspot.com/2018/03/for-you.html",null,1521331856],
["11183572","patty","http://pattyskreativseite.blogspot.de/2018/03/geburtstagswichteln-grungelb-sind-die.html",null,1521336120],
["11183574","Margaret M","https://emspaperdaze.blogspot.com.au/2018/03/plain-and-simple-masculine-cards.html",null,1521337021],
["11183589","Lovely Linda","https://lovelylindascraftcentral.blogspot.com.au/2018/03/recycled-thinking-of-you.html",null,1521342750],
["11183664","CreaNancy","http://creanancy.blogspot.behttp://creanancy.blogspot.be/2018/03/hartelijk-gefeliciteerd.html",null,0],
["11183665","CreaNancy","http://creanancy.blogspot.be/2018/03/hartelijk-gefeliciteerd.html",null,1521364365],
["11183669","Shirley Chalmers","https://nannieflash.blogspot.co.uk/2018/03/challenge-215-easter-time-pink-gem.html",null,1521364660],
["11183671","Nicolette","http://nicoletteskaarten.blogspot.nl/2018/03/voor-mijn-moeder.html",null,1521365036],
["11183695","Caroline\\'s Creaties 3","http://caroline-creaties.blogspot.nl/2018/03/voor-mijn-jarige-moeder.html",null,1521370412],
["11183707","Maryann Scrapbooking","https://maryann-scrap.blogspot.fr/2018/03/fleurs-tulle-et-tags-pour-lanniversaire.html",null,1521372176],
["11183713","Craftartista","https://craftartista.blogspot.gr/2018/03/pretty-angel.html",null,1521372418],
["11183757","Valerie","http://lescrapdevava.blogspot.ch/2018/03/pio-140-circles-andor-squares-jesus-my.html",null,1521378217],
["11183758","cheiro urgia","https://cheirourgia.blogspot.si/2018/03/little-things-storage.html",null,1521378280],
["11183785","Jootje","http://jootjesscrapcards.blogspot.com/2018/03/winter-wonderland.html",null,1521381439],
["11183789","Ellie","https://livelaughstamp.blogspot.com/2018/03/penny-black-and-more-midway-reminder.html",null,1521381580],
["11183835","elizabeth h","http://warmharted.blogspot.com/2018/03/if-friends-were-flowers.html",null,1521389760],
["11183847","Irene- Made in Borgo","https://madeinborgo.blogspot.com/2018/03/la-mia-prima-pocket-letter.html",null,1521391380],
["11183858","Julie Reed","https://pumpkinbellycards.blogspot.co.uk/2018/03/sprite-showcase.html",null,1521393091],
["11183940","Craftartista","https://craftartista.blogspot.gr/2018/03/happy-easter.html",null,1521406867],
["11183958","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/03/a-birthday-for-friend.html",null,1521409841],
["11184064","Ans Gilbert","http://dekaartenvanonsmam.blogspot.nl/2018/03/congratulations_19.html",null,1521443426],
["11184066","Birgit","https://cardsrfun.blogspot.se/2018/03/happy-easter_19.html",null,1521443813],
["11184081","Nicolette","http://nicoletteskaarten.blogspot.nl/2018/03/voor-ineke.html",null,1521447604],
["11184107","jenimc","http://jenicraftroom.blogspot.co.uk/2018/03/balloon-birthday.htmlhttp://jenicraftroom.blogspot.co.uk/2018/03/spring.html",null,1521455305],
["11184137","ValeryAnne","https://itsanalienlife.blogspot.co.uk/2018/03/tilly-and-jenny.html",null,1521460809],
["11184210","Dawn S","https://cherrytreestudio.blogspot.co.uk/2018/03/new-challenge-and-gorgeous-new-sprite.html",null,1521468146],
["11184264","Julie Gearinger","http://stampingwithjuliegearinger.blogspot.com/2018/03/odbd-10th-anniversary-celebration.html",null,1521477512],
["11184324","Craftartista","https://craftartista.blogspot.gr/2018/03/troll-birthday-wishes.html",null,1521485589],
["11184325","Cath","https://katykrunch.blogspot.co.uk/2018/03/more-scraps.html",null,1521485741],
["11184365","Lizzie","https://lizziescraftingretreat.blogspot.co.at/2018/03/white-on-purple.html",null,1521491660],
["11184383","Monika Reeck","http://creativewithmonika.blogspot.de/2018/03/billie-and-monikas-challenge-2-get-well.html",null,1521495107],
["11184391","Rachael E","https://allthingspurpleandsparkly.blogspot.co.uk/2018/03/all-dressed-up-party-girls.html",null,1521496126],
["11184417","Sharon Hudson","http://craftyhugs.blogspot.co.uk/2018/03/vintage-birthday-tag.html?m=1",null,1521498683],
["11184531","Monique","http://crealoetje.blogspot.nl/2018/03/21-jaar-geleden.html",null,1521528086],
["11184581","Kym","https://kyms-crafty-cards.blogspot.co.uk/2018/03/very-special-birthday-card.html",null,1521542571],
["11184598","Lisbeth","https://krealis.blogspot.be/2018/03/red-black.html",null,1521547140],
["11184602","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com.au/2018/03/some-special-easter-inspiration-with-us.html",null,1521547457],
["11184605","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com.au/2018/03/its-time-to-come-colouring-in-scrapland.html",null,1521548439],
["11184641","Karen ","http://craftykarenj.blogspot.co.uk/2018/03/babies.html?m=1",null,1521553204],
["11184651","Pippa","https://pippapblog.wordpress.com/2018/03/19/more-shades-of-yellow/",null,1521555009],
["11184691","J. Atterbury Creations","http://jatterburycreations.blogspot.com/2018/03/scripture-series-lord-on-high-one-layer.html",null,1521559676],
["11184741","Teresa","http://redobsessioncards.blogspot.co.uk/2018/03/kitten-play.html",null,1521565779],
["11184745","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/03/through-craft-room-door-challenges.html?m=0",null,1521566677],
["11184758","Teresa","http://redobsessioncards.blogspot.co.uk/2018/03/evening-peeps-that-was-one-tough-shift.html",null,1521570826],
["11184826","Tip Top","http://tiptoptoppers.blogspot.co.uk/2018/03/lol.html",null,1521582077],
["11184843","Teresa","http://redobsessioncards.blogspot.co.uk/2018/03/spring-greens.html",null,1521586101],
["11184904","Rijacki: Easter Chick","https://rijacki.blogspot.com/2018/03/easter-chick.html",null,1521598187],
["11184912","Angie J","https://angiescraftfusion.blogspot.com.au/2018/03/serenity.html",null,1521600008],
["11184953","Julie Gearinger","http://stampingwithjuliegearinger.blogspot.com/2018/03/sc689-thanks-be-unto-god.html",null,1521612726],
["11185047","Julie P","https://julieprice3.wordpress.com/2018/03/21/charmy-bunny/",null,1521625589],
["11185054","Beatriz","http://beascrapbooking.blogspot.com.es/2018/03/reto-crafty-sentiments-designs-shapped.html",null,1521627296],
["11185060","Plony","http://plonysbloggie.blogspot.nl/2018/03/185-midweek-magnolias.html",null,1521628348],
["11185091","Linda Mc Enery","https://lindamscreations.blogspot.com.au/2018/03/pennys-paper-crafty-challenge-372.html",null,1521633875],
["11185108","Pat K","http://patkscards.blogspot.ca/2018/03/santas-helper.html",null,1521635471],
["11185137","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/03/bird-watching-with-art-impressions.html?m=0",null,1521638009],
["11185265","carol gill","https://crafty-stamper.blogspot.co.uk/2018/03/bee-thankful.html",null,1521651727],
["11185351","America","https://cardsbyamerica.blogspot.com/2018/03/2-easter-cards-fun-prize-on-facebook.html",null,1521664632],
["11185352","America","https://cardsbyamerica.blogspot.com/2018/03/odbd-10th-anniversary-release.html",null,1521664692],
["11185360","Ines","https://inka-mojmalyswiat.blogspot.com/2018/03/inspiracja-dla-i-love-digi.html",null,1521667242],
["11185385","Teresa","https://redobsessioncards.blogspot.co.uk/2018/03/a-rocking-birthday.html",null,1521672936],
["11185467","Lisa :D","https://royalpumpkinart.blogspot.com/2018/03/31-days-of-crafting-day-ten-super-mario.html",null,1521691197],
["11185518","Margreet","http://margreets-scrapcards.blogspot.nl/2018/03/pinguin-rudolph.html",null,1521711612],
["11185544","Cicci with the Pen","http://ciccividpennan.blogspot.com/2018/03/owl-turtorial-copic-europa.html",null,1521717717],
["11185546","Cicci with the Pen","http://ciccividpennan.blogspot.com/2018/03/for-new-release-ttcrd-march-april-lets.html",null,1521717804],
["11185549","Pippa","https://pippapblog.wordpress.com/2018/03/22/a-new-challenge-for-a-librarian/",null,1521718514],
["11185554","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/03/dragonfly-time.html?m=0",null,1521721318],
["11185626","Epie","https://cards-by-epie.blogspot.nl/2018/03/week-12-by-52wtc.html",null,1521734002],
["11185630","Dreja","http://drejasbastelwelt.blogspot.de/2018/03/hochzeitskarten.html",null,1521735212],
["11185758","MARLENE","https://cardsmadebymarlene.blogspot.co.uk/2018/03/easterspring-at-craft-challenge.html",null,1521759761],
["11185820","Priya Satish","https://creativemotif.blogspot.in/2018/03/zentangle-card.html",null,1521768430],
["11185851","TracyM 6773 (3)","https://tracyscraftyadventures.blogspot.com.au/2018/03/die-cuts-with-team-lou-at-southern-girls.html",null,1521778199],
["11185852","TracyM 6773 (4)","https://tracyscraftyadventures.blogspot.com.au/2018/03/more-die-cuts-with-team-lou-at-southern.html",null,1521778227],
["11185887","Ina","https://vintagebyina.blogspot.nl/2018/03/bunny-and-teddy.html",null,1521787468],
["11185992","Teresa","https://redobsessioncards.blogspot.co.uk/2018/03/spring-fairy.html",null,1521806083],
["11186085","elizabeth h","http://warmharted.blogspot.com/2018/03/brighter-days.html",null,1521816239],
["11186097","Craftartista","https://craftartista.blogspot.gr/2018/03/beautiful-sarah-kay.html",null,1521818989],
["11186121","Rosina","http://rosina-scrapcards.blogspot.nl/2018/03/verjaardagskaartdoosje.html",null,1521822541],
["11186154","Valeryanne","https://itsanalienlife.blogspot.co.uk/2018/03/naptime.html",null,1521828190],
["11186223","Vannessa","http://saffiresstamping.blogspot.co.uk/2018/03/ching-chou-kuik-inspiration-post-star.html",null,1521840700],
["11186238","Bisse","https://vasemmalkadella.blogspot.fi/2018/03/kevat-keiju.html",null,0],
["11186239","Bisse","https://vasemmalkadella.blogspot.fi/2018/03/aidille.html",null,1521844139],
["11186248","Pippa","https://pippapblog.wordpress.com/2018/03/23/progressive-freebie-at-scrappers-delights/",null,1521846484],
["11186302","Gloria Shirr ","https://purpleglocreations.blogspot.com/2018/03/baby-girl-card-using-conie-fong-little.html",null,1521869566],
["11186330","Grietje\\'s Kaartenhoekje","https://grietje78.blogspot.nl/2018/03/vrolijk-pasen.html",null,1521883090],
["11186333","Grietje\\'s Kaartenhoekje 2","https://grietje78.blogspot.nl/2018/03/hap-bee-birthday.html",null,1521883333],
["11186366","PaperPlotterLotta","http://paperplotterlottas-craftchaos.blogspot.de/2018/03/oddball-blog-challenge-reminder.html",null,1521890699],
["11186489","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/03/57-jaar-getrouwd.html",null,1521907199],
["11186548","sweetpea","https://sweetpea-janscraftyspot.blogspot.co.uk/2018/03/llama-drama.html",null,1521912558],
["11186644","Pippa","https://pippapblog.wordpress.com/2018/03/22/gerda-steiner-progressive-challenge/",null,1521933963],
["11186670","Julie P","https://julieprice3.wordpress.com/2018/03/25/sweet-easter-bunny/",null,1521947602],
["11186756","Craftartista","https://craftartista.blogspot.gr/2018/03/lion.html",null,1521973163],
["11186760","Nicolette","http://nicoletteskaarten.blogspot.nl/2018/03/voor-mijn-ouders.html",null,1521974317],
["11186781","Bernadet","https://cardsbybernadet.blogspot.nl/2018/03/micha-word-3-jaar.html ",null,1521976296],
["11186791","Teresa","http://redobsessioncards.blogspot.co.uk/2018/03/the-sexiest-present.html",null,1521977378],
["11186870","Darlene Pavlick","http://darscraftycreations.blogspot.com/2018/03/hugs-and-smiles.html",null,1521985129],
["11186940","Monika Reeck","http://creativewithmonika.blogspot.de/2018/03/sunday-stamps-175-shoe-card-with-pastel.html",null,1521993786],
["11186978","Sue Kment","http://suesstampingstuff.blogspot.com/2018/03/fishing-bait.html",null,1522000271],
["11186980","DebiB","http://thatmightlookgoodonacard.blogspot.com/2018/03/heartful-stamping-challenge.html",null,1522000501],
["11187057","Craftartista","https://craftartista.blogspot.gr/2018/03/hi-young-man.html",null,1522022848],
["11187081","Carla","https://cjmaker.blogspot.ca/2018/03/fishtastic.html",null,1522029044],
["11187111","Cathy P.","https://corysnana1.blogspot.com/2018/03/national-craft-month-fun-some-white.html",null,1522041588],
["11187123","Ans Gilbert","http://dekaartenvanonsmam.blogspot.nl/2018/03/happy-birthday.html",null,1522044696],
["11187125","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2018/03/buttons-and-bows.html",null,1522044732],
["11187244","Caroline\\\\\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/03/heel-veel-succes.html",null,1522072819],
["11187298","CarolG NZ","https://creationsnz.blogspot.co.nz/2018/03/micey-birthday.html",null,1522078959],
["11187363","Maria Giselle B.","https://ienjoywhatido.blogspot.com/2018/03/digital-image-shaker-card-foiled.html",null,1522088673],
["11187387","Melanie","http://creative-world-of-melanie.blogspot.de/2018/03/baby-ellys-birthday.html",null,1522092447],
["11187394","Melanie","http://creative-world-of-melanie.blogspot.de/2018/03/easter-bag-happy-easter.html",null,1522092989],
["11187427","Pippa","https://pippapblog.wordpress.com/2018/03/26/ikes-art-first-progressive-challenge/",null,1522098617],
["11187446","Olivia","http://ormcraftynights.blogspot.com/2018/03/sending-you-love.html",null,1522101694],
["11187450","Ann-Marie S.","https://mylittlepatchofheaven-ams.blogspot.co.uk/2018/03/sigh-shoes.html",null,1522102507],
["11187513","Dawn Frost","http://stamp-n-play.blogspot.ca/2018/03/bugaboo-copic-marker-love.html",null,1522117847],
["11187570","Tracey","http://lalkygirl-my-creative-place.blogspot.co.uk/2018/03/live-life-in-colour.html",null,1522140205],
["11187574","Zora","https://lofquisten.blogspot.se/2018/03/skjortor-pa-rad.html",null,1522141592],
["11187580","Tip Top","http://tiptoptoppers.blogspot.co.uk/2018/03/daring-card-makers-back-to-basics.html",null,1522142678],
["11187590","Jacki D","https://cookingupacard.blogspot.co.uk/2018/03/baby-fairy-flidais.html",null,1522144577],
["11187603","AUNTY SUE","https://auntysuescraftcavern.blogspot.co.uk/2018/03/passion-for-promarkers-gorgeous-gingham.html",null,1522147290],
["11187616","Lovely Linda","https://lovelylindascraftcentral.blogspot.com.au/2018/03/a-little-birdie-told-me.html",null,1522150323],
["11187678","Pippa","https://pippapblog.wordpress.com/2018/03/27/new-release-at-bugaboo-4/",null,1522160769],
["11187683","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/03/cardz-4-guyz-ch-191.html",null,1522162074],
["11187690","Rijacki: Daisy Love","https://rijacki.blogspot.com/2018/03/daisy-love-box-TTCRD.html",null,1522163180],
["11187728","Larissa","https://car-d-elicious.blogspot.nl/2018/03/fairytale-challenge-easter-baskets.html",null,1522170745],
["11187776","DebiB","http://thatmightlookgoodonacard.blogspot.com/2018/03/tuesday-throwdown-challenge-385-with.html",null,1522182763],
["11187798","Donna Mundinger","http://donnamundinger-popsicletoes.blogspot.com/2018/03/egg-decorating-with-bloobel.html",null,1522185343],
["11187917","elizabeth h","http://warmharted.blogspot.com/2018/03/hummingbird-haven.html",null,1522213618],
["11187962","Julie P","https://julieprice3.wordpress.com/2018/03/28/divine-angel-tilda-2/",null,1522221142],
["11187970","Tip Top","http://tiptoptoppers.blogspot.co.uk/2018/03/pink-rose.html",null,1522221649],
["11187987","shellshearer","http://shellshearer.blogspot.co.uk/2018/03/lovebird-x.html",null,1522224570],
["11187991","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/03/voor-margreet.html",null,1522225236],
["11188076","TracyM 6773 (5)","https://tracyscraftyadventures.blogspot.com.au/2018/03/roses-and-butterflies-and-warm-hugs-too.html",null,1522241026],
["11188094","Donna Mundinger","http://donnamundinger-popsicletoes.blogspot.com/2018/03/its-wine-time.html",null,1522242555],
["11188098","Donna T","http://lakefrontstampingcreations.blogspot.com/",null,1522243597],
["11188321","cheiro urgia","https://cheirourgia.blogspot.si/2018/03/simple-wristband.html",null,1522272232],
["11188352","Sharon Hudson","https://craftyhugs.blogspot.co.uk/2018/03/flower-faeries-shadow-box-frame.html?m=0",null,1522280712],
["11188419","Julie Gearinger","http://stampingwithjuliegearinger.blogspot.com/2018/03/pretty-kitty-thank-you.html",null,1522296623],
["11188491","Craftartista","https://craftartista.blogspot.gr/2018/03/happy-easter-2.html#comment-form",null,1522319981],
["11188503","Kraftyscot","http://kraftyscot.blogspot.co.uk/2018/03/mothers-day.html",null,1522323583],
["11188506","Kraftyscot","http://kraftyscot.blogspot.co.uk/2018/03/birthday-wishes.html",null,1522323734],
["11188508","Monika Reeck","https://creativewithmonika.blogspot.de/2018/03/atsm-285-birthday-card-in-blue-and-white.html",null,1522324618],
["11188515","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/03/who-wants-drop-of-chamomile-tea.html",null,1522326719],
["11188553","Ma-Mi","http://rilcekinkljuncek.blogspot.si/2018/03/digistamps-4-joy-deklica-z-zajckom.html",null,1522337059],
["11188579","Jackie T","https://tinyrosecr.blogspot.co.uk/2018/03/moving-along-with-times-mawtt-theme-is.html",null,1522341184],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}