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("31Jul2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzFqdWwyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("7 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("31Jul2019");
blenza_linkies("thumb","lozzy","31Jul2019","693885822",3,
[
// MzFqdWwyMDE5
["11371713","Craftartista","https://craftartista.blogspot.com/2019/08/cherish-yesterday.html",null,1564644069],
["11371715","Bianca's Scrapcards.","https://biancasscrapcards.blogspot.com/2019/08/beach-memory.html",null,1564644688],
["11371716","Desire Fourie","https://desiref.blogspot.com/2019/08/happy-birthday-design-team-project.html",null,1564644880],
["11371725","Craftartista","https://craftartista.blogspot.com/2019/08/steampunk-summer.html",null,1564651980],
["11371728","Kym","http://kyms-crafty-cards.blogspot.com/2019/08/ching-chou-kuik-digital-stamps-august.html",null,1564653080],
["11371729","Jackie T","https://tinyrosecr.blogspot.com/2019/08/crafts-galore-encore-august-challenge.html",null,1564653478],
["11371738","Dawn S","https://dawnscraftybits.blogspot.com/2019/08/omg-omg-omg-sooooo-excited.html",null,1564658345],
["11371739","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/08/thank-you-card.html",null,1564658924],
["11371773","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/08/nuovo-challenge-di-simply-magnolia.html",null,1564662209],
["11371804","Judy V","https://jvzcreations.blogspot.com/2019/08/digi-doodle-studios-challenge-19.html",null,1564668126],
["11371819","Julie T","https://juliescraftyspot.blogspot.com/2019/08/three-on-bench-mos-digital-pencil.html",null,1564673027],
["11371869","Carole J","https://cjcrafty.blogspot.com/2019/08/gecko-galz-shabby-chic-seaside.html",null,1564684292],
["11371947","Hazel","https://craftyhazelnut.blogspot.com/2019/08/craftyhazelnuts-patterned-paper-august.html",null,1564696376],
["11371950","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2019/08/shhhhh-is-fae.html",null,1564697651],
["11371975","Judy V","https://jvzcreations.blogspot.com/2019/08/cute-as-button-august-challenge.html",null,1564713322],
["11372018","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/08/dak-sierpien.html",null,1564732828],
["11372031","Kim Costello","https://paperbabe.blogspot.com/2019/08/paperbabe-stamps-challenge-99-picture.html",null,1564737533],
["11372033","Cinderella 1","https://cinderellasdreamcardsblog.blogspot.com/2019/08/beach-party.html",null,1564737653],
["11372035","Janette D","https://little-boscraftyplace.blogspot.com/2019/08/ok-christmas-cardomg.html",null,1564738384],
["11372039","Hazel","https://craftyhazelnut.blogspot.com/2019/08/happy-60th-birthday.html",null,1564739165],
["11372041","jackie cornfield","https://getthejclook.blogspot.com/2019/08/classic-design-team-august-challenge.html",null,1564740224],
["11372093","Dawn S","https://dawnscraftybits.blogspot.com/2019/08/hoppy-birthday.html",null,1564750528],
["11372112","litasha gandhi","https://vpslart.blogspot.com/2019/08/friendship-day-card.html",null,1564756562],
["11372122","jenimc","https://jenicraftroom.blogspot.com/2019/08/theo-is-4.html",null,1564759010],
["11372125","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/08/diolch-card.html",null,1564759903],
["11372142","Allisa","http://www.rockymtnpapercrafts.com/2019/08/sketch-saturday-574.html",null,1564765343],
["11372154","Caroline's Creaties","http://caroline-creaties.blogspot.com/2019/08/maritiem-kaartje.html",null,1564766373],
["11372196","Karthikha","https://loveforkrafts.blogspot.com/2019/08/squash-card-for-birthday.html",null,1564769497],
["11372203","Maryann Scrapbooking","https://maryann-scrap.blogspot.com/2019/08/mieux-vaut-tard-que-jamais.html",null,1564771124],
["11372204","Shamita","https://spiralcreativity.blogspot.com/2019/08/beach-party.html",null,1564771479],
["11372227","Judy V","https://jvzcreations.blogspot.com/2019/08/polkadoodles-craft-challenge-week-31.html",null,1564777386],
["11372252","Wendy Batchen","http://wenscreations.blogspot.com/2019/08/scrappers-delights-new-releases-2nd.html",null,1564785905],
["11372262","Victoria R","http://victorias-crafting-creations.blogspot.com/2019/08/caab-summer-reading-birthday-card.html?m=1",null,1564786702],
["11372341","meg","https://bitsandpiecec.blogspot.com/2019/08/anything-goes-with-day-for-daisies-at.html",null,1564816334],
["11372354","Claudia","https://knutselmeisjes.blogspot.com/2019/08/ahola-het-is-zomer.html",null,1564823106],
["11372363","Jasmina","https://handmadebyjasmina.blogspot.com/2019/08/fb-papirckarice-38-izziv-karkoli.html",null,1564825745],
["11372397","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/08/new-release-at-scrappers-delights.html",null,1564833919],
["11372407","elizabeth","http://worldofelizabeth.blogspot.com/2019/08/my-project-as-dt-for-ccc-digi-creations.html",null,1564835828],
["11372408","elizabeth","http://worldofelizabeth.blogspot.com/2019/08/viva-gli-sposi-long-live-brides.html",null,1564835955],
["11372409","elizabeth","http://worldofelizabeth.blogspot.com/2019/07/criss-cross-and-happy-birthday.html",null,1564836038],
["11372415","Pat K","https://patkscards.blogspot.com/2019/08/get-well.html",null,1564838059],
["11372416","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/08/er-is-weer-een-nieuwe-wedstrijd.html",null,1564838600],
["11372485","Gale K","https://galesstampingcorner.blogspot.com/2019/08/magical-bloom-dancer.html",null,1564851965],
["11372503","Chris","https://andheresoneimadeearlier.blogspot.com/2019/08/anything-goes-at-crafty-calendar.html",null,1564854568],
["11372545","Monica C.","https://www.sunshinecreativity.com/2019/08/the-pumpkins.html",null,1564864037],
["11372549","Myry","https://filsetpapiers.blogspot.com/2019/08/juicy-and-sweet-dream-card.html",null,1564864553],
["11372613","Donna R","https://indianainking.blogspot.com/2019/08/amazing-birthday.html",null,1564886960],
["11372632","*Vicki*","https://stampedsmiles.com/2019/08/03/triangle-corner-pop-up-card-with-brutus-monroe-gdt-part-2/",null,1564891841],
["11372709","jackie cornfield","https://getthejclook.blogspot.com/2019/08/613-avenue-create-atg-optional-twist.html",null,1564907289],
["11372713","Wendy Batchen","https://wenscreations.blogspot.com/2019/08/sweet-sentiments-members-1000_3.html",null,1564907674],
["11372720","Caroline's Creaties","http://caroline-creaties.blogspot.com/2019/08/gastdesigner-bij-creative-sketchy-girls.html",null,1564909864],
["11372727","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/08/vouw-kaart.html",null,1564912005],
["11372744","Hazel L","http://hazel-hazelshappyhouse.blogspot.com/2019/08/iaas-embossing-heat-or-dry.html",null,1564916733],
["11372749","Hazel","https://craftyhazelnut.blogspot.com/2019/08/chnc-challenge-449.html",null,1564917647],
["11372832","elizabeth h","http://warmharted.blogspot.com/2019/08/butterfly-flurry.html",null,1564932033],
["11372942","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/08/august-chibi-new-release-scrappers.html",null,1564969735],
["11372944","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2019/08/sweet-sentiment-1000-members-party.html",null,1564969871],
["11372984","cheiro urgia","https://cheirourgia.blogspot.com/2019/08/pearly-pink.html",null,1564987209],
["11373002","Tip Top","http://tiptoptoppers.blogspot.com/2019/08/colour-crazy-challenge-week-30-dr-digi.html",null,1564992851],
["11373005","Tip Top","http://tiptoptoppers.blogspot.com/2019/08/daring-card-makers-challenge-elemental.html",null,1564993162],
["11373100","basslady","https://bassladycreations.blogspot.com/2019/08/geschenke-set-schon-dass-es-dich-gibt.html?m=0",null,1565003375],
["11373111","Janis Lewis","https://pausedreamenjoy.blogspot.com/2019/08/i-love-you.html",null,1565006384],
["11373116","Hazel","https://craftyhazelnut.blogspot.com/2019/08/happy-birthday-daughter-in-law.html",null,1565007618],
["11373213","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/08/ik-vandaag-eens-een-zomerkaart-gemaakt.html",null,1565029480],
["11373304","Hazel","https://craftyhazelnut.blogspot.com/2019/08/with-deepest-sympathy-at-this-difficult.html",null,1565041552],
["11373375","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/08/naughty-nice-or-undecided.html",null,1565073540],
["11373386","Linda Mc Enery","https://lindamscreations.blogspot.com/2019/08/passion-for-promarkers-challenge-505.html",null,1565078551],
["11373387","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/08/condoleancekaarten.html",null,1565078697],
["11373396","Cass","https://casscreatingnow.blogspot.com/2019/08/unicorn-challenge-blog-46.html",null,1565080987],
["11373397","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/08/une-carte-tropicale.html",null,1565081100],
["11373398","Hazel","https://craftyhazelnut.blogspot.com/2019/08/commissioned-60th-birthday-card.html",null,1565081101],
["11373399","jenimc","https://jenicraftroom.blogspot.com/2019/08/bubbles.html",null,1565081276],
["11373426","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/08/and-relax.html",null,1565088230],
["11373481","Rijacki Ledum","https://rijacki.blogspot.com/2019/08/yellow-roses-TTCRD.html",null,1565105675],
["11373612","elizabeth h","http://warmharted.blogspot.com/2019/08/make-waves.html",null,1565126660],
["11373733","Granne","https://aavamaki.blogspot.com/2019/08/discover-sea-atc.html",null,1565156942],
["11373749","Sheryl Hare","https://marchharecards.blogspot.com/2019/08/birthdays-at-i-love-promarkers.html",null,1565159806],
["11373755","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/08/smile.html",null,1565161131],
["11373758","Kathie","https://kathiezkardz.blogspot.com/2019/08/tulip-from-trio.html",null,1565161646],
["11373768","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/08/birthday-wishes-guy-card.html",null,1565162952],
["11373794","monique","http://moniqueschattefor.blogspot.com/2019/08/have-big-dreams.html",null,1565168969],
["11373800","Priyadarshini","https://simpleartcraft.wordpress.com/2019/08/07/simple-congratulations-card",null,1565172064],
["11373802","Priyadarshini","https://simpleartcraft.wordpress.com/2019/08/07/christmas-card-7",null,1565172494],
["11373822","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/08/candle-light-dreams.html",null,1565177570],
["11373854","Helen","https://craftinghelen.blogspot.com/2019/08/new-get-creative-challenge-anything-goes.html",null,1565183465],
["11373927","Karthikha","https://loveforkrafts.blogspot.com/2019/08/altenew-dodec-hugs.html",null,1565191766],
["11374013","jenimc","https://jenicraftroom.blogspot.com/2019/08/evie.html",null,1565207863],
["11374020","Wendy F","https://crazy4flowerscards.blogspot.com/2019/08/spots-andor-stripes-at-sweet-stampin.html",null,1565211703],
["11374041","Junebug Creations","https://junebugcreations.wordpress.com/2019/08/07/ics-beautiful-bundles",null,1565222632],
["11374121","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/08/merry-christmas.html",null,1565247890],
["11374129","Hazel","https://craftyhazelnut.blogspot.com/2019/08/for-special-brother.html",null,1565251478],
["11374133","Hazel","https://craftyhazelnut.blogspot.com/2019/08/happy-anniversary.html",null,1565253672],
["11374134","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/08/a-gift-of-love.html",null,1565253698],
["11374149","Hazel","https://craftyhazelnut.blogspot.com/2019/08/21st-birthday-for-grandson.html",null,1565256949],
["11374159","Sherry G","http://loosestitchesandunraveledthreads.blogspot.com/2019/07/morgans-artworld-challenge-08.html",null,1565261195],
["11374209","Ann-Marie S.","https://mylittlepatchofheaven-ams.blogspot.com/2019/08/what-to-wear-and-some-news.html",null,1565278009],
["11374220","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/08/yappy-birthday-aud-sentiments-233.html",null,1565281852],
["11374223","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/08/happy-birthday-friend-catch-bug-oldie.html",null,1565282742],
["11374234","Sheryl Hare","https://marchharecards.blogspot.com/2019/08/christmas-in-august.html",null,1565287672],
["11374302","Judy McKay","https://insearchofmycreativeside.blogspot.com/2019/08/altered-glass-plate-with-rice-paper.html",null,1565293340],
["11374318","Allisa","http://www.rockymtnpapercrafts.com/2019/08/sketch-saturday-575.html",null,1565298573],
["11374345","Bisse","https://vasemmalkadella.blogspot.com/2019/08/party-animal-muotokortti.html",null,1565310111],
["11374383","Kym","http://kyms-crafty-cards.blogspot.com/2019/08/colour-crazy-challenge-blog-friday-9.html",null,1565330763],
["11374388","Kym","http://kyms-crafty-cards.blogspot.com/2019/08/ching-chou-kuiks-digital-stamps.html",null,1565331438],
["11374399","Hazel","https://craftyhazelnut.blogspot.com/2019/08/a-commissioned-card-for-mother.html",null,1565335496],
["11374404","Hazel","https://craftyhazelnut.blogspot.com/2019/08/commissioned-for-mother.html",null,1565336212],
["11374431","Craftartista","https://craftartista.blogspot.com/2019/08/be.html",null,1565347450],
["11374561","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/08/i-love-you-colour-crazy-challenge-31.html",null,1565369079],
["11374568","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/08/i-get-enough-exercise-bugaboo-free.html",null,1565369976],
["11374588","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2323961374320115/?type=3&theater",null,1565375392],
["11374593","Tip Top","http://tiptoptoppers.blogspot.com/2019/08/a-70th-part-3.html",null,1565376787],
["11374596","Tip Top","http://tiptoptoppers.blogspot.com/2019/08/daring-card-makers-challenge-1-2-3-4.html",null,1565377319],
["11374604","Teresa","http://redobsessioncards.blogspot.com/2019/08/surfs-up.html?m=1",null,1565379180],
["11374612","Faith A","http://daffodil-faitha.blogspot.com/2019/08/lion-stencil.html",null,1565380673],
["11374621","Wendy Batchen","https://wenscreations.blogspot.com/2019/08/scrappers-delights-progressive.html",null,1565383118],
["11374650","Rijacki: Nature's Heart","https://rijacki.blogspot.com/2019/08/natures-heart.html",null,1565400553],
["11374676","elizabeth h","http://warmharted.blogspot.com/2019/08/water-fun.html",null,1565413400],
["11374682","Judy McKay","https://insearchofmycreativeside.blogspot.com/2019/08/creativity-is-contagious.html",null,1565416192],
["11374718","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/08/august-progressive-challenge-at.html",null,1565431807],
["11374749","NanaConnie","http://mygrammysattic.blogspot.com/2019/08/summer-birthday.html",null,1565441681],
["11374760","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2019/08/lotv-james.html",null,1565443807],
["11374765","Hazel","https://craftyhazelnut.blogspot.com/2019/08/chnc-challenge-450.html",null,1565444781],
["11374784","Helen Liu","https://stampfairy-helen.blogspot.com/2019/08/a-friend-like-you-is-rare.html",null,1565452154],
["11374817","Jootje","https://jootjesscrapcards.blogspot.com/2019/08/kaart-met-labelscard-with-tags.html",null,1565464462],
["11374830","Nicky","https://stiggyscrafts.blogspot.com/2019/08/baby-coming-soon.html",null,1565467881],
["11374834","Larissa","https://car-d-elicious.blogspot.com/2019/08/dis-digi-designs-challenge-circles.html",null,1565469265],
["11374843","Teresa","http://redobsessioncards.blogspot.com/2019/08/golfing.html?m=1",null,1565473246],
["11374844","Teresa","http://redobsessioncards.blogspot.com/2019/08/beautiful-mermaid.html?m=1",null,1565473500],
["11374847","Teresa","http://redobsessioncards.blogspot.com/2019/08/flowers-for-someone-special.html?m=1",null,1565473755],
["11374848","Teresa","http://redobsessioncards.blogspot.com/2019/08/a-special-friend.html?m=1",null,1565473923],
["11374851","Kathie","https://kathiezkardz.blogspot.com/2019/08/delphinium.html",null,1565476524],
["11374858","RachelTaylor","https://blossomcards.blogspot.com/2019/08/triple-easel-fold-cards.html#links",null,1565478192],
["11374922","Karthikha","https://loveforkrafts.blogspot.com/2019/08/an-inch-august-day-9.html",null,1565492724],
["11375054","Hazel","https://craftyhazelnut.blogspot.com/2019/08/simply-blue-christmas.html",null,1565512781],
["11375093","monique","http://moniqueschattefor.blogspot.com/2019/08/butterfly-birthday.html",null,1565519999],
["11375193","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/08/un-po-di-vacanza.html",null,1565535596],
["11375372","Shona Hamill","https://handmadebyhamill.blogspot.com/2019/08/holly-ivy-christmas-challenge-53.html",null,1565572136],
["11375401","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/08/sterkte.html",null,1565588309],
["11375404","Rosina","http://rosina-scrapcards.blogspot.com/2019/08/gefeliciteerd.html",null,1565589771],
["11375421","Hazel","https://craftyhazelnut.blogspot.com/2019/08/spiderman-for-twin-boys.html",null,1565596266],
["11375441","Hazel","https://craftyhazelnut.blogspot.com/2019/08/not-enough-candles.html",null,1565603323],
["11375531","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/08/met-marianne-in-de-lift-vandaag.html",null,1565621906],
["11375562","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/08/always-here-for-you-always-fun.html",null,1565629461],
["11375586","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/08/whos-been-at-catnip.html",null,1565632646],
["11375614","Helen","https://helenscrafthaven.blogspot.com/2019/08/airborne.html",null,1565636888],
["11375648","jenimc","https://jenicraftroom.blogspot.com/2019/08/evelyn.html",null,1565640572],
["11375663","Suze","https://craftysuze.blogspot.com/2019/08/thank-you.html",null,1565642044],
["11375984","Jasmina","https://handmadebyjasmina.blogspot.com/2019/08/samokolnica-polna-rozic-wheelbarrow.html",null,1565710017],
["11376004","Victoria R","http://victorias-crafting-creations.blogspot.com/2019/08/sd-ss-1000-members-party-cards.html?m=1",null,1565716284],
["11376042","Sabina","https://artbysabina.blogspot.com/2019/08/ttph-158-inspired-by-song.html",null,1565725002],
["11376078","Spiral Creativity","https://spiralcreativity.blogspot.com/2019/08/butterfly-flower-girl.html",null,1565730692],
["11376148","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/08/feeling-sketchy-mavrica-na-soncnicnem.html",null,1565757988],
["11376193","Hazel","https://craftyhazelnut.blogspot.com/2019/08/with-deepest-sympathy.html",null,1565769782],
["11376198","Hazel","https://craftyhazelnut.blogspot.com/2019/08/a-commissioned-sympathy-card.html",null,1565770354],
["11376211","Larissa","https://car-d-elicious.blogspot.com/2019/08/gerda-steiner-designs-happy-birthday-tag.html",null,1565775209],
["11376232","Saphron","https://www.lemonbiscuit.blog/crafts/pennys-paper-crafty-challenge-443/",null,1565781537],
["11376271","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/08/elegant-cornflowers-with-crafty-gals.html",null,1565785438],
["11376273","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com/2019/08/more-elegant-cornflowers-with-crafty.html",null,1565785523],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}