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("31Mar2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzFtYXIyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("11 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("31Mar2019");
blenza_linkies("thumb","lozzy","31Mar2019","376191489",3,
[
// MzFtYXIyMDE5
["11328602","monique","https://moniqueschattefor.blogspot.com/2019/03/hartelijk-gefeliciteerd-draakje.html",null,1554102987],
["11328633","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/04/thinking-of-you.html",null,1554109307],
["11328635","Jolanda","https://jolandasblogs.blogspot.com/2019/04/sterrenbeeld.html",null,1554109391],
["11328637","Jackie T","https://tinyrosecr.blogspot.com/2019/04/crafts-galore-encore-april-challenge-62.html",null,1554109599],
["11328652","Jasmina","https://handmadebyjasmina.blogspot.com/2019/04/fb-papirckarice-35-izziv-steampunk.html",null,1554113811],
["11328667","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/04/challenge-28-bei-do-all-kreatives-mein.html",null,1554116405],
["11328668","Hazel","https://craftyhazelnut.blogspot.com/2019/04/craftyhazelnuts-patterned-paper-april.html",null,1554116575],
["11328718","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/04/we-zijn-weer-met-een-nieuwe-wedstrijd.html",null,1554124479],
["11328726","Carla","https://carla-writes.blogspot.com/2019/04/rory-april-showers-may-flowers-card.html",null,1554125060],
["11328770","My Other World","https://scrapsdamaryv.blogspot.com/2019/04/creative-with-stamps-37.html",null,1554131005],
["11328838","Hannapanna","https://hannapannabloggar.blogspot.com/2019/04/challenge-16-simply-magnolia.html",null,1554142485],
["11328845","Maryann Scrapbooking","https://maryann-scrap.blogspot.com/2019/04/scrapling-card-pour-lanniversaire-dune.html",null,1554144232],
["11328855","Hermien","https://handmadebyhermien.blogspot.com/2019/04/kwaakkwaak.html",null,1554147289],
["11328866","Donna R","https://indianainking.blogspot.com/2019/04/no-foolin-its-christmas.html",null,1554148433],
["11328878","Carole J","https://cjcrafty.blogspot.com/2019/04/gecko-galz-nouveau-garden.html",null,1554150904],
["11328881","Kym","https://kyms-crafty-cards.blogspot.com/2019/04/ching-chou-kuik-digital-stamps-april.html",null,1554151816],
["11329027","pinky","https://pinkysworldsuprojects.blogspot.com/2019/04/geared-up-garage-gift-box.html",null,1554196771],
["11329031","TRACEYMO","https://mowbraydesigns.blogspot.com/2019/04/classic-design-team-birthday-challenge.html",null,1554198278],
["11329034","Birgit","https://cardsrfun.blogspot.com/2019/04/happy-easter.html",null,1554198721],
["11329050","Craftartista: Mia","https://craftartista.blogspot.com/2019/04/spring-beauty.html",null,1554202614],
["11329062","Kali","https://bastelgrotte.de/?p=12020",null,1554206026],
["11329069","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/04/kaartje-voor-ela.html",null,1554206920],
["11329080","Deonna B","http://ialwayslovetomakecards.blogspot.com/2019/04/gods-covenant-with-with-earth-genesis.html",null,1554209835],
["11329098","NanaConnie","http://mygrammysattic.blogspot.com/2019/04/something-wonderful-easter.html",null,1554212680],
["11329104","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/04/nuovo-challenge-del-mese-su-simply.html",null,1554214061],
["11329114","Emma R","https://emgoescardmaking.blogspot.com/2019/04/tiddly-inks-showcase-challenge.html",null,1554214560],
["11329128","Silke","https://kartenkram.blogspot.com/2019/04/wildly-happy.html",null,1554218014],
["11329176","Plony","https://plonysbloggie.blogspot.com/2019/04/yeahhobbytijd.html",null,1554230429],
["11329200","Barbara Bruder","https://artandsoulcreations.blogspot.com/2019/04/karate-requires-patience.html",null,1554233827],
["11329217","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/04/just-for-you.html",null,1554235964],
["11329224","Karthikha","https://loveforkrafts.blogspot.com/2019/04/get-well-soon.html",null,1554237208],
["11329251","Carla","https://carla-writes.blogspot.com/2019/04/grandmas-story-starter-book-3.html",null,1554242973],
["11329368","Suze","https://craftysuze.blogspot.com/2019/04/happy.html",null,1554277205],
["11329435","Teresa","http://redobsessioncards.blogspot.com/2019/04/yellow-balloons.html?m=1",null,1554285562],
["11329459","Suzi Mac","https://wwwsuzies.blogspot.com/2019/04/magnolia-licious-dt-sweet-lobby-tilda.html",null,1554290838],
["11329545","Teresa","http://redobsessioncards.blogspot.com/2019/04/springtime-breeze.html?m=1",null,1554300772],
["11329558","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/04/get-well-bear.html",null,1554302244],
["11329587","jenimc","https://jenicraftroom.blogspot.com/2019/04/underwater-birthday.html",null,1554306343],
["11329629","Andrea Norris","https://sheepskidesigns.blogspot.com/2019/04/old-truck.html",null,1554317215],
["11329637","Wies","https://wiescreablog.blogspot.com/2019/04/mannenjongenskaart.html",null,1554317993],
["11329704","ValeryAnne","https://itsanalienlife.blogspot.com/2019/04/gate-fold.html",null,1554338788],
["11329753","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/04/the-good-olde-days.html",null,1554357301],
["11329755","monique","https://moniqueschattefor.blogspot.com/2019/04/just-dance-with-me.html",null,1554357528],
["11329761","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/04/merry-christmas.html",null,1554360106],
["11329762","Jootje","https://jootjesscrapcards.blogspot.com/2019/04/veertjesfeathers.html",null,1554360226],
["11329773","Katrine","https://katrinehspapirverden.blogspot.com/2019/04/ny-utfordring-hos-scrap-from-your-heart.html",null,1554365100],
["11329802","*Vicki*","https://stampedsmiles.com/2019/04/04/its-the-april-anything-goes-for-cute-card-thursday/",null,1554376882],
["11329807","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2019/04/easter-selection.html",null,1554378775],
["11329872","Dawn S","https://cherrytreestudio.blogspot.com/2019/04/feeling-blue.html",null,1554388829],
["11329887","decorcraftdesign","http://decorcraftdesign.com/2019/04/04/how-to-make-bunny-ears-headband-from-tissue-roll/",null,1554395946],
["11329892","AJ","https://ajcreativeenergy.blogspot.com/2019/04/easter-blessings.html",null,1554399288],
["11329907","marleen","https://marleenvanwetten.blogspot.com/2019/03/steampunk-doll-2.html",null,1554404904],
["11329987","Sarah N","https://papertreedotblog.wordpress.com/2019/04/05/easter-chickie/",null,1554426627],
["11330004","Marciava","https://theuniquescrapper.blogspot.com/2019/04/spring-card-for-friend.html",null,1554433087],
["11330057","Debbie","https://debbie-thedolphins.blogspot.com/2019/04/smile-its-springtime.html",null,1554454893],
["11330159","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/04/living-to-beat-of-your-own-drum.html",null,1554472953],
["11330313","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2019/04/calla-lily.html",null,1554492368],
["11330338","cheiro urgia","https://cheirourgia.blogspot.com/2019/04/from-old-make-new.html",null,1554495574],
["11330345","Željka","https://creativemomanddaughter.blogspot.com/2019/04/pamper-day-new-polkadoodles-release.html",null,1554496819],
["11330347","Željka","https://creativemomanddaughter.blogspot.com/2019/04/big-cheer-new-polkadoodles-collection.html",null,1554497324],
["11330353","Željka","https://creativemomanddaughter.blogspot.com/2019/04/love-you-to-moon-stars-new-polkadoodles.html",null,1554497649],
["11330359","elizabeth h","http://warmharted.blogspot.com/2019/04/floral-wreath.html",null,1554498435],
["11330389","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2019/04/chibis-new-release-april-scrappers.html",null,1554504541],
["11330489","Larissa","https://car-d-elicious.blogspot.com/2019/04/dis-digi-designs-challenge-add-some.html",null,1554540298],
["11330518","Tina","https://paperplotterlottas-craftchaos.blogspot.com/2019/04/oddball-ccc47-see-spots-bones.html",null,1554544552],
["11330726","Claudia","http://knutselmeisjes.blogspot.com/2019/04/ho-ho-ho.html",null,1554561660],
["11330757","le idee di penelope","https://ideedipenelope.blogspot.com/2019/04/per-il-compleanno-di-mirco.html",null,1554563252],
["11330790","Gale K","https://galesstampingcorner.blogspot.com/2019/04/hoppy-easter.html",null,1554569260],
["11330822","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/04/thinking-of-you-double-dutch-fold-card.html",null,1554575227],
["11330843","Wies (2)","https://wiescreablog.blogspot.com/2019/04/van-harte.html",null,1554580238],
["11331025","Teresa","http://redobsessioncards.blogspot.com/2019/04/the-builders-bum.html?m=1",null,1554628002],
["11331059","Jasmina","https://handmadebyjasmina.blogspot.com/2019/04/skatlice-z-vrtnicami.html",null,1554630508],
["11331066","Teresa","http://redobsessioncards.blogspot.com/2019/04/the-princess-and-unicorn.html?m=1",null,1554631281],
["11331073","Wendy Batchen","https://wenscreations.blogspot.com/2019/04/cute-as-button-progressive-facebook.html",null,1554634215],
["11331079","Helen","https://helenscrafthaven.blogspot.com/2019/04/pile-it-on-challenge-lots-of-layers.html",null,1554635374],
["11331206","Craftartista: Mia","https://craftartista.blogspot.com/2019/04/misty-morning.html",null,1554647531],
["11331241","Made By Mandy","https://amandacruxton2.blogspot.com/2019/04/good-luck-giraffe.html",null,1554653162],
["11331242","elizabeth h","http://warmharted.blogspot.com/2019/04/bunny-time.html",null,1554653321],
["11331326","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/04/springy-one-layer-sketch-card.html",null,1554675826],
["11331382","Gloria Shirr - 2nd","https://purpleglocreations.blogspot.com/2019/04/wedding-card-as-double-dutch-fold-using.html",null,1554696868],
["11331416","debo","https://deboskaartenhoekje.blogspot.com/2019/04/scrappers-delight-new-release.html",null,1554708838],
["11331421","Teresa","http://redobsessioncards.blogspot.com/2019/04/dandelion.html?m=1",null,1554709594],
["11331438","Carole J","https://cjcrafty.blogspot.com/2019/04/vera-lane-studio-peekaboo.html",null,1554716213],
["11331507","decorcraftdesign","http://decorcraftdesign.com/2019/04/07/diy-black-white-monogram-easter-eggs/",null,1554731510],
["11331527","Caroline's Creaties","http://caroline-creaties.blogspot.com/2019/04/hobbyweekend-en-gastdesigner.html",null,1554732598],
["11331556","nnalorac","https://somethinggonemissing.blogspot.com/2019/04/my-wee-man.html",null,1554734863],
["11331606","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/04/tweet.html",null,1554747863],
["11331614","Ine (creaine)","http://creaine-cards.blogspot.com/2019/04/foutjebedankt.html",null,1554750185],
["11331615","Ine (creaine)","http://creaine-cards.blogspot.com/2019/04/kaartje-gemaakt.html",null,1554750218],
["11331617","Renate kaarten","https://renatekaarten.blogspot.com/2019/04/congratulatious.html",null,1554750321],
["11331633","jenimc","https://jenicraftroom.blogspot.com/2019/04/off-to-school.html",null,1554753379],
["11331649","Glenda Atkins","https://gilbyscorner.blogspot.com/2019/04/crafty-cardmakers-challenge-231-easter.html",null,1554756913],
["11331733","Chana Malkah","https://redoralee.blogspot.com/2019/04/613-avenue-create-220-anything-goes.html",null,1554783814],
["11331776","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2019/04/passion-for-promarkers-challenge-488.html",null,1554800205],
["11331798","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/04/congratulations.html",null,1554808741],
["11331825","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/04/gefeliciteerd-met-jullie-nieuwe-woning.html",null,1554812136],
["11331869","ScrappyHorses","https://scrappyhorses.blogspot.com/2019/04/flowers-and-lace.html",null,1554815632],
["11331899","Mindy Baxter","https://www.mycreativescoop.com/create-4-different-cards-from-1-design-mft-new-release/",null,1554819670],
["11331935","Craftartista","https://craftartista.blogspot.com/2019/04/beauty-of-dreams.html",null,1554823435],
["11331937","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/04/une-carte-pastel.html",null,1554823943],
["11331960","Christy Sugiarto","https://christysugiarto.blogspot.com/2019/04/food-mini-cards.html",null,1554828368],
["11332107","CarolG NZ","https://creationsnz.blogspot.com/2019/04/happy-birthday-star.html",null,1554859383],
["11332143","Jerri Jones","https://abushelandahug.blogspot.com/2019/04/chloe-and-escargot.html",null,1554873482],
["11332198","Linda Mc Enery ","https://lindamscreations.blogspot.com/2019/04/the-paper-shelter-challenge-378-add.html",null,1554883449],
["11332225","Sarah Wills","https://mallowscrafts.blogspot.com/2019/04/a-little-bit-wordy.html",null,1554887050],
["11332235","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/04/rog.html",null,1554890057],
["11332237","CreaNancy","https://creanancy.http://creanancy.blogspot.com/2019/04/er-is-er-een-jarig.htmlblogspot.com/2019/03/eat-more-cake.html",null,0],
["11332238","CreaNancy","http://creanancy.blogspot.com/2019/04/er-is-er-een-jarig.html",null,1554891166],
["11332249","Cinderella 2","https://cinderellasdreamcardsblog.blogspot.com/2019/04/kerst-tag-met-strik.html",null,0],
["11332250","Cinderella 1","https://cinderellasdreamcardsblog.blogspot.com/2019/04/kerst-tag-met-strik.html",null,1554893681],
["11332251","Cinderella 2","https://cinderellasdreamcardsblog.blogspot.com/2019/04/birthday-hugs-een-verjaardagsknuffel.html",null,1554893900],
["11332253","Cinderella 3","https://cinderellasdreamcardsblog.blogspot.com/2019/04/bundle-of-joy.html",null,1554894048],
["11332255","Cinderella 4","https://cinderellasdreamcardsblog.blogspot.com/2019/04/cas-paaskaartje-cas-eastercard.html",null,1554894295],
["11332257","Cinderella 5","https://cinderellasdreamcardsblog.blogspot.com/2019/04/cas-paaskaartje-cas-eastercard.html",null,0],
["11332258","Cinderella 5","https://cinderellasdreamcardsblog.blogspot.com/2019/04/kerstmis-is-liefde-in-een-wereld-van.html",null,1554894408],
["11332272","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/04/vera-is-jarig.html",null,1554896409],
["11332300","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/04/easter-is-on-its-way-at-crafty-gals.html",null,1554899540],
["11332359","Monica C.","https://www.sunshinecreativity.com/2019/04/hanglar-wings.html",null,1554905444],
["11332382","Kym","http://kyms-crafty-cards.blogspot.com/2019/04/bonjour-happy-birthday.html",null,1554905958],
["11332408","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/04/anything-goes-at-crafty-creations.html",null,1554907874],
["11332417","Julie T","https://juliescraftyspot.blogspot.com/2019/04/emmy-with-lamb.html",null,1554908813],
["11332471","Bridie Dunderdale","http://bgpaynecrafts.blogspot.com/2019/04/gorjuss-fox-handmade-card-making-project.html",null,1554925347],
["11332482","Lola","https://littlecardmaker.blogspot.com/2019/04/sweet-rory-by-lacy-sunshine.html",null,1554927495],
["11332580","ingunn","https://ingunnsinekort.blogspot.com/2019/04/et-enkelt-og-kjapt-varkort-med.html",null,1554955054],
["11332637","Maxine D .","https://kiwimeskreations.blogspot.com/2019/04/waw-stripes-and-layers.html",null,1554973004],
["11332643","Desire Fourie","https://desiref.blogspot.com/2019/04/life-design-team-project-march-2019.html",null,1554974116],
["11332657","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/04/celebration-time.html",null,1554980322],
["11332678","Kym","https://kyms-crafty-cards.blogspot.com/2019/04/christmas-blessings.html",null,1554984912],
["11332689","jenimc","https://jenicraftroom.blogspot.com/2019/04/daisy-dreams.html",null,1554985440],
["11332755","Magdalena","https://magdaandscraping.blogspot.com/2019/04/61-first-holy-communion.html",null,1554999387],
["11332798","Craftartista: Mia","https://craftartista.blogspot.com/2019/04/green-beauty.html",null,1555012581],
["11332812","Nicky","https://stiggyscrafts.blogspot.com/2019/04/hubbys-birthday.html",null,1555015121],
["11332818","Carole J","https://cjcrafty.blogspot.com/2019/04/gecko-galz-garden-wildlife-twinchies.html",null,1555017420],
["11332869","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/04/royal-birthday.html",null,1555039823],
["11332898","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/04/fijne-verjaardag.html",null,1555050541],
["11332922","Rose Andrew","http://cardsforallreason.blogspot.com/2019/04/heartflet-hugs.html",null,1555057242],
["11333073","corry","https://corryscreart.blogspot.com/2019/03/we-love-to-create-challenge-4anything.html",null,1555081233],
["11333125","Rijacki Ledum","https://rijacki.blogspot.com/2019/04/adventure-begins.html",null,1555086178],
["11333180","Jennifer Greco","https://glitterinmyhair.blogspot.com/2019/04/polkadoodles-digi-choosday-week-14.html",null,1555092232],
["11333184","Zora","https://lofquisten.blogspot.com/2019/04/make-us-smile.html",null,1555092512],
["11333215","Karthikha","https://loveforkrafts.blogspot.com/2019/04/happy-birthday-double-sided-step-card.html",null,1555096594],
["11333259","Wendy Batchen","https://wenscreations.blogspot.com/2019/04/scrappers-delights-special-deals-12th.html",null,1555102117],
["11333264","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2019/04/april-progressive-freebie-scrappers.html",null,1555102434],
["11333276","Hazel","https://craftyhazelnut.blogspot.com/2019/04/chnc-432.html",null,1555103833],
["11333328","GerJanne","https://gerjanneke2.blogspot.com/2019/04/een-sarah-van-40.html",null,1555123691],
["11333341","Judy V","https://jvzcreations.blogspot.com/2019/04/polkadoodles-crafting-challenge-week-15.html",null,1555128350],
["11333349","Cass","https://casscreatingnow.blogspot.com/2019/04/getting-married.html",null,1555129912],
["11333352","Bernadet","https://cardsbybernadet.blogspot.com/2019/04/reminder-cheerful-sketches-april.html",null,1555130832],
["11333355","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/04/fun-fold-card-using-ctmh-zoe-paper-pack.html",null,1555131634],
["11333408","Hazel","https://craftyhazelnut.blogspot.com/2019/04/chnc-challenge-433.html",null,1555144001],
["11333413","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/04/pisana-vas.html",null,1555145264],
["11333642","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/04/gefeliciteerd.html",null,1555175395],
["11333666","Ellie","https://www.ellibellescorner.com/2019/04/allsorts-challenge-515-516-bugs.html",null,1555177640],
["11333687","tina maree","http://tinas-cards.blogspot.com/2019/04/progressive-challenge.html",null,1555180365],
["11333692","Nisha","https://creationspersonalised.blogspot.com/2019/04/symapthy-card.html",null,1555180750],
["11333693","Nisha","https://creationspersonalised.blogspot.com/2019/04/create.html",null,1555180825],
["11333694","Nisha","https://creationspersonalised.blogspot.com/2019/04/butterfly.html",null,1555180956],
["11333750","Suze","https://craftysuze.blogspot.com/2019/04/youre-egg-cellant.html",null,1555196737],
["11333844","Tip Top","http://tiptoptoppers.blogspot.com/2019/04/do-nut-worry.html",null,1555227514],
["11333872","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/04/veel-liefs.html",null,1555235959],
["11333912","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/04/waiting-for-mr-right-birthday-card.html",null,1555243316],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}