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("14Mar2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRtYXIyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("11.5 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Mar2019");
blenza_linkies("thumb","lozzy","14Mar2019","539940566",3,
[
// MTRtYXIyMDE5
["11323022","Marciava Warrell ","https://theuniquescrapper.blogspot.com/2019/03/monochromatic-youre-best-card.html",null,1552658242],
["11323092","Monica C.","https://www.sunshinecreativity.com/2019/03/watercolor-flower.html",null,1552665024],
["11323119","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/03/sparkles-monthly-challenges-ch-114-dt.html",null,1552669325],
["11323138","CarolG","http://creationsnz.blogspot.co.nz",null,1552670755],
["11323141","My Other World","https://scrapsdamaryv.blogspot.com/2019/03/creative-with-stamps-inspiracao-de-marco.html",null,1552671352],
["11323164","Kym","https://kyms-crafty-cards.blogspot.com/2019/03/ching-chou-kuiks-digital-stamps_15.html",null,1552673604],
["11323202","Shamita","https://spiralcreativity.blogspot.com/2019/03/turtle-in-love.html",null,1552678544],
["11323246","jenimc","https://jenicraftroom.blogspot.com/2019/03/dainty-butterflies.html",null,1552687250],
["11323257","Craftartista: Mia","https://craftartista.blogspot.com/2019/03/mouse-in-sunshine.html",null,1552689239],
["11323279","Teresa","http://redobsessioncards.blogspot.com/2019/03/a-grandsons-christmas.html?m=1",null,1552693411],
["11323336","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2019/03/cute-as-button-new-release_15.html",null,1552719511],
["11323417","Jackie T","https://tinyrosecr.blogspot.com/2019/03/butterfly-birthday-card_16.html",null,1552734868],
["11323418","nnalorac","https://somethinggonemissing.blogspot.com/2019/03/all-friends-together_16.html",null,1552734991],
["11323462","Judy V","https://jvzcreations.blogspot.com/2019/03/crafters-companion-altered-notebook.html",null,1552741954],
["11323532","Carole J","https://cjcrafty.blogspot.com/2019/03/wildflowers.html",null,1552751148],
["11323550","Karen Dunbrook","https://snippets-karen.blogspot.com/2019/03/pink-for-spring-flower-challenge.html",null,1552754636],
["11323552","Christi C","https://art-without-anxiety.blogspot.com/2019/03/die-cut-divas-and-morgans-artworld.html",null,1552755413],
["11323569","Birgit","https://cardsrfun.blogspot.com/2019/03/merry-bright.html",null,1552757076],
["11323637","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/03/anything-goes-in-pink-at-creations-in.html",null,1552773801],
["11323659","Barbara Bruder","http://artandsoulcreations.blogspot.com/2019/03/hello.html",null,1552781887],
["11323681","Nancy Edwards","https://pinkpanoply.blogspot.com/2019/03/molly-harrison-moonlight-solstice-fairy.html",null,1552787717],
["11323682","Nancy Edwards","https://pinkpanoply.blogspot.com/2019/03/click-those-ruby-stilettos-girlie.html",null,1552787892],
["11323741","Rosina","http://rosina-scrapcards.blogspot.com/2019/03/happy-birthday.html",null,1552807978],
["11323760","Wendy Batchen","http://allsortschallenge.blogspot.com/",null,1552814386],
["11323762","Hermien","http://handmadebyhermien.blogspot.com/2019/03/reminder-k.html",null,1552815035],
["11323779","TRACEYMO","https://mowbraydesigns.blogspot.com/2019/03/new-release-at-twinkle-lane-designs_17.html",null,1552818849],
["11323793","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/03/fijne-verjaardag.html",null,1552820723],
["11323794","Carole J","https://cjcrafty.blogspot.com/2019/03/vera-lane-studio-be-sparkly-atcoin.html",null,1552820744],
["11323804","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/03/lente.html",null,1552822750],
["11323812","Teresa","http://redobsessioncards.blogspot.com/2019/03/the-colours-of-rainbow.html?m=1",null,1552824178],
["11323817","decorcraftdesign","http://decorcraftdesign.com/2019/03/17/diy-coastal-spring-sign-with-single-flower-vase/",null,1552824391],
["11323827","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/03/fintastic.html",null,1552825379],
["11323839","AnnChuangCrafts","https://anncard.blogspot.com/2019/03/love.html",null,1552826846],
["11323857","Hazel L","https://hazel-hazelshappyhouse.blogspot.com/2019/03/iaas-green-and-2-colours.html",null,1552828307],
["11323880","Ċ½eljka","https://creativemomanddaughter.blogspot.com/2019/03/week-5-anything-goes-challenge-at-gem.html",null,1552830031],
["11323893","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/03/easter-bunny-animescrappers-delight.html",null,1552831415],
["11323912","Deonna B","http://ialwayslovetomakecards.blogspot.com/2019/03/altered-tickets-with-die-cuts.html",null,1552834717],
["11323929","Michelle L","https://laughingducks2012.blogspot.com/2019/03/cute-quirky-birds.html",null,1552837106],
["11323944","marleen v wetten","https://marleenvanwetten.blogspot.com/2019/02/dragongirl.html",null,1552838383],
["11323946","marleen v wetten","https://marleenvanwetten.blogspot.com/2019/03/flowers-bday.html",null,1552838579],
["11323947","marleen v wetten","https://marleenvanwetten.blogspot.com/2019/03/wishing-you-speedy-recovery.html",null,1552838713],
["11323989","Monika Reeck","https://creativewithmonika.blogspot.com/2019/03/a-circle-card-and-easter-bunny-card.html",null,1552844737],
["11324017","Kim Lamos","https://www.pinkzebrapapercreations.com/2019/03/31719.html",null,1552849425],
["11324029","Teresa","http://redobsessioncards.blogspot.com/2019/03/rocking-birthday.html?m=1",null,1552855691],
["11324042","CreaNancy","http://creanancy.blogspot.com/2019/03/lekker-spelen.html",null,1552858747],
["11324103","Carole J","https://cjcrafty.blogspot.com/2019/03/veralane-studio-unicorn-girls.html",null,1552877061],
["11324130","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/03/happy-birthday_18.html",null,1552894452],
["11324162","jenimc","https://jenicraftroom.blogspot.com/2019/03/lacy-birthday.html",null,1552901770],
["11324179","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/03/voor-mijn-moeder.html",null,1552904626],
["11324195","Koraliki Beaty","https://koralikibeaty.blogspot.com/2019/03/album-na-zdjecia-dla-ksiezniczki-dla.html",null,1552909723],
["11324200","Janis Lewis","https://pausedreamenjoy.blogspot.com/2019/03/thank-heaven-for-friends.html",null,1552911329],
["11324208","Jasmina","https://handmadebyjasmina.blogspot.com/2019/03/vintage-rojstnodnevna-voscilnica.html",null,1552913628],
["11324228","Maria","https://maria-mood.blogspot.com/2019/03/for-you_18.html",null,1552915897],
["11324257","Ellie","https://www.ellibellescorner.com/2019/03/midmonth-at-penny-black-and-more.html",null,1552919287],
["11324259","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/03/per-un-bimbo-in-arrivo.html",null,1552919473],
["11324260","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/03/vandaag-een-kaart-gemaakt-in-de-vorm.html",null,1552920019],
["11324302","Tina","https://paperplotterlottas-craftchaos.blogspot.com/2019/03/oddball-interactive-wiper-card-video.html",null,1552925700],
["11324312","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/03/yappy-birthday-always-fun-challenge.html",null,1552928148],
["11324313","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/03/youre-perfect-in-my-book-catch-bug-abc.html",null,1552928230],
["11324332","Teresa","http://redobsessioncards.blogspot.com/2019/03/welcome-to-world.html?m=1",null,1552935011],
["11324342","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/03/lets-get-krafty-use-kraft-card-at-dream.html",null,1552937105],
["11324359","Monica C.","https://www.sunshinecreativity.com/2019/03/outlawzs-birthday.html",null,1552942454],
["11324385","Dawn Frost","http://stamp-n-play.blogspot.com/2019/03/createful-heart-designs-digital-stamps.html",null,1552951274],
["11324386","Teresa","http://redobsessioncards.blogspot.com/2019/03/bunnies.html?m=1",null,1552951528],
["11324461","Sue Kment","https://suesstampingstuff.blogspot.com/2019/03/house-mouse-and-friends-monday.html",null,1552973905],
["11324507","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/03/recycled-pastel-roses.html",null,1552988576],
["11324523","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/03/path-of-positivity-bit-more-friendship.html",null,1552991365],
["11324547","Kali","https://bastelgrotte.de/?p=9150",null,1552998171],
["11324589","Rijacki Ledum","https://rijacki.blogspot.com/2019/03/fae-TTCRD.html",null,1553006692],
["11324624","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/03/stesso-fiore-oggetti-diversi.html",null,1553011382],
["11324643","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/03/live-life-inspired-bugaboo-new-release.html",null,1553017709],
["11324675","Vannessa","http://saffiresstamping.blogspot.com/2019/03/something-else-on-saturday-2-art-by.html",null,1553024654],
["11324732","*Vicki*","https://stampedsmiles.com/2019/03/19/thinking-of-tulips-with-whimsy-stamps/",null,1553037659],
["11324786","Priyadarshini","https://simpleartcraft.wordpress.com/2019/03/20/no-line-water-colouring/",null,1553058923],
["11324917","Sarah N","https://papertreedotblog.wordpress.com/2019/03/20/have-a-beautiful-day/",null,1553085935],
["11324946","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/03/cas-kaartje-voor-2sistersontheblog.html",null,1553091550],
["11325004","AJ","https://ajcreativeenergy.blogspot.com/2019/03/carnival-carousel.html",null,1553101688],
["11325020","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/03/wietske-is-jarig.html",null,1553105605],
["11325056","J. Atterbury Creations","https://jatterburycreations.blogspot.com/2019/03/scripture-series-body-of-christ-card.html",null,1553110509],
["11325084","Craftartista: Mia","https://craftartista.blogspot.com/2019/03/raven-and-coffee.html#comment-form",null,1553116964],
["11325085","Ellie","https://www.ellibellescorner.com/2019/03/under-sea.html",null,1553117351],
["11325115","Alicia O'Bryant","https://goldengoddessdesigns.blogspot.com/2019/03/stampin-up-ahoy-with-quick-quotes.html",null,1553129171],
["11325155","Desire Fourie","https://desiref.blogspot.com/2019/03/iced-tea-design-team-project-march-2019.html",null,1553151348],
["11325160","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/03/winter.html",null,1553153758],
["11325205","Maryann Scrapbooking","https://maryann-scrap.blogspot.com/2019/03/joyeux-anniversaire-dame-poisson.html",null,1553169761],
["11325224","Deonna B","http://ialwayslovetomakecards.blogspot.com/2019/03/bible-art-psalm-912-my-refuge.html",null,1553172284],
["11325237","Judy V","https://jvzcreations.blogspot.com/2019/03/happy-s-patricks-day.html",null,1553175311],
["11325246","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/03/een-easel-kerstkaart-met-3-hondjes-die.html",null,1553180446],
["11325268","AJ","https://ajcreativeenergy.blogspot.com/2019/03/happy-easter.html",null,1553185967],
["11325317","jenimc","https://jenicraftroom.blogspot.com/2019/03/strawberry-patch.html",null,1553200026],
["11325520","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/03/concluso-lo-swap-delle-tre-pazze-parine.html",null,1553261918],
["11325574","AJ","https://ajcreativeenergy.blogspot.com/2019/03/musicians-note-cards.html",null,1553270704],
["11325577","Ann-Marie S.","https://mylittlepatchofheaven-ams.blogspot.com/2019/03/surprise-polkadoodles-wk-12-challenge.html",null,1553270908],
["11325587","elizabeth h","http://warmharted.blogspot.com/2019/03/field-of-rabbits.html",null,1553272257],
["11325601","Kym","https://kyms-crafty-cards.blogspot.com/2019/03/colour-crazy-challenge-blog-friday-22.html",null,1553273666],
["11325606","Kym","http://kyms-crafty-cards.blogspot.com/2019/03/ching-chou-kuiks-digital-stamps_22.html",null,1553274351],
["11325636","Gina","https://ginascards.blogspot.com/2019/03/new-challenge-at-polkadoodles-crafting_22.html",null,1553278114],
["11325670","Karthikha","https://loveforkrafts.blogspot.com/2019/03/altenew-layered-medallion-card-8.html",null,1553284861],
["11325717","Renee Daley","https://stampknowhow.com/2019/03/21/magical-mermaid-birthday-card/",null,1553305270],
["11325719","Renee Daley","https://stampknowhow.com/2019/03/20/home-to-roost-note-card/",null,1553305334],
["11325740","Gloria Shirr","https://purpleglocreations.blogspot.com/2019/03/thinking-of-you-fun-fold-card-using.html",null,1553319450],
["11325773","Rosina","http://rosina-scrapcards.blogspot.com/2019/03/2-kaartjes.html",null,1553329705],
["11325835","Hazel","https://craftyhazelnut.blogspot.com/2019/03/chnc-challenge-430.html",null,1553342958],
["11325847","Made By Mandy","https://amandacruxton2.blogspot.com/2019/03/this-is-card-i-made-to-celebrate.html",null,1553345786],
["11325975","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/03/thinking-of-you-fun-fold-card-using_23.html",null,1553359093],
["11326071","Craftartista: Mia","https://craftartista.blogspot.com/2019/03/lovely-animals.html",null,1553385165],
["11326211","Fleur","https://fleurapassionforcraft.blogspot.com/2019/03/a-gift-for-lady.html",null,1553428374],
["11326219","Creative Smiles","https://creativesmiles2.blogspot.com/2019/03/beautiful-pear-by-beccy-muir.html",null,1553429697],
["11326319","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/03/58-jaar-getrouwd.html",null,1553443550],
["11326413","Craftartista: Mia","https://craftartista.blogspot.com/2019/03/lets-play.html",null,1553469610],
["11326434","Linda Mc Enery ","https://lindamscreations.blogspot.com/2019/03/book-stack.html",null,1553481401],
["11326456","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/03/magnolia-birthday.html",null,1553496399],
["11326464","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/03/happy-birthday_25.html",null,1553499292],
["11326530","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/03/for-someone-special-at-crafty-creations.html",null,1553517391],
["11326546","Nisha","https://creationspersonalised.blogspot.com/2019/03/you-are-berry-sweet.html",null,1553520129],
["11326568","Tamie Camp","https://paperinfusionsandmore.blogspot.com/2019/03/i-remembered-your-birthday.html",null,1553525409],
["11326596","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/03/58-jaar-getrouwd.html",null,1553527915],
["11326643","Twisted Witch - Lin","http://twisted-witch.blogspot.com/2019/03/ccm-230-that-special-someone.html",null,1553539890],
["11326661","cheiro urgia","https://cheirourgia.blogspot.com/2019/03/swirly.html",null,1553544114],
["11326666","AJ","https://ajcreativeenergy.blogspot.com/2019/03/eggstra-special-easter-bunny.html",null,1553545941],
["11326676","Silke","https://kartenkram.blogspot.com/2019/03/peony-baby.html",null,1553547140],
["11326681","Kim Taylor","https://tillyscrafts.blogspot.com/2019/03/for-you-with-love.html",null,1553547443],
["11326683","Lori Podolsky","https://loripodolsky.blogspot.com/2019/03/golden-mermaid-by-ching-chou-kuik.html",null,1553547665],
["11326719","caroleann","https://cgshttps://cgscards4u.blogspot.com/2019/03/just-note.htmlcards4u.blogspot.com/2019/03/hoppy-easter.htmls",null,1553556242],
["11326755","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/03/hello-friend-card-using-ctmh-so-much.html",null,1553569990],
["11326784","Rosina","https://rosina-scrapcards.blogspot.com/2019/03/veel-liefs.html",null,1553582780],
["11326792","Annemi","https://systeryster-annemi.blogspot.com/2019/03/new-challenge-starts-today-at-ttcrd_26.html",null,1553586416],
["11326817","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/03/esmee-is-geboren.html",null,1553594314],
["11326820","Craftartista","https://craftartista.blogspot.com/2019/03/for-cat-lovers.html",null,1553594638],
["11326840","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/03/my-step-daughters-50th-birthday-card.html",null,1553599113],
["11326888","Shamita","https://spiralcreativity.blogspot.com/2019/03/reach-for-stars.html",null,1553604461],
["11326903","Lisa Bird","https://craftycard-designs.co.uk/world-wildlife-thank-you-for-your-friendship/",null,1553607074],
["11326929","Julie O","https://muddypawsinkyfingers.blogspot.com/2019/03/a-mouse-for-you-and-kinda-cute-by.html",null,1553615205],
["11326979","CreaNancy","https://creanancy.blogspot.com/2019/03/hoera-x-2.html",null,1553626848],
["11327030","Renee Daley","https://stampknowhow.com/2019/03/26/beauty-abounds-collage-thank-you-card/",null,1553637117],
["11327054","Junebug Creations","https://junebugcreations.wordpress.com/2019/03/26/paper-pumpkin-possibilities-poppin-birthday",null,1553644793],
["11327084","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/03/hugs-and-kisses.html",null,1553653976],
["11327104","Nisha","https://creationspersonalised.blogspot.com/2019/03/birthday.html",null,1553664954],
["11327249","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/03/voor-annemarie.html",null,1553694832],
["11327262","Mindy Baxter","https://www.mycreativescoop.com/rainbow-background-using-tim-holtz-alcohol-inks/",null,1553695440],
["11327313","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/03/progressive-challenge-at-scrappers.html",null,1553702100],
["11327352","elizabeth h.","https://warmharted.blogspot.com/2019/03/dressed-up-chick.html",null,1553706977],
["11327382","Larissa","https://car-d-elicious.blogspot.com/2019/03/gerda-steiner-designs-wishing-you-hoppy.html",null,1553713159],
["11327394","Made By Mandy","https://amandacruxton2.blogspot.com/2019/03/a-visit-from-easter-bunny.html",null,1553717141],
["11327399","Jen Leeflang","http://jenleeflang.blogspot.com/2019/03/bugaboo-samps-anything-but-card.html",null,1553718058],
["11327457","ingunn","https://ingunnsinekort.blogspot.com/2019/03/pa-en-planet-i-et-annet-univers-vokser.html",null,1553738453],
["11327493","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/03/christmas-greetings.html",null,1553758780],
["11327494","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/03/spring-is-here-at-crafty-gals-corner.html",null,1553758887],
["11327523","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/03/fridge-magnet.html",null,1553770270],
["11327531","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/03/spellbinders-flora-and-fauna-cut-and.html",null,1553773657],
["11327559","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/03/een-kerstkaart-met-op-de-achtergrond_28.html",null,1553782077],
["11327566","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/03/getting-messy.html",null,1553785179],
["11327588","Silke","https://kartenkram.blogspot.com/2019/03/fruhlingsgrue.html",null,1553797440],
["11327597","Larissa","https://car-d-elicious.blogspot.com/2019/03/as-you-like-it-challenge-153-your.html",null,1553800433],
["11327601","Nisha","https://creationspersonalised.blogspot.com/2019/03/cake.html",null,1553802778],
["11327603","Nisha","https://creationspersonalised.blogspot.com/2019/03/challenges-httpsundaystamps.html",null,1553802899],
["11327604","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/03/the-male-room-naredi-sam.html",null,1553802918],
["11327707","Rosina","http://rosina-scrapcards.blogspot.com/2019/03/een-knuffel.html",null,1553850131],
["11327723","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/03/altered-embroidery-hoop-card.html",null,1553854218],
["11327730","decorcraftdesign","http://decorcraftdesign.com/2019/03/29/shabby-flowers-hand-painting-wall-art/",null,1553855964],
["11327773","Deonna B","http://ialwayslovetomakecards.blogspot.com/2019/03/stamped-ticket-embellishments-bird.html",null,1553867871],
["11327809","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/03/zomaar-even-een-kaartje-van-mij.html",null,1553875410],
["11328521","Nicky","https://stiggyscrafts.blogspot.com/2019/03/inksmooching.html",null,0],
["11328521","Nicky","https://stiggyscrafts.blogspot.com/2019/03/inksmooching.html",null,0],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}