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("14Apr2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRhcHIyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("10.5 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Apr2019");
blenza_linkies("thumb","lozzy","14Apr2019","290031271",3,
[
// MTRhcHIyMDE5
["11334320","jenimc","https://jenicraftroom.blogspot.com/2019/04/save-bees.html",null,1555327857],
["11334351","Granne","https://aavamaki.blogspot.com/2019/04/karma-tag.html",null,1555332904],
["11334359","Jackie T","https://tinyrosecr.blogspot.com/2019/04/twisted-easel-easter-card-made-with.html",null,1555334148],
["11334366","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/04/look-whos-turning.html",null,0],
["11334392","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/04/sterrenbeeld-vissen.html",null,1555338426],
["11334399","Vivian Foo","https://www.facebook.com/photo.php?fbid=1479316862204097&set=a.753827484753042&type=3&theater",null,1555338995],
["11334401","Vivian Foo","https://www.facebook.com/photo.php?fbid=1480668328735617&set=a.753827484753042&type=3&theater",null,1555339053],
["11334458","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/04/sparkles-monthly-challenges-ch-115-dt.html",null,1555346501],
["11334465","Beatriz","https://beascrapbooking.blogspot.com/2019/04/reto-crafty-sentiments-designs-only-for.html",null,1555347831],
["11334473","Karthikha","https://loveforkrafts.blogspot.com/2019/04/baby-girl-congratulations.html",null,1555348871],
["11334481","CarolG NZ","https://creationsnz.blogspot.com/2019/04/warm-hello.html",null,1555350699],
["11334565","Cass","https://casscreatingnow.blogspot.com/2019/04/crafters-cafe-217-eastor-andor-florals.html",null,1555368166],
["11334665","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/04/hip-hip-hooray.html",null,1555405112],
["11334707","Birgit","https://cardsrfun.blogspot.com/2019/04/congratulations-on-christening-day.html",null,1555412813],
["11334712","Cristina","https://rutscht.blogspot.com/2019/04/thank-you.html",null,1555413859],
["11334795","Rijacki Ledum","https://rijacki.blogspot.com/2019/04/spring-fae-ttcrd.html",null,1555427805],
["11334953","Heather Hill","https://pin.it/fs7ajegriatq2m",null,1555475614],
["11335054","Claudia","http://knutselmeisjes.blogspot.com/2019/04/pasen.html",null,1555493083],
["11335058","pinky","https://pinkysworldsuprojects.blogspot.com/2019/04/butterfly-gala-and-classic-garage.html",null,1555493613],
["11335060","Amelia B","https://otomys.wordpress.com/2019/04/17/time/",null,1555494062],
["11335079","TRACEYMO","https://mowbraydesigns.blogspot.com/2019/04/sparkles-monthly-challenge.html",null,1555497509],
["11335096","Linda Mc Enery","https://lindamscreations.blogspot.com/2019/04/pennys-paper-crafty-challenge-426.html",null,1555500621],
["11335099","Carla","https://carla-writes.blogspot.com/2019/04/doll-1-my-beastie-steampunk-card.html",null,1555501566],
["11335111","Vannessa","http://saffiresstamping.blogspot.com/2019/04/faery-ink-inspiration-post-featuring.html",null,1555504070],
["11335118","Zowie Dixon","https://craftsfromthefairyden.blogspot.com/2019/04/some-girls-are-born-with-glitter-in.html",null,1555504396],
["11335180","My Other World","https://scrapsdamaryv.blogspot.com/2019/04/pennys-challenges-426.html",null,1555509537],
["11335185","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/04/gefeliciteerd_17.html",null,1555510333],
["11335186","Ellie","https://www.ellibellescorner.com/2019/04/ellibelles-crafty-wednesday-midmonth.html",null,1555510105],
["11335211","*Vicki*","https://stampedsmiles.com/2019/04/17/i-believe-i-can-fly/",null,1555516037],
["11335226","Teresa","http://redobsessioncards.blogspot.com/2019/04/the-book-fairy.html?m=1",null,1555518675],
["11335234","Allisa","http://www.rockymtnpapercrafts.com/2019/04/budding-peony-sympathy-card.html",null,1555519318],
["11335274","AJ","https://ajcreativeenergy.blogspot.com/2019/04/panda-with-fairy-wings.html",null,1555527365],
["11335299","Cards by MI","https://kompis-kort-by-mi.blogspot.com/2019/04/patterned-papers-over-at-passion-for.html",null,1555529094],
["11335320","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/04/en-dit-is-alweer-mijn-derde-kaart-als.html",null,1555534595],
["11335321","Renee Daley","https://stampknowhow.com/2019/04/16/very-vintage-bumblebee-notecard/",null,1555535017],
["11335322","Glittertastic","https://glittertastic.blogspot.com/2019/04/sweet-treats.html",null,1555535426],
["11335405","Rijacki Ledum","https://rijacki.blogspot.com/2019/04/love-story-box.html",null,1555555920],
["11335416","Dawn Frost","http://stamp-n-play.blogspot.com/2019/04/bugaboo-deacon-skull-flower.html",null,1555558374],
["11335440","Rosina","http://rosina-scrapcards.blogspot.com/2019/04/kerstkaart-week-16.html",null,1555566761],
["11335449","jackie cornfield","https://getthejclook.blogspot.com/2019/04/cats-or-dogs-ching-chou-kuik_15.html",null,1555569566],
["11335469","Chrissy","https://chrissyscardland.blogspot.com/2019/04/picture-heavy-mixed-media-art.html",null,1555576340],
["11335472","Maya","https://mayas-hobbyblogg.blogspot.com/2019/04/meow.html",null,1555578938],
["11335508","Emma R","https://emgoescardmaking.blogspot.com/2019/04/flying-high.html",null,1555598055],
["11335514","Jodi - Kaboo Designs","https://kaboodesigns.blogspot.com/2019/04/hippo-birdie-2-ewe.html",null,1555601829],
["11335532","Magdalena","https://magdaandscraping.blogspot.com/2019/04/62-w-wielkanocnym-klimacie.html",null,1555611526],
["11335663","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2019/04/tgif-peeps-and-very-happy-easter-to.html",null,1555660236],
["11335676","jenimc","https://jenicraftroom.blogspot.com/2019/04/thank-you-poppy.html",null,1555664159],
["11335687","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2019/04/viking.html",null,1555667347],
["11335688","Kym","http://kyms-crafty-cards.blogspot.com/2019/04/colour-crazy-challenge-blog-friday-19.html",null,1555667635],
["11335703","Kym","https://kyms-crafty-cards.blogspot.com/2019/04/ching-chou-kuiks-digital-stamps_19.html",null,1555668803],
["11335719","decorcraftdesign","http://decorcraftdesign.com/2019/04/19/how-to-make-faux-ikea-kids-wagon-from-upcycling-cardboard-boxes/",null,1555672961],
["11335725","Jasmina","https://handmadebyjasmina.blogspot.com/2019/04/peter-v-jajcu.html",null,1555673862],
["11335779","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/04/fun-in-snow.html",null,1555685025],
["11335801","elizabeth h","http://warmharted.blogspot.com/2019/04/peaceful-nature.html",null,1555688676],
["11335846","Magdalena","https://magdaandscraping.blogspot.com/2019/04/63-easter-blooming.html",null,1555697182],
["11335851","Teresa","http://redobsessioncards.blogspot.com/2019/04/the-singing-snowman.html?m=1",null,1555698566],
["11335855","Silke ","https://kartenkram.blogspot.com/2019/04/beautiful-blooming.html",null,1555699582],
["11335860","Nicky","https://stiggyscrafts.blogspot.com/2019/04/bright-birthday.html",null,1555700187],
["11335861","Koraliki Beaty","https://koralikibeaty.blogspot.com/2019/04/for-mum-dla-mamy-z-polkadoodles.html",null,1555700317],
["11335876","Teresa","http://redobsessioncards.blogspot.com/2019/04/spring-showers.html?m=1",null,1555703736],
["11335905","cheiro urgia","https://cheirourgia.blogspot.com/2019/04/easter-chicks.html",null,1555712813],
["11336015","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/04/borduurkaart.html",null,1555754192],
["11336033","Sue T","https://suescraftycorner-sue.blogspot.com/2019/04/spring-flowers.html",null,1555756357],
["11336101","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/04/a-little-playtime-just-for-me.html",null,1555763048],
["11336165","Hazel","https://craftyhazelnut.blogspot.com/2019/04/chnc-challenge-434.html",null,1555767539],
["11336239","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/04/prayers-are-with-you.html",null,1555781315],
["11336270","Teresa","http://redobsessioncards.blogspot.com/2019/04/ewe-and-birdie.html?m=1",null,1555794378],
["11336330","Angie's Creations","https://angiescreationsblog.blogspot.com/2019/04/first-project-in-about-month.html#links",null,1555817663],
["11336399","AnnChuangCrafts","https://anncard.blogspot.com/2019/04/blossom.html",null,1555831012],
["11336419","Teresa","http://redobsessioncards.blogspot.com/2019/04/invencibles.html?m=1",null,1555836886],
["11336457","Helen","http://helenscrafthaven.blogspot.com/2019/04/pile-it-on-challenge-lots-of-layers_21.html",null,1555845234],
["11336529","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/04/voor-carla.html",null,0],
["11336628","elizabeth h","http://warmharted.blogspot.com/2019/04/breaking-out.html",null,1555869340],
["11336750","CarolG NZ","https://creationsnz.blogspot.com/2019/04/virgo-woman.html",null,1555907981],
["11336770","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/04/cute-family-friendly-elves-for-easter.html",null,1555915735],
["11337206","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/04/gift-card.html",null,1556009076],
["11337207","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/04/its-elves-again.html",null,1556009124],
["11337233","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/04/una-card-maschile.html",null,1556017173],
["11337234","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/04/des-poissons-et-un-nouveau-defi.html",null,1556017321],
["11337239","Craftartista: Mia","https://craftartista.blogspot.com/2019/04/baby-donkey.html",null,1556017994],
["11337250","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2019/04/passion-for-promarkers-challenge-490.html",null,1556021592],
["11337307","Jodi - Kaboo Designs","https://kaboodesigns.blogspot.com/2019/04/celebrate.html",null,1556026094],
["11337313","Donna","https://lakefrontstampingcreations.blogspot.com/2019/04/happy-days.html",null,1556027517],
["11337324","Lucinda Lucker","https://petallu.blogspot.com/2019/04/may-your-day-be-filled-with-magic.html",null,1556028918],
["11337369","Anna","https://nonsolocard.blogspot.com/2019/04/hello-my-hoppy-friend.html",null,1556041196],
["11337375","Gloria Shirr","https://purpleglocreations.blogspot.com/2019/04/birthday-card-using-ching-chou-kuik.html",null,1556042151],
["11337478","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/04/every-day-is-bonus.html",null,1556075858],
["11337492","Rijacki Ledum","https://rijacki.blogspot.com/2019/04/hero.html",null,1556080466],
["11337534","Bharati Nayudu","https://bharatinayudu.com/2019/04/18/play-journal/",null,1556090695],
["11337535","Bharati Nayudu","http://bharatinayudu.com/2019/04/24/multi-color-multi-layer-heat-embossing/",null,1556090953],
["11337617","Carole J","https://cjcrafty.blogspot.com/2019/04/vera-lane-studio-froggy-went-courtin.html",null,1556108380],
["11337620","myry","https://filsetpapiers.blogspot.com/2019/04/photobox-tutorial.html",null,1556109956],
["11337631","ValeryAnne","https://itsanalienlife.blogspot.com/2019/04/twisted-single-easel.html",null,1556111046],
["11337776","CreaNancy","https://creanancy.blogspot.com/2019/04/kleurenkaartenteam-201904-perzikoranje.html",null,1556129383],
["11337784","Bridie Dunderdale","http://bgpaynecrafts.blogspot.com/2019/04/tiddly-inks-you-and-me-wedding-card.html",null,1556132206],
["11337798","Chriss","https://chrissandlou.blogspot.com/2019/04/mailbox-bouquet-box-card.html",null,1556132964],
["11337833","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/04/en-dit-is-alweer-mijn-laatste-kaart-als.html",null,1556139114],
["11337852","Bisse","https://vasemmalkadella.blogspot.com/2019/04/kukat-ja-perhonen.html",null,1556144360],
["11337893","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2019/04/easter-blessings-mum.html",null,1556157815],
["11337896","Judy V","https://jvzcreations.blogspot.com/2019/04/enjoying-rain.html",null,1556161205],
["11337898","Heather Hill","https://pin.it/ks77ovfoarl33p",null,1556162149],
["11337903","elizabeth h","http://warmharted.blogspot.com/2019/04/the-ivy-lady.html",null,1556165587],
["11337913","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/04/best-wishes.html",null,1556171853],
["11337914","Jerri Jones","https://abushelandahug.blogspot.com/2019/04/chloe-and-escargot.html",null,0],
["11337915","Jerri Jones","https://abushelandahug.blogspot.com/2019/04/soft-and-subtle-watercolor-card.html",null,1556171940],
["11337919","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/04/this-isnt-end-its-new-beginning.html",null,1556173848],
["11337936","Plony","https://plonysbloggie.blogspot.com/2019/04/vintage-easel.html",null,1556178654],
["11337947","nnalorac","https://somethinggonemissing.blogspot.com/2019/04/rock-n-roll-oldtimer.html",null,1556185374],
["11337985","cheiro urgia","https://cheirourgia.blogspot.com/2019/04/zen.html",null,1556199677],
["11338023","Sheryl Hare","https://marchharecards.blogspot.com/2019/04/distress-it.html",null,1556214728],
["11338059","Larissa","https://car-d-elicious.blogspot.com/2019/04/as-you-like-it-challenge-155-ribbons-or.html",null,1556219187],
["11338094","Lou Sims","https://lulucardmaking.blogspot.com/2019/04/a-mini-album-made-using-new-keepsake.html",null,1556231604],
["11338154","Cass","https://casscreatingnow.blogspot.com/2019/04/my-own-kind-of-hat.html",null,1556252726],
["11338168","Nisha","https://creationspersonalised.blogspot.com/2019/04/choose-happy.html",null,1556257369],
["11338170","Nisha","https://creationspersonalised.blogspot.com/2019/04/beautiful-you_19.html",null,1556257667],
["11338192","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/04/voor-rosina.html",null,1556264548],
["11338218","Tracey","https://hotchpotchcreations.blogspot.com/2019/04/paperbabe-challenge-flowergarden.html",null,1556269707],
["11338302","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/04/vandaag-maar-weer-eens-een-kerstkaart.html",null,1556287517],
["11338388","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/04/distress-your-project-at-craft-challenge.html",null,1556295118],
["11338445","cheiro urgia","https://cheirourgia.blogspot.com/2019/04/tropical.html",null,1556301199],
["11338571","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/04/i-made-this-gift-tag-for-wedding-gift.html",null,1556316401],
["11338572","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/04/grandson-21st-birthday-card.html",null,1556316467],
["11338573","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/04/new-baby-card.html",null,1556316520],
["11338574","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/04/personalised-engagement-card.html",null,1556316569],
["11338575","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/04/personalised-new-baby-card.html",null,1556316620],
["11338576","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/04/friend-birthday-card.html",null,1556316666],
["11338577","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/04/personalised-engagement-card_23.html",null,1556316715],
["11338586","Hannapanna","https://hannapannabloggar.blogspot.com/2019/04/week-17-colour-crazy-challenges.html",null,1556318522],
["11338589","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/04/pisana-vas.html",null,1556319339],
["11338590","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2019/04/taurus-anime-vip-bundle-scrappers.html",null,1556319973],
["11338675","Hazel","https://craftyhazelnut.blogspot.com/2019/04/chnc-challenge-435.html",null,1556356337],
["11338680","Nisha","https://creationspersonalised.blogspot.com/2019/04/baby-boy-scrapbook.html",null,1556357419],
["11338992","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/04/hetzelfde-papier-dezelfde-sketch.html#comment-form",null,1556438707],
["11339070","pinkclover","https://pinkclovercards.blogspot.com/2019/04/fabulous-flowers.html",null,1556455346],
["11339074","Melanie","https://creative-world-of-melanie.blogspot.com/2019/04/mermaid-treasure.html",null,1556455705],
["11339080","Melanie","https://creative-world-of-melanie.blogspot.com/2019/04/baked-you-cake.html",null,1556456114],
["11339127","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/04/hetzelfde-papier-dezelfde-sketch.html",null,1556460508],
["11339367","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/04/babykaartjes.html",null,1556520742],
["11339439","Artery Crate","https://arterycrate.blogspot.com/2019/04/mix-media-bookmark.html",null,1556540069],
["11339444","Kali","https://bastelgrotte.de/?p=12097",null,1556541290],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}