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("29Jun2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MjlqdW4yMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("8 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("29Jun2019");
blenza_linkies("thumb","lozzy","29Jun2019","1152996649",3,
[
// MjlqdW4yMDE5
["11361797","Rosina","https://rosina-scrapcards.blogspot.com/2019/07/gefeliciteerd-met-je-verjaardag.html",null,1561968073],
["11361804","Cass","https://casscreatingnow.blogspot.com/2019/07/pearly-sparkles-challenge-july-2019.html",null,1561971940],
["11361825","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/07/challenge-31-bei-do-all-kreatives-auf.html",null,1561976546],
["11361837","Lozzy","https://ninspapercrafting.blogspot.com/2019/07/a-bit-more-time-to-craft-challenge.html",null,0],
["11361838","jenimc","https://jenicraftroom.blogspot.com/2019/07/snowdrop-thank-you.html",null,1561979335],
["11361849","Lisa Bird","https://craftycard-designs.co.uk/world-wildlife-volume-iii-just-for-you/",null,1561981932],
["11361870","Jasmina","https://handmadebyjasmina.blogspot.com/2019/07/fb-papirckarice-37-izziv-okrogla.html",null,1561986082],
["11361896","nnalorac","https://somethinggonemissing.blogspot.com/2019/07/totally-special.html",null,1561990979],
["11361907","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/07/nuovo-challenge-su-magnolia-forever.html",null,1561992126],
["11361909","My Other World","https://scrapsdamaryv.blogspot.com/2019/07/creative-with-stamps-40.html",null,1561992374],
["11361941","Granne","https://aavamaki.blogspot.com/2019/07/sheepski-designs-early-christmas-winter.html",null,1562002120],
["11361951","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/07/thinking-of-you-card-using-conie-fong.html",null,1562004769],
["11361989","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/slow-down-soak-up-sun-do-all-creative-31.html",null,1562009602],
["11361991","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/thanks-for-protecting-always-fun.html",null,1562009662],
["11361993","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/with-sympathy-and-love-creative-with.html",null,1562009839],
["11361996","Carole J","https://cjcrafty.blogspot.com/2019/07/crafts-galore-encore-winnies-surprise.html",null,1562010416],
["11362009","Gale K","https://galesstampingcorner.blogspot.com/2019/07/elena.html",null,1562014769],
["11362013","Carole J","https://cjcrafty.blogspot.com/2019/07/gecko-galz-midsummers-dream.html",null,1562015155],
["11362018","Helen","https://helenscrafthaven.blogspot.com/2019/07/sending-all-my-love.html",null,1562016085],
["11362038","CarolG NZ","https://creationsnz.blogspot.com/2019/07/party-frog.html",null,1562019650],
["11362045","Christine Miller","https://withaverygratefulheart.blogspot.com/2019/07/bitty-bouquets-happy-birthday.html",null,1562021666],
["11362104","Sarah N","https://papertreedotblog.wordpress.com/2019/07/02/garden-faeries/",null,1562039480],
["11362139","Craftartista","https://craftartista.blogspot.com/2019/07/mixed-media-on-paper-canvas-and-bottle.html",null,1562056765],
["11362159","Cristina","https://rutscht.blogspot.com/2019/07/viviendo-el-momento.html",null,1562061213],
["11362203","NanaConnie","https://mygrammysattic.blogspot.com/2019/07/taking-hike.html",null,1562072098],
["11362212","The Creative Twins","https://thecreativetwins.blogspot.com/2019/07/cas-bunch-of-roses-card.html",null,1562073716],
["11362225","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/07/nuovo-challenge-di-simply-magnolia.html",null,1562075344],
["11362286","Junebug Creations","https://junebugcreations.wordpress.com/2019/07/03/ics-blog-hop-punch-me-out",null,1562084020],
["11362313","coops","https://coopsclutteredcorner.blogspot.com/2019/07/passion-for-promarkers-make-it-square.html",null,1562093189],
["11362320","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/doing-everything-that-makes-us-happy.html",null,1562094405],
["11362333","Kelly","http://serendipityandwhimsy.weebly.com/home/its-a-newt-challenge",null,0],
["11362335","Shamita","https://spiralcreativity.blogspot.com/2019/07/waving-mermaid.html",null,1562100124],
["11362336","Kelly","http://serendipityandwhimsy.weebly.com/home/hooray-for-today",null,1562100515],
["11362436","Payal Mittal ","http://payalmanojmittal.blogspot.com/2019/06/timeless-treasure.html?m=1",null,1562130941],
["11362447","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/07/polkadoodles-ruby.html",null,1562133297],
["11362451","Desire Fourie","https://desiref.blogspot.com/2019/07/blessings-guest-designing-over-at-my.html",null,1562134563],
["11362452","Payal Mittal 2","https://payalmanojmittal.blogspot.com/2019/06/all-u-need-is-fairy-dust.html?m=1",null,1562134627],
["11362494","Janes Journal","https://jane-janesjournal.blogspot.com/2019/07/sunshine-and-sicily.html",null,1562147432],
["11362496","davinia","https://ifindoubtbling.blogspot.com/2019/07/pack-and-bag-and-we-are-outta-here.html",null,1562148584],
["11362531","Linda Mc Enery","http://lindamscreations.blogspot.com/2019/07/pennys-paper-crafty-challenge-437.html",null,1562152236],
["11362553","Julie T","https://juliescraftyspot.blogspot.com/2019/07/day-before-chistmas-edwin-magnolia.html",null,1562155116],
["11362584","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/07/summer-fun-at-crafty-gals-corner.html",null,1562160804],
["11362596","Priyadarshini","https://simpleartcraft.wordpress.com/2019/07/03/best-wishes-card",null,1562162988],
["11362683","Cards By MI","https://kompis-kort-by-mi.blogspot.com/2019/07/digital-image-over-at-paper-shelter.html",null,1562176273],
["11362694","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/07/er-is-weer-een-nieuwe-wedstrijd-gestart.html",null,1562178380],
["11362724","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/all-you-need-is-crafty-gals-corner.html",null,1562190303],
["11362729","Craftartista: Mia","https://craftartista.blogspot.com/2019/07/ballerina-and-queens.html",null,1562191042],
["11362800","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/07/winter-wonderland.html",null,1562221849],
["11362827","Creative Smiles","https://creativesmiles2.blogspot.com/2019/07/anything-goes-at-lavinia-world-early.html",null,1562234875],
["11362831","Alina","https://alliellacraft.blogspot.com/2019/07/express-yourself-4-lavinia-world.html",null,1562237972],
["11362884","elizabeth h","http://warmharted.blogspot.com/2019/07/misti-mermaid.html",null,1562253565],
["11362921","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/celebrate-today-and-always.html",null,1562260501],
["11362935","Wies","https://wiescreablog.blogspot.com/2019/07/beterschap.html",null,1562265643],
["11362943","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2259679904081596/?type=3&theater",null,1562268792],
["11362979","Gloria Shirr - 2nd","https://purpleglocreations.blogspot.com/2019/07/love-card-using-conie-fong-winter.html",null,1562275920],
["11362988","Majalena","https://magdaandscraping.blogspot.com/2019/07/75-thank-you.html",null,1562281099],
["11363042","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/07/sun-kissed.html",null,1562312019],
["11363081","Rituparna","https://theenticingcreation.blogspot.com/2019/07/mixedmedia-panel.html",null,1562316111],
["11363088","Dawn S","https://dawnscraftybits.blogspot.com/2019/07/colour-crazy-craft-challenge-week-26.html",null,1562318222],
["11363129","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com/2019/07/a-berry-cas-christmas.html",null,1562331649],
["11363146","TracyM 6773 (3)","https://tracyscraftyadventures.blogspot.com/2019/07/a-merry-mistletoe-christmas.html",null,1562335297],
["11363148","elizabeth","https://worldofelizabeth.blogspot.com/2019/07/my-project-as-dt-for-ccc-digi-creations.html",null,1562336162],
["11363170","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/thinking-of-you-crafty-catz-challenge.html",null,1562343309],
["11363179","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/thanks-for-jumping-in-bugaboo-free.html",null,1562344561],
["11363186","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/praying-for-your-rapid-recovery-colour.html",null,1562345004],
["11363219","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/07/birthday-card-for-male-using-ctmh.html",null,1562348706],
["11363252","Claudia","https://knutselmeisjes.blogspot.com/2019/07/you-are-dino-mite.html",null,1562353538],
["11363384","DIANA L.","https://dianamlarson.blogspot.com/2019/07/crinkle-ribbon-lovers.html",null,1562384842],
["11363644","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/07/thinking-of-you-card-using-ctmh-seaside.html",null,1562447715],
["11363657","jenimc","https://jenicraftroom.blogspot.com/2019/07/stars-and-stripes.html",null,1562450396],
["11363674","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/07/chibi-new-release-july-scrappers.html",null,1562460401],
["11363678","Karthikha","https://loveforkrafts.blogspot.com/2019/07/flip-and-fold-album.html",null,1562461797],
["11363761","Rosina","https://rosina-scrapcards.blogspot.com/2019/07/new-home.html",null,1562489410],
["11363778","Hazel L","https://hazel-hazelshappyhouse.blogspot.com/2019/07/iaas-christmas-in-july.html",null,1562497561],
["11363815","Desire Fourie","https://desiref.blogspot.com/2019/07/merry-and-bright-design-team-project.html",null,1562504864],
["11363884","elizabeth h","http://warmharted.blogspot.com/2019/07/pixie-dust.html",null,1562515004],
["11363914","monique","https://moniqueschattefor.blogspot.com/2019/07/beach-babe.html",null,1562520680],
["11363930","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/so-happy-we-are-friends-catch-bug-sss.html",null,1562523739],
["11363951","elizabeth h","http://warmharted.blogspot.com/2019/07/boys-of-summer.html",null,1562529640],
["11363990","Angie's Creations","https://angiescreationsblog.blogspot.com/2019/07/christmas-in-july.html#links",null,1562533455],
["11364015","Craftartista: Mia","https://craftartista.blogspot.com/2019/07/we-are-all-mad-here.html",null,1562538482],
["11364021","Hazel","https://craftyhazelnut.blogspot.com/2019/07/chnc-challenge-445.html",null,1562539907],
["11364028","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/07/snow-family-christmas.html",null,1562542940],
["11364059","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/07/love-card-using-ctmh-july-sotm-bear-hug.html",null,1562557998],
["11364091","meg","https://bitsandpiecec.blogspot.com/2019/07/thank-you-at-mmm.html",null,1562569287],
["11364099","Janes Journal","https://jane-janesjournal.blogspot.com/2019/07/spring-morphs-into-summer.html",null,1562570839],
["11364146","Helen","https://craftinghelen.blogspot.com/2019/07/new-leanns-world-101-challenge-blog.html",null,1562589895],
["11364158","Kym","https://kyms-crafty-cards.blogspot.com/2019/07/cd-sunday-challenge-7-july-2019.html",null,1562592812],
["11364203","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/so-grateful-for-everything-always-fun.html",null,1562602817],
["11364207","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/07/gastdesigner-bij-cheerful-sketches.html",null,1562604593],
["11364269","Craftartista: Mia","https://craftartista.blogspot.com/2019/07/coffee-and-package-delivered-to-artista.html",null,1562626133],
["11364344","Željka","https://creativemomanddaughter.blogspot.com/2019/07/week-28-digi-choosday-anything-goes.html",null,1562660930],
["11364345","Željka","https://creativemomanddaughter.blogspot.com/2019/07/week-13-anything-goes-challenge-at-gem.html",null,1562661205],
["11364352","Dawn S","https://dawnscraftybits.blogspot.com/2019/07/digi-choosday-happy-birthday-card.html",null,1562663844],
["11364356","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/07/birthday-floral-card.html",null,1562664577],
["11364364","Rituparna","https://theenticingcreation.blogspot.com/2019/07/floral-card.html",null,1562666845],
["11364393","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/07/een-kaart-gemaakt-met-op-de-achtergrond.html",null,1562675265],
["11364434","Karthikha","https://loveforkrafts.blogspot.com/2019/07/1st-birthday-card-in-box.html",null,1562688665],
["11364465","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/07/love-card-using-ctmh-july-sotm-bear-hug_9.html",null,1562695342],
["11364477","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2268651233184463/?type=3&theater",null,1562699180],
["11364486","Maia","https://hetvalkennest.blogspot.com/2019/07/einde-schooljaar-dusdiverse-cadeautjes.html",null,1562702436],
["11364507","Karen @ MisplacedMojo.com","https://misplacedmojo.com/2019/07/09/sitting-here-thinking-of-you-with-hero-arts/",null,1562710382],
["11364525","Steffi H.","https://www.flickr.com/photos/spinkymausi/48243318266/in/dateposted/",null,1562716079],
["11364591","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/07/never-forget-in-honor-of-911.html",null,1562737718],
["11364601","Jootje","https://jootjesscrapcards.blogspot.com/2019/07/pinkanything-goes.html",null,1562740032],
["11364691","Majda","https://majdinustvarjalninemir.blogspot.com/2019/07/poletna-darilna-vrecka.html",null,1562764197],
["11364719","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/07/gastdesigner-bij-carlin.html",null,1562769741],
["11364725","Sheryl Hare","https://marchharecards.blogspot.com/2019/07/one-for-girls-at-i-love-promarkers.html",null,1562770937],
["11364739","Cinderella 1","https://cinderellasdreamcardsblog.blogspot.com/2019/07/jumping-for-joy-springend-van-vreugde.html",null,1562774032],
["11364829","Teresa","http://redobsessioncards.blogspot.com/2019/07/life-and-lemons.html?m=1",null,1562787858],
["11364868","Noelene Apap","https://noeleneapap.blogspot.com/2019/07/sewing-avery.html",null,1562814577],
["11364883","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/07/voyage-of-discovery.html",null,1562824677],
["11364886","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/07/merry-christmas_11.html",null,1562827439],
["11364890","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/07/double-dutch-fold-wedding-card-using.html",null,1562830471],
["11364914","Jackie T","http://tinyrosecr.blogspot.com/2019/07/not-just-cards-challenge-blog-july.html",null,1562846411],
["11364940","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/07/un-po-di-relax-in-vasca.html",null,1562855862],
["11365077","Aunty Sue","https://auntysuescraftcavern.blogspot.com/2019/07/passion-for-promarkers-500-make-it.html?m=1",null,1562887269],
["11365178","Rose Andrew","http://cardsforallreason.blogspot.com/2019/07/winter-tag.html",null,1562921105],
["11365245","jenimc","https://jenicraftroom.blogspot.com/2019/07/summer-teatime.html",null,1562935968],
["11365300","Craftartista: Mia","https://craftartista.blogspot.com/2019/07/tango-and-tags.html",null,1562942334],
["11365350","Tindaloo","https://tindaloo.blogspot.com/2019/07/butterfly-fairy.html",null,1562949668],
["11365372","monique","https://moniqueschattefor.blogspot.com/2019/07/north-pole.html",null,1562951431],
["11365444","Sheryl Hare","https://marchharecards.blogspot.com/2019/07/ribbon-and-sparkle.html",null,1562957889],
["11365446","Sheryl Hare","https://marchharecards.blogspot.com/2019/07/gdt-at-through-craft-room-door.html",null,1562958104],
["11365457","Dawn Frost","http://stamp-n-play.blogspot.com/2019/07/sheepski-designs-perfect-pointe.html",null,1562960626],
["11365476","Sabina","https://artbysabina.blogspot.com/2019/07/njc-july-challenge.html",null,1562962211],
["11365489","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/07/vandaag-maar-weer-eens-een-kerstkaart.html",null,1562963771],
["11365507","Zora","https://lofquisten.blogspot.com/2019/07/heroes-villians.html",null,1562966050],
["11365553","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/07/happy-new-year-fireworks.html",null,1562979832],
["11365615","Hazel","https://craftyhazelnut.blogspot.com/2019/07/chnc-challenge-446.html",null,1563006451],
["11365617","Mynn xx","https://mynnettekitchenonastampage.blogspot.com/2019/07/washi-tape-series-03-borders-butterfly.html",null,1563007343],
["11365660","Kym","https://kyms-crafty-cards.blogspot.com/2019/07/happy-birthday-husband.html",null,1563015381],
["11365669","Sue T","https://suescraftycorner-sue.blogspot.com/2019/07/chameleon.html",null,1563017492],
["11365676","Chris","https://andheresoneimadeearlier.blogspot.com/2019/07/wonderful.html",null,1563018350],
["11365774","Judy V","https://jvzcreations.blogspot.com/2019/07/the-button-collector-from-beccys-place.html",null,1563026673],
["11365806","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2275705442479042/?type=3&theater",null,1563032295],
["11365825","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/07/celebrate-happy-anniversary.html",null,1563036035],
["11365837","Made By Mandy","https://amandacruxton2.blogspot.com/2019/07/guest-designer-at-ssw-2.html",null,1563037809],
["11365896","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/07/june-progressive-freebie-at-scrappers.html",null,1563043610],
["11365947","Teresa","https://redobsessioncards.blogspot.com/2019/07/about-boy.html?m=1",null,1563052009],
["11365950","Teresa","http://redobsessioncards.blogspot.com/2019/07/happy-memories.html?m=1",null,1563052605],
["11366012","Teresa","https://redobsessioncards.blogspot.com/2019/07/aloha.html?m=1",null,1563081141],
["11366061","Made By Mandy","https://amandacruxton2.blogspot.com/2019/07/guest-dt-at-my-besties-art-espana.html",null,1563089962],
["11366078","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/07/een-kaartje-is-leuker-dan-email.html",null,1563097963],
["11366116","Kym","http://kyms-crafty-cards.blogspot.com/2019/07/happy-birthday-dad.html",null,1563106156],
["11366157","CreaNancy","https://creanancy.blogspot.com/2019/07/cheerful-sketches-reminder-challenge.html",null,1563109745],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}