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("28Feb2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MjhmZWIyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("12 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("28Feb2019");
blenza_linkies("thumb","lozzy","28Feb2019","1835875706",3,
[
// MjhmZWIyMDE5
["11317570","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/03/explosion-box-per-magnolia-forever.html",null,1551429661],
["11317574","Renate kaarten","https://renatekaarten.blogspot.com/2019/03/everything-grows-better-when-its-loved.html",null,1551430254],
["11317590","pinky","https://pinkysworldsuprojects.blogspot.com/2019/03/geared-up-garage-birthday-card.html",null,1551433230],
["11317600","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/03/verjaardagskaart.html",null,1551435014],
["11317650","CarolG NZ","https://creationsnz.blogspot.com",null,1551440866],
["11317695","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/03/challenge-27-bei-do-all-kreatives-fancy.html",null,1551447832],
["11317701","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/03/interactive-fold-cards.html",null,1551448848],
["11317707","Jasmina","https://handmadebyjasmina.blogspot.com/2019/03/fb-papirckarice-34-izziv-cas.html",null,1551449783],
["11317719","Hannapanna","https://hannapannabloggar.blogspot.com/2019/03/challenge-15-simply-magnolia.html",null,1551451813],
["11317724","Angela","https://mijnhobbyhonk.blogspot.com/2019/03/casper-4-jaar.html",null,1551452401],
["11317803","Gale K","https://galesstampingcorner.blogspot.com/2019/02/irish-butterfly.html",null,1551466194],
["11317813","Kym","http://kyms-crafty-cards.blogspot.com/2019/03/ching-chou-kuik-digital-stamps-march.html",null,1551467236],
["11317835","Jackie T","https://tinyrosecr.blogspot.com/2019/03/crafts-galore-encore-challenge-blog.html",null,1551470691],
["11317845","Judy McKay","https://insearchofmycreativeside.blogspot.com/2019/03/art-journal-page.html",null,1551471957],
["11317873","Vannessa","http://saffiresstamping.blogspot.com/2019/03/scrappers-delights-march-new-release.html",null,1551477447],
["11317894","Carole J","https://cjcrafty.blogspot.com/2019/03/crafts-galore-encore-cloud-angel.html",null,1551481208],
["11317895","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/03/scrappers-delight-chibis-new-release.html",null,1551481330],
["11317917","Donna R","https://indianainking.blogspot.com/2019/03/new-challenge.html",null,1551488559],
["11317992","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2019/02/ching-chou-kuik-challenge.html",null,1551518552],
["11318002","Nick","https://nicksscrapshack.blogspot.com/2019/03/dt-card-for-scribbles-design.html",null,1551521882],
["11318010","Tina","https://paperplotterlottas-craftchaos.blogspot.com/2019/03/oddball-creepy-cute-chronicles-ccc42.html",null,1551524292],
["11318011","Tina","https://paperplotterlottas-craftchaos.blogspot.com/2019/03/odddball-march-19-blog-challenge.html",null,1551524323],
["11318025","Victoria R","http://victorias-crafting-creations.blogspot.com/2019/03/sg-lollipop-girl-card.html?m=1",null,1551526010],
["11318039","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2019/03/saturday-post.html",null,1551527709],
["11318048","Janis Lewis","https://pausedreamenjoy.blogspot.com/2019/03/hello-darling.html",null,1551530935],
["11318054","Hazel","https://craftyhazelnut.blogspot.com/2019/03/chnc-challenge-427.html",null,1551532081],
["11318055","jenimc","https://jenicraftroom.blogspot.com/2019/03/easter-rabbit.html",null,1551532281],
["11318138","Michelle L","https://laughingducks2012.blogspot.com/2019/03/pink-lillies.html",null,1551539123],
["11318187","Silke","https://kartenkram.blogspot.com/2019/03/explosive-mischung.html",null,1551543986],
["11318207","Judy V","https://jvzcreations.blogspot.com/2019/03/polkadoodles-challenge-week-9.html",null,1551546450],
["11318210","Judy V","https://jvzcreations.blogspot.com/2019/03/cute-as-button-challenge.html",null,1551546778],
["11318217","NanaConnie","https://mygrammysattic.blogspot.com/2019/03/easter-egg-surprise.html",null,1551547528],
["11318239","cheiro urgia","https://cheirourgia.blogspot.com/2019/03/spring-in-jar.html",null,1551551075],
["11318279","Irene","https://madeinborgo.blogspot.com/2019/03/art-journaling-page-she-was-herself.html",null,1551563203],
["11318311","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2019/03/crafty-catz-challenge-atg-sponsor-paper.html",null,1551569585],
["11318357","Carla","https://carla-writes.blogspot.com/2019/03/grandmas-new-international-paper-doll.html",null,1551586346],
["11318414","Chandhini ","https://thecreativetwins.blogspot.com/2019/03/celebrate-with-cute-monsters-card.html",null,1551605401],
["11318417","Dreja","https://drejasbastelwelt.blogspot.com/2019/03/rose-und-ostern.html",null,1551605872],
["11318420","Hermien","https://handmadebyhermien.blogspot.com/2019/03/challenge-3-k.html",null,1551606308],
["11318421","terry","https://cardscreativity.blogspot.com/2019/03/we-love-to-create-challenge-3-anything.html",null,1551606387],
["11318429","Rachel Taylor","https://blossomcards.blogspot.com/2019/03/string-art.html#links",null,1551607768],
["11318435","Scatty Jan","https://scrappyscatty.blogspot.com/2019/03/love-2-create.html",null,1551608747],
["11318471","Rosina","http://rosina-scrapcards.blogspot.com/2019/03/liefs.html",null,1551610695],
["11318488","jenimc","https://jenicraftroom.blogspot.com/2019/03/clean-teeth.html",null,1551614550],
["11318495","Helen","https://helenscrafthaven.blogspot.com/2019/03/pile-it-on-challenge-your-favourite.html",null,1551615485],
["11318500","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/03/birthday.html",null,1551616598],
["11318505","traceymo","https://mowbraydesigns.blogspot.com/2019/03/classic-design-team-challenge-blog.html",null,1551617404],
["11318506","Hazel L","https://hazel-hazelshappyhouse.blogspot.com/2019/03/iaas-sequins-or-beads.html",null,1551617443],
["11318512","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/03/gefeliciteerd.html",null,1551618238],
["11318543","Grietje's Kaartenhoekje","https://grietje78.blogspot.com/2019/03/bingo-bij-kaartjes-inspiratie-challenges.html",null,1551622615],
["11318547","Michelle L","https://laughingducks2012.blogspot.com/2019/03/sweet-teddy.html",null,1551622742],
["11318553","Marie Flayer","https://njstampingqueen.blogspot.com/2019/03/try-stampin-on-tuesday-396-cards.html",null,1551624276],
["11318558","Janette D","https://little-boscraftyplace.blogspot.com/2019/03/here-again-hope-your-enjoying-your-day.html",null,1551625210],
["11318602","Dawn S","https://cherrytreestudio.blogspot.com/2019/03/its-all-about-movement.html",null,1551631915],
["11318636","elizabeth h","http://warmharted.blogspot.com/2019/03/purple-unicorn-girl.html",null,1551638031],
["11318653","Made By Mandy","https://amandacruxton2.blogspot.com/2019/03/moms-birthday.html",null,1551641562],
["11318662","Kim Lamos","https://www.pinkzebrapapercreations.com/2019/03/3319.html",null,1551643525],
["11318668","Colinda","https://colindasblog.blogspot.com/2019/03/the-librarian.html",null,1551644294],
["11318673","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2019/03/spring-peony.html",null,1551644946],
["11318705","Bisse","https://vasemmalkadella.blogspot.com/2019/03/tuttipullokortit.html",null,1551657117],
["11318716","elizabeth h","http://warmharted.blogspot.com/2019/03/mail-box-girl.html",null,1551660220],
["11318741","Patty Sue2","https://patty-inkitup.blogspot.com/2019/03/croquet.html",null,1551669473],
["11318778","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/03/happy-birthday.html",null,1551683903],
["11318787","Linda Mc Enery","https://lindamscreations.blogspot.com/2019/03/whoopsi-daisy-march-challenge-anything.htmlter-challenge-372.html",null,0],
["11318788","Linda Mc Enery","https://lindamscreations.blogspot.com/2019/03/whoopsi-daisy-march-challenge-anything.html",null,1551686480],
["11318816","basslady","https://bassladycreations.blogspot.com/2019/03/baby-karte-fur-einen-jungen.html?m=0",null,1551694058],
["11318828","sue","https://sue-hickey.blogspot.com/2019/03/anything-goes-with-circles.html",null,1551697169],
["11318830","decorcraftdesign","https://decorcraftdesign.wordpress.com/2019/03/04/diy-lucky-shamrock-sign-from-wooden-cutting-board/",null,1551697731],
["11318834","Teresa","http://redobsessioncards.blogspot.com/2019/03/graduation.html?m=1",null,1551698989],
["11318881","jenimc","https://jenicraftroom.blogspot.com/2019/03/baby-boy-book.html",null,1551705289],
["11318890","Deonna B","http://ialwayslovetomakecards.blogspot.com/2019/03/altered-tickets-as-embellishments-with.html",null,1551707355],
["11318907","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/03/we-zijn-weer-met-een-nieuwe-wedstrijd.html",null,1551709704],
["11318911","Teresa","http://redobsessioncards.blogspot.com/2019/03/anyone-for-tennis.html?m=1",null,1551710535],
["11318926","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/03/simply-magnolia-di-marzo.html",null,1551712539],
["11318949","Renee Daley","http://www.stampknowhow.com",null,1551714004],
["11318950","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/03/gefeliciteerd-met-je-nieuwe-baan.html",null,1551714016],
["11319012","corry","https://corryscreart.blogspot.com/2019/03/er-is-weer-een-nieuwe-challenge-van-art.html",null,1551721611],
["11319032","Ellie","https://www.ellibellescorner.com/2019/03/cowboy-adventures-and-new-hero-arts.html",null,1551725705],
["11319041","corry","https://corryscreart.blogspot.com/2019/03/knutsel-en-kadootjes.html",null,0],
["11319083","Berni C","https://berni46.blogspot.com/2019/03/digi-doodle-04-mar-19.html",null,1551732905],
["11319153","Cass","https://casscreatingnow.blogspot.com/2019/03/card-and-envelope.html",null,1551745384],
["11319234","Marja","https://marjaskaarten.blogspot.com/2019/03/hoera-je-rijbewijs.html",null,1551775566],
["11319253","Kali","https://bastelgrotte.de/?p=11903",null,1551780361],
["11319274","le idee di penelope","https://ideedipenelope.blogspot.com/2019/03/guest-sulle-tre-pazze-paperine-righe.html",null,1551783769],
["11319278","Diane Ahlers","http://ahlers5.blogspot.com/2019/03/christmas-rocking-horse.html",null,1551784366],
["11319281","Birgit","https://cardsrfun.blogspot.com/2019/03/have-super-birthday.html",null,1551784919],
["11319284","Karen Dunbrook","https://snippets-karen.blogspot.com/2019/03/anything-goes-flower-challenge.html",null,1551785716],
["11319384","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/03/ik-heb-een-paaskaart-gemaakt-met-een.html",null,1551803783],
["11319390","Craftartista: Mia","https://craftartista.blogspot.com/2019/03/coffee-makes-everything-better.html",null,1551804183],
["11319471","marleen v wetten","https://marleenvanwetten.blogspot.com/2019/02/dragongirl.html",null,1551820253],
["11319553","Junebug Creations","https://junebugcreations.wordpress.com/2019/03/05/happy-50th-birthday-hubster",null,1551841067],
["11319570","Gloria Shirr","https://purpleglocreations.blogspot.com/2019/03/all-occasion-card-using-conie-fong.html",null,1551849855],
["11319633","Lisa Bird","https://craftycard-designs.co.uk/hello-hannibal-chill/",null,1551861414],
["11319650","J. Atterbury Creations","https://jatterburycreations.blogspot.com/2019/03/i-heart-you-double-slider-card-join-our.html",null,1551865975],
["11319651","J. Atterbury Creations","http://jatterburycreations.blogspot.com/2019/02/scripture-series-raised-us-up-together.html",null,1551866031],
["11319717","Nisha","https://creationspersonalised.blogspot.com/2019/03/baby-girl.html",null,1551878643],
["11319722","Deonna B","http://ialwayslovetomakecards.blogspot.com/2019/03/collaged-altered-postcards.html",null,1551878970],
["11319752","Pat K","https://patkscards.blogspot.com/2019/03/spring-colours-at-fabnfunky.html",null,1551881716],
["11319794","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/03/vintage-kaartje-en-al-binnendruppelende.html",null,1551884955],
["11319856","AJ","https://ajcreativeenergy.blogspot.com/2019/03/2-chicks.html",null,1551899378],
["11319873","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/03/anything-christmas-goes-at-thaic.html",null,1551901662],
["11319882","Tip Top","http://tiptoptoppers.blogspot.com/2019/03/making-cards-part-1.html",null,1551902291],
["11319977","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2019/03/game-on.html",null,1551937430],
["11319986","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/03/i-lived-beneath.html",null,1551942356],
["11319992","Teresa","http://redobsessioncards.blogspot.com/2019/03/balloon-kitty.html?m=1",null,1551944859],
["11320015","Cat Goodwin","https://thetownscat.wixsite.com/thetownscat/single-post/2019/03/07/Engagement-Card",null,1551953461],
["11320018","Teresa","http://redobsessioncards.blogspot.com/2019/03/colourful-music.html?m=1",null,1551955881],
["11320036","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/03/encore-des-ballons.html",null,1551962589],
["11320054","Deonna B","http://ialwayslovetomakecards.blogspot.com/2019/03/more-bible-art-genesis-6-7-noahs-ark.html",null,1551967007],
["11320061","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/03/100-schattig_7.html",null,1551968807],
["11320093","Teresa","http://redobsessioncards.blogspot.com/2019/03/special-delivery.html?m=1",null,1551973758],
["11320110","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/03/een-kerstkaart-met-op-de-achtergrond.html",null,1551977355],
["11320157","America","https://cardsbyamerica.blogspot.com/2019/03/with-sympathy.html",null,1551990476],
["11320184","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2019/03/bath-time.html",null,1551996603],
["11320269","Clare","https://clarelloyd.blogspot.com/2019/03/international-womens-day.html",null,1552025937],
["11320285","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/03/cactus.html",null,1552032199],
["11320289","Maya","https://mayas-hobbyblogg.blogspot.com/2019/03/to-my-friend.html",null,1552033328],
["11320295","Tip Top","http://tiptoptoppers.blogspot.com/2019/03/colour-crazy-challenge-week-9-paper.html",null,1552035705],
["11320310","Jacki D","https://cookingupacard.blogspot.com/2019/03/sailor-boy.html",null,1552041625],
["11320333","Vivian Foo","https://www.facebook.com/photo.php?fbid=1453624468106670&set=a.753827484753042&type=3&theater",null,1552049410],
["11320338","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/03/flora-and-fauna-with-team-lou.html",null,1552049861],
["11320346","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2019/03/crafty-catz-challenge-anything-goes.html",null,1552050828],
["11320409","Nick","https://nicksscrapshack.blogspot.com/2019/03/dt-card-for-crafty-catz_8.html",null,1552062018],
["11320423","Ann-Marie S.","https://mylittlepatchofheaven-ams.blogspot.com/2019/03/polkadoodles-new-challenge-week-10.html",null,1552063794],
["11320443","Kym","http://kyms-crafty-cards.blogspot.com/2019/03/ching-chou-kuiks-digital-stamps.html",null,1552066622],
["11320504","jenimc","https://jenicraftroom.blogspot.com/2019/03/birthday-parade.html",null,1552084005],
["11320514","AJ","https://ajcreativeenergy.blogspot.com/2019/03/friends-n-clovers.html",null,1552089376],
["11320519","Diane Ahlers","http://ahlers5.blogspot.com/2019/03/little-miss-miracle.html",null,1552090663],
["11320550","Mynn xx","https://mynnettekitchenonastampage.blogspot.com/2019/03/minty-flower.html",null,1552103829],
["11320555","Priyadarshini","https://simpleartcraft.wordpress.com/2019/03/08/baby-cards",null,1552106911],
["11320559","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/03/progressive-freebie-scrappers-delight.html",null,1552107753],
["11320605","Angie's Creations","http://angiescreationsblog.blogspot.com/2019/03/hanging-wall-sign-project.html#links",null,1552114618],
["11320661","nnalorac","https://somethinggonemissing.blogspot.com/2019/03/dis-digi-designs-challenge-tic-tac-toe.html",null,1552124994],
["11320666","Hazel","https://craftyhazelnut.blogspot.com/2019/03/chnc-challenge-428.html",null,1552125623],
["11320770","Silke","https://kartenkram.blogspot.com/2019/03/gezwitscher-im-vogelkasten.html",null,1552142579],
["11320835","Anna","https://nonsolocard.blogspot.com/2019/03/tre-card-per-una-laurea.html",null,1552145969],
["11320846","Fleur","https://fleurapassionforcraft.blogspot.com/2019/03/dandelion-days.html",null,1552147934],
["11320864","Monica C.","https://sunshinecreativity.blogspot.com/2019/03/look-for-magic.html",null,1552151766],
["11320930","Ellie","https://www.ellibellescorner.com/2019/03/allsorts-challenge-510-for-child.html",null,1552168216],
["11320931","Nicky","https://stiggyscrafts.blogspot.com/2019/03/christmas-kisses.html",null,1552168493],
["11320935","Amelia B","https://otomys.wordpress.com/2019/03/06/a-sweet-note/",null,1552169385],
["11321030","Jootje","https://jootjesscrapcards.blogspot.com/2019/03/laagjeslayers.html",null,1552205415],
["11321039","Chandhini","https://thecreativetwins.blogspot.com/2019/03/surprise-slider-card.html",null,1552206363],
["11321094","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/03/kaartje-voor-annerieke.html",null,1552217441],
["11321117","decorcraftdesign","http://decorcraftdesign.com/2019/03/10/diy-spring-lace-tin-can-mug-flower-vase/",null,1552221491],
["11321135","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/03/buzz-in-air.html",null,1552224602],
["11321234","Made By Mandy","https://amandacruxton2.blogspot.com/2019/03/the-bosss-birthday-card.html",null,1552238322],
["11321273","Jen Leeflang","http://jenleeflang.blogspot.com/2019/03/bugaboo-stamps-new-weekly-challenge.html",null,1552247737],
["11321283","Claudia","http://knutselmeisjes.blogspot.com/2019/03/een-hele-fijne-dag.html",null,1552249456],
["11321387","Keencrafter","https://keencrafter.blogspot.com/2019/03/whimsy-stamps-march-new-release-noahs.html",null,1552272283],
["11321396","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/03/birthday-card-using-conie-fong-angel.html",null,1552275906],
["11321405","Keencrafter","https://keencrafter.blogspot.com/2019/03/whimsy-stamps-digi-realease-for-march.html",null,1552278663],
["11321427","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/03/happy-birthday_11.html",null,1552289141],
["11321442","Rosina","http://rosina-scrapcards.blogspot.com/2019/03/workshopkaartje.html",null,1552292809],
["11321453","jackie cornfield","https://getthejclook.blogspot.com/2019/03/monochrome-at-ching-chou-kuik-fb.html",null,1552296500],
["11321460","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/03/annerieke-jarig.html",null,1552298091],
["11321480","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/03/kaartje-voor-annerieke.htmlhttp://nicoletteskaarten.blogspot.com/2019/03/voor-caroline.html",null,0],
["11321481","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/03/voor-caroline.html",null,1552301652],
["11321587","Maria Vachkova","https://marymarins.blogspot.com/2019/03/if-we-had-no-winter-art-journal-page.html",null,1552318740],
["11321598","Karthikha","https://loveforkrafts.blogspot.com/2019/03/altenew-layered-medallion-card-7.html",null,1552321063],
["11321626","Julie Reed","https://pumpkinbellycards.blogspot.com/2019/03/tulip.html",null,1552327037],
["11321822","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/03/birthday-wishes.html",null,1552373704],
["11321835","monique","https://moniqueschattefor.blogspot.com/2019/03/draakje-bloem.html",null,1552377181],
["11321854","pinky","https://pinkysworldsuprojects.blogspot.com/2019/03/envelope-punch-board-customer-gifts.html",null,1552384052],
["11321898","Vivian Foo","https://www.facebook.com/photo.php?fbid=1456333344502449&set=a.753827484753042&type=3&theater",null,1552392921],
["11321902","Craftartista","https://craftartista.blogspot.com/2019/03/spring-blossoms.html",null,1552393174],
["11321923","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2019/03/08/march-2019-challenge-christmas-cards-facebook-group/",null,1552396462],
["11322007","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/03/anything-goes-at-cute-n-crafty-challenge.html",null,1552405992],
["11322017","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/03/preprosta-zahvala.html",null,1552407721],
["11322066","nelleke","https://farmerblog-nelleke.blogspot.com/2019/03/condoleance.html",null,1552417769],
["11322104","Daisy","https://daisyscreativeoutlet.blogspot.com/2019/03/say-cheese.html",null,1552422563],
["11322200","Shamita","https://spiralcreativity.blogspot.com/2019/03/relaxing-flower-fairy.html",null,1552441424],
["11322248","Einat","http://einat109.blogspot.com/2019/03/b-day-card.html",null,1552454364],
["11322313","Craftartista","https://craftartista.blogspot.com/2019/03/fathers-day.html",null,1552470200],
["11322331","Zora","https://lofquisten.blogspot.com/2019/03/fantasy.html",null,1552472412],
["11322352","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com/2019/03/shamrocks-and-clover-oh-my.html",null,1552479507],
["11322353","TracyM 6773 (3)","https://tracyscraftyadventures.blogspot.com/2019/03/a-rainbow-of-luck.html",null,1552479538],
["11322359","decorcraftdesign","http://decorcraftdesign.com/2019/03/13/diy-rustic-vase-for-spring-decor/",null,1552480124],
["11322542","Rumi ","https://rumiscrapbook.blogspot.com/2019/03/the-life-of-flower.html?m=1",null,1552511358],
["11322712","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/03/deze-keer-een-kaart-gemaakt-in-chinese.html",null,1552576930],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}