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("14Jul2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRqdWwyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("7.5 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Jul2019");
blenza_linkies("thumb","lozzy","14Jul2019","1488797862",3,
[
// MTRqdWwyMDE5
["11366435","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/07/dak-lipiec-15.html",null,1563187524],
["11366450","monique","http://moniqueschattefor.blogspot.com/2019/07/love-icecream.html",null,1563192403],
["11366469","Jackie T","https://tinyrosecr.blogspot.com/2019/07/happy-anniversary-to-our-daughter-and.html",null,1563196177],
["11366499","Desire Fourie","https://desiref.blogspot.com/2019/07/a-little-merry-reminder-project-july.html",null,1563199771],
["11366519","jenimc","https://jenicraftroom.blogspot.com/2019/07/mice-let-it-snow.html",null,1563205765],
["11366529","Jasmina","https://handmadebyjasmina.blogspot.com/2019/07/fairytale-world.html",null,1563206636],
["11366539","Twisted Witch - Lin","http://twisted-witch.blogspot.com/2019/07/ccm-here-comes-summer.html",null,1563211213],
["11366552","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/07/een-sprookjeskaart-met-een-open-boek.html",null,1563213807],
["11366558","Cinderella 1","https://cinderellasdreamcardsblog.blogspot.com/2019/07/such-precious-gift-to-treasure.html",null,1563215618],
["11366559","Cinderella 2","https://cinderellasdreamcardsblog.blogspot.com/2019/07/jumping-for-joy-springend-van-vreugde.html",null,1563215727],
["11366588","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2019/07/panel-weave.html",null,1563223842],
["11366718","Borqna","https://borqna-venkova.blogspot.com/2019/07/ikesworld-ch-122-g-for-ginghamplaid.html",null,1563267130],
["11366727","Anna","https://nonsolocard.blogspot.com/2019/07/life-is-good.html",null,1563272401],
["11366732","Cristina","https://rutscht.blogspot.com/2019/07/go-girl.html",null,1563273681],
["11366744","Maritza Rios","http://arteconpapelmaderaehilos.blogspot.com/2019/07/mi-proyecto-para-el-reto-de-julio-en-el.html",null,1563276860],
["11366746","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/07/happy-birthday-richard.html",null,1563277646],
["11366753","Helen","https://helenscrafthaven.blogspot.com/2019/07/burst-into-bloom.html",null,1563278626],
["11366766","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/07/coffee-card-monday.html",null,1563281143],
["11366780","Judy V","https://jvzcreations.blogspot.com/2019/07/digi-doodles-studios-santas-eve.html",null,1563284866],
["11366786","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/07/exploring-embroidery.html",null,1563285322],
["11366796","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/07/winning-birthday.html",null,1563288725],
["11366836","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/07/sparkles-monthly-challenges-ch-118-dt.html",null,1563297547],
["11366909","ingunn","https://ingunnsinekort.blogspot.com/2019/07/sommer-kort-stemplet-med-tre-pynt.html",null,1563317078],
["11367076","Lilian B","https://lillyb46.blogspot.com/2019/07/woywdw.html",null,1563348012],
["11367099","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/07/hot-house-flowers-roses.html",null,1563357369],
["11367120","Linda Mc Enery","http://lindamscreations.blogspot.com/2019/07/pennys-paper-crafty-challenge-439.html",null,1563362364],
["11367137","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/07/its-beginning-to-look-lot-like-christmas.html",null,1563365894],
["11367175","My Other World","https://scrapsdamaryv.blogspot.com/2019/07/pennys-challenges-439.html",null,1563371286],
["11367246","marleen","https://marleenvanwetten.blogspot.com/2019/07/christmas-in-july.html",null,1563388827],
["11367339","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/07/noel.html",null,1563433020],
["11367394","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/07/a-treat-for-two.html",null,1563444253],
["11367400","Priyadarshini","https://simpleartcraft.wordpress.com/2019/07/18/summer-card-2",null,1563446530],
["11367424","Sheryl Hare","https://marchharecards.blogspot.com/2019/07/cute-reindeer-at-craft-challenge.html.html",null,1563454958],
["11367434","Kym","http://kyms-crafty-cards.blogspot.com/2019/07/happy-5th-anniversary.html",null,1563457002],
["11367510","Wies","https://1.bp.blogspot.com/-qucw2nsG0-g/XSzQhNz2e9I/AAAAAAAATuk/fLnr3SIXUnAxEepI818auhzgrun7z779gCKgBGAs/s400/IMG_0780.JPG",null,0],
["11367511","Wies","https://wiescreablog.blogspot.com/2019/07/flappenkaart-in-zomersfeer.html",null,1563477760],
["11367515","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/07/frosty-snowman.html",null,1563479132],
["11367525","Christine Miller","https://withaverygratefulheart.blogspot.com/2019/07/time-to-taco.html",null,1563483451],
["11367530","ingunn","https://ingunnsinekort.blogspot.com/2019/07/note-to-self.html",null,1563484601],
["11367580","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/07/beach-holiday-card.html",null,1563512327],
["11367712","Kim Costello","https://paperbabe.blogspot.com/2019/07/paperbabe-stamps-challenge-98.html",null,1563539026],
["11367728","Cathymac","http://goldeninkspirations.blogspot.com/2019/07/looking-back-at-divinity-designs-july.html",null,1563541220],
["11367732","Wendy F","https://crazy4flowerscards.blogspot.com/2019/07/lotv-shy-fairy.html",null,1563541792],
["11367752","Karthikha","https://loveforkrafts.blogspot.com/2019/07/farewell-best-wishes-card.html",null,1563546971],
["11367765","Kym","http://kyms-crafty-cards.blogspot.com/2019/07/ching-chou-kuiks-digital-stamps_19.html",null,1563549588],
["11367814","Teresa","http://redobsessioncards.blogspot.com/2019/07/golden-poinsettia.html?m=1",null,1563557720],
["11367822","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/07/thank-you-card-using-ctmh-share-joy.html",null,1563560166],
["11367996","Kym","http://kyms-crafty-cards.blogspot.com/2019/07/happy-28th-anniversary-husband.html",null,1563623159],
["11368013","Wendy F","https://crazy4flowerscards.blogspot.com/2019/07/lotv-sneak-peek.html",null,1563625382],
["11368122","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/07/teacher-thank-you-card.html",null,1563659032],
["11368130","J. Atterbury Creations","https://jatterburycreations.blogspot.com/2019/07/scripture-series-in-day-of-christ.html",null,1563661327],
["11368192","Dawn Frost","http://stamp-n-play.blogspot.com/2019/07/bugaboo-christmas-cupcake.html",null,1563687073],
["11368207","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/07/kaartje-voor-nancy.html",null,1563694658],
["11368238","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/07/just-wavin-hello.html",null,1563705034],
["11368241","Scatty Jan","https://scrappyscatty.blogspot.com/2019/07/prudence-jmc-designs.html",null,1563705596],
["11368242","Suzi Mac","https://wwwsuzies.blogspot.com/2019/07/random-act-of-kindness-gift-box.html",null,1563705626],
["11368290","Hazel L","https://hazel-hazelshappyhouse.blogspot.com/2019/07/iaas-monochrome.html",null,1563714116],
["11368296","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/07/one-sheet-wonder-scrapbook-and-cards.html",null,1563714408],
["11368391","jenimc","https://jenicraftroom.blogspot.com/2019/07/dragonfly-gems.html",null,1563728124],
["11368398","Teresa","http://redobsessioncards.blogspot.com/2019/07/youre-star.html?m=1",null,1563729513],
["11368427","elizabeth h","http://warmharted.blogspot.com/2019/07/girls-of-summer.html",null,1563740432],
["11368428","Jen Leeflang","https://jenleeflang.blogspot.com/2019/07/bugaboo-stamps-christmas-in-july-day-2.html",null,1563740533],
["11368431","Jen Leeflang","http://jenleeflang.blogspot.com/2019/07/lil-patch-of-crafty-friends-challenge.html",null,1563741010],
["11368433","Jen Leeflang","http://jenleeflang.blogspot.com/2019/07/bugaboo-stamps-christmas-in-july-day-1.html",null,1563741888],
["11368478","Barbara Bruder","http://artandsoulcreations.blogspot.com/2019/07/teddy-and-his-candy-cane.html",null,1563762788],
["11368512","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/07/its-girl.html",null,1563779512],
["11368538","Maxine D","https://kiwimeskreations.blogspot.com/2019/07/blue-poppies.html",null,1563788556],
["11368576","Archana Sehgal","https://archusart.blogspot.com/2019/07/mixed-media-card-floral-card.html",null,1563797603],
["11368580","Vannessa","http://saffiresstamping.blogspot.com/2019/07/something-else-on-saturday-18-featuring_20.html",null,1563798540],
["11368587","Judy V","https://jvzcreations.blogspot.com/2019/07/polkadoodles-craft-challenge-week-29.html",null,1563801007],
["11368637","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/day-3-christmas-in-july-catch-bug.html",null,1563814280],
["11368638","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/happy-birthday-beautiful-always-fun.html",null,1563814346],
["11368664","Zora","https://lofquisten.blogspot.com/2019/07/en-ny-familjemedlem.html",null,1563821869],
["11368676","Glittertastic","https://glittertastic.blogspot.com/2019/07/grans-70th-birthday.html",null,1563825101],
["11368688","Birgit","https://cardsrstillfun.blogspot.com/2019/07/hipp-hip-hurray-happy-birthday.html",null,1563827584],
["11368691","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/07/mijn-herinneringskaart-voor-de.html",null,1563827898],
["11368709","Shelly Schmidt","https://shellymc2.blogspot.com/2019/07/bugaboo-chirstmas-in-july-day-3-abac.html",null,1563830636],
["11368725","Karthikha","https://loveforkrafts.blogspot.com/2019/07/wall-decor-diy-with-patterned-papers.html",null,1563836032],
["11368744","Gloria Shirr","https://purpleglocreations.blogspot.com/2019/07/hello-friends-are-you-i-hope-everyone.html",null,1563842791],
["11368763","Debbie","https://creativedesignsbystampndeb00.blogspot.com/2019/07/monochromatic-in-winter.html",null,1563852780],
["11368791","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/07/birthday-en-meer.html",null,1563869910],
["11368808","Dawn S","https://dawnscraftybits.blogspot.com/2019/07/digi-choosday-anything-goes.html",null,1563871876],
["11368815","creativEle","https://creativele.blogspot.com/2019/07/anything-goes-at-csd-with-eating.html",null,1563873057],
["11368854","Craftartista","https://craftartista.blogspot.com/2019/07/possibilities.html",null,1563878617],
["11368865","Wendy F","http://crazy4flowerscards.blogspot.com/2019/07/lotv-sneak-peep.html",null,1563881562],
["11368942","Rijacki Ledum","https://rijacki.blogspot.com/2019/07/special-ttcrd.html",null,1563893336],
["11368948","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com/2019/07/making-it-merry-and-bright.html",null,1563894970],
["11368949","TracyM 6773 (3)","https://tracyscraftyadventures.blogspot.com/2019/07/a-little-bit-more-merry-and-bright.html",null,1563894996],
["11368971","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2294516447264608/?type=3&theater",null,1563902944],
["11368974","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/day-4-christmas-in-july-catch-bug.html",null,1563903405],
["11369018","Anna","https://nonsolocard.blogspot.com/2019/07/una-barchetta-per-le-caramelle.html",null,1563912481],
["11369036","Rijacki: Bathing Beauty","https://rijacki.blogspot.com/2019/07/bathing-beauty.html",null,1563921170],
["11369039","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2019/07/embossed-flowers.html",null,1563921738],
["11369060","Judy V","https://jvzcreations.blogspot.com/2019/07/cute-as-button-facebook-challenge-july.html",null,1563928468],
["11369069","Angie's Creations","https://angiescreationsblog.blogspot.com/2019/07/colorful-diamond-friends-card.html#links",null,1563933263],
["11369071","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/07/cherish-everyday.html",null,1563934133],
["11369224","RachelTaylor","https://blossomcards.blogspot.com/2019/07/bag-time.html#links",null,1563965245],
["11369248","Larissa","https://car-d-elicious.blogspot.com/2019/07/gerda-steiner-designs-snail-mail.html",null,1563970441],
["11369282","The Creative Twins","https://thecreativetwins.blogspot.com/2019/07/puppy-slider-card.html",null,1563976959],
["11369293","Mindy Baxter","https://www.mycreativescoop.com/beach-scene-with-copics-and-distress-oxide-video-tutorial/",null,1563979054],
["11369303","Creative world by Željka","https://creativemomanddaughter.blogspot.com/2019/07/week-30-digi-choosday-anything-goes.html",null,1563979829],
["11369306","Creative world by Željka","https://creativemomanddaughter.blogspot.com/2019/07/wk-14-anything-goes-crafting-challenge.html",null,1563980160],
["11369317","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/day-5-christmas-in-july-catch-bug.html",null,1563983678],
["11369414","Nancy Edwards","https://pinkpanoply.blogspot.com/2019/07/happy-july-24th-mo-manning-pioneer-girl.html",null,1564013939],
["11369438","Priyadarshini","https://simpleartcraft.wordpress.com/2019/07/25/3960",null,1564026811],
["11369441","Glenda Atkins","https://gilbyscorner.blogspot.com/2019/07/bugaboo-christmas-in-july-wednesday.html",null,1564027686],
["11369488","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/07/bath-time.html",null,1564048220],
["11369499","Emma R","https://emgoescardmaking.blogspot.com/2019/07/happy-30th.html",null,1564052158],
["11369539","TracyM 6773 (4)","https://tracyscraftyadventures.blogspot.com/2019/07/its-time-to-get-little-bit-dark-with.html",null,1564061858],
["11369567","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/day-6-christmas-in-july-catch-bug.html",null,1564070726],
["11369573","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/i-love-you-to-moon-aud-sentiments-232.html",null,1564071767],
["11369731","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/07/man-about-town.html",null,1564123281],
["11369796","Craftartista","https://craftartista.blogspot.com/2019/07/dream-big.html",null,1564138561],
["11369825","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/07/poinsettia.html",null,1564148700],
["11369830","Larissa","https://car-d-elicious.blogspot.com/2019/07/niek-heeft-zijn-zwemdiploma.html",null,1564149833],
["11369846","elizabeth h","http://warmharted.blogspot.com/2019/07/gathering-rosehips.html",null,1564153527],
["11369853","elizabeth h","http://warmharted.blogspot.com/2019/07/just-me-and-my-cat.html",null,1564154655],
["11369876","Karen C","http://busyinspirations.blogspot.com/2019/07/christmas-in-july-day-7.html",null,1564158795],
["11369895","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/you-make-life-fun-crafty-catz-challenge.html",null,1564165446],
["11369898","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/my-cat-owns-my-heart-colour-crazy.html",null,1564166627],
["11369903","Craftartista","https://craftartista.blogspot.com/2019/07/christmas-in-july.html",null,1564168417],
["11369907","Hazel","https://craftyhazelnut.blogspot.com/2019/07/chnc-challenge-447.html",null,1564169563],
["11369924","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/day-7-christmas-in-july-catch-bug.html",null,1564172610],
["11369985","Donna R","https://indianainking.blogspot.com/2019/07/final-cij-for-bugaboo.html",null,1564189558],
["11370008","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/07/birthday-card-for-male-using-ctmh_26.html",null,1564203982],
["11370028","nnalorac","https://somethinggonemissing.blogspot.com/2019/07/dis-digi-designs-challenge-images-with.html",null,1564214530],
["11370039","Hazel","https://craftyhazelnut.blogspot.com/2019/07/chnc-challenge-448.html",null,1564217905],
["11370050","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/07/for-you.html",null,1564222115],
["11370104","Hazel","https://craftyhazelnut.blogspot.com/2019/07/a-summer-birthday.html",null,1564232245],
["11370184","CarolG NZ","https://creationsnz.blogspot.com/2019/07/bitz-1.html",null,1564239396],
["11370247","Jolanda","https://jolandasblogs.blogspot.com/2019/07/romance-en-provence.html",null,1564254610],
["11370290","Teresa","http://redobsessioncards.blogspot.com/2019/07/pinks-and-greys.html?m=1",null,1564259184],
["11370294","Teresa","http://redobsessioncards.blogspot.com/2019/07/winter-snowman.html?m=1",null,1564260026],
["11370297","Teresa","http://redobsessioncards.blogspot.com/2019/07/sunshine-days.html?m=1",null,1564260827],
["11370525","Faith A","https://daffodil-faitha.blogspot.com/2019/07/magpie-stamping.html",null,1564321289],
["11370562","Archana Sehgal","https://archusart.blogspot.com/2019/07/mixed-media-card-using-biker-chic.html",null,1564329914],
["11370623","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/07/leo-anime-vip-bundle-scrappers-delights.html",null,1564340779],
["11370634","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/07/feeling-sketchy.html",null,1564345408],
["11370642","Bisse","https://vasemmalkadella.blogspot.com/2019/07/lintu-kortti-onnitteluun.html",null,1564346933],
["11370643","AuntySue","https://auntysuescraftcavern.blogspot.com/2019/07/colour-crazy-challenge-mirror-mirror.html",null,1564347036],
["11370648","Rachelle Oltean","https://redcre8s.blogspot.com/2019/07/wedding-card-mft-stamps-birds-of.html",null,1564348081],
["11370655","Judy V","https://jvzcreations.blogspot.com/2019/07/cute-as-button-designer-inspiration.html",null,1564349102],
["11370664","Craftartista","https://craftartista.blogspot.com/2019/07/born-to-be-crafter.html",null,1564351152],
["11370751","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/07/een-dochter.html",null,1564391385],
["11370773","Sharmitha @ Crafter's Icon","https://craftersicon.blogspot.com/2019/07/mixed-media-tag.html",null,1564400213],
["11370774","Sharmitha @ Crafter's Icon","https://craftersicon.blogspot.com/2019/07/pinspirational-challenge-243.html",null,1564400364],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}