document.write('\n');
document.write('\n');
var blenza_opt_namemax = 80;
var blenza_opt_linkmax = 152;
var bzloc_youfirst = "You're first";
var bzloc_younext = "You're next";
var bzloc_ifparticip = "If you are participating in";
var bzloc_toaddlink = "To add your entry to the list";
var bzloc_enter = "Enter";
var bzloc_next = "Next";
var bzloc_siteusing2a = "fill in the form below and press ";
var bzloc_siteusing2 = bzloc_siteusing2a + bzloc_enter + ".";
var bzloc_thumb2a = " to add your thumbnail.";
var bzloc_thumb2 = bzloc_siteusing2a + bzloc_next + bzloc_thumb2a;
var bzloc_siteusing3 = "click here and fill in the form that pops up";
var bzloc_yourname = "Your name";
var bzloc_yoururl = "Your URL";
var bzloc_comment = "Please leave a comment after linking... Thank you!";
var bzloc_checkname = "Please enter your name.";
var bzloc_namelength = "The length of your name must be less than or equal to";
var bzloc_checkurl = "Please enter your link URL.";
var bzloc_urllength = "The length of your URL must be less than or equal to";
var bzloc_urlprefix = "Link URL must begin with 'http://'";
var bzloc_sharedmeme = "Shared Meme - Click to Subscribe";
var bzloc_clicktodisp = "Click here to display the links for this post";
var bzloc_upgrademult = "You may upgrade to display more than one Linky at a time";
var bzloc_owner = "Blog Owner";
var bzloc_export = "If you wish to export this list to HTML, click here";
var bzloc_disablemsg = "Click here to disable this message";
var bzloc_whatthis = "What is this?";
var bzloc_expiry = "Linky Widget expiration";
var bzloc_winner = "Winning entry";
var bzloc_caching = "Caching system in use... links may take a minute to post";
var bzloc_thumbnext = "Click here to add your thumbnail if the pop-up does not appear.";
var bzloc_cktool = "Click here for Mister Linky's name/URL cookie removal tool.";
var bzloc_nopopwin = "Unable to open the thumbnail popup window. Check your browser settings.";
var bzloc_maint = "Please read about the upcoming system maintenance";
var bzloc_bugcheck = "An internal error has occurred. Please report this at http://www.misterlinky.net/helpdesk/";
var bzloc_dashboard = "Dashboard";
var bzloc_clickdisp = "Click to display the links and settings for this widget";
var bzloc_policy = "Check to accept use/privacy policy (click to read)";
var bzloc_nopolicy = "You must accept the use/privacy policy to use this widget.\n\nClick the link below to read the policy and check the box to accept.\n\nThen press Enter again to add your link to the list.\n\nNOTE: If you like, you can click a button on the policy page\nto save a cookie and remember you've accepted the policy.";
blenza_ifr = null;
var blenza_newwin = 1;
function getIEVersion(){
var agent = navigator.userAgent;
var reg = /MSIE\s?(\d+)(?:\.(\d+))?/i;
var matches = agent.match(reg);
if (matches != null) {
return { major: matches[1], minor: matches[2] };
}
return { major: "-1", minor: "-1" };
}
var ie_version = getIEVersion();
var is_ie10 = ie_version.major == 10;
var is_ie9e = ie_version.major > 0 && ie_version.major <= 9;
if (!blenza_inited) {
var blenza_whoName = null;
var blenza_whoEmail = null;
var blenza_whoURL = null;
var blenza_user = null;
var blenza_xurl = null;
var blenza_showredx = true;
var blenza_color = null;
var blenza_thumbGetter = null;
var blenza_thumbExternal = null;
var blenza_thumbRoot = new Array();
var blenza_thumbApprove = null;
var blenza_border = "#000";
var blenza_gray = "#888";
var blenza_meme_unset = new Array();
var blenza_meme_id = new Array();
var blenza_meme_name = new Array();
var blenza_meme_text = new Array();
var blenza_meme_shared = new Array();
var blenza_nourl = new Array();
var blenza_hideurl = new Array();
var blenza_ord = 0;
var blenza_expiration = null;
var blenza_memelinks = true;
var blenza_winnerName = null;
var blenza_winnerUrl = null;
var blenza_bycol = 1;
var blenza_fliplinks = 0;
var blenza_alphasort = 0;
blenza_dynamic = false;
var metas = document.getElementsByTagName("meta");
for (var i = 0; i < metas.length; i++) {
if (metas[i].name == "blogger-template")
blenza_dynamic = metas[i].content == "dynamic";
}
}
var blenza_ntu = new Array();
function blenza_xhr()
{
if (window.XMLHttpRequest) return new XMLHttpRequest();
else if (window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP");
else return null;
}
function blenza_xml(text)
{
if (text.message != null) text = text.message;
var xml;
if (text.length >= 5 && text.substring(0, 5) == "request-error" + text + "";
return blenza_parse(xml);
}
function blenza_parse(xml)
{
var doc;
if (window.DOMParser) {
var p = new DOMParser();
doc = p.parseFromString(xml,"text/xml");
}
else {
doc = new ActiveXObject("Microsoft.XMLDOM");
doc.async = false;
doc.loadXML(xml);
}
return doc;
}
function blenza_send(url, data, postid, cb)
{
// hack: if it's IE9 or earlier, just do a get and be done with it
if (is_ie9e) {
var img = document.getElementById("status-" + postid);
if (img != null) {
var now = new Date().getTime();
img.src = url + "?" + data + "&iehack=true&ts=" + now;
}
cb(blenza_xml("success"));
return;
}
try {
var method = data ? "POST" : "GET";
var req = blenza_xhr();
req.open(method, url, true);
if ("withCredentials" in req) {
req.withCredentials = true;
}
if (method == "POST")
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");
req.onreadystatechange = function() {
if (req.readyState !== 4) return;
if (req.status != 200) {
cb(blenza_xml("Unexpected request status " + req.status));
}
else if (req.responseXML != null) {
cb(req.responseXML);
}
else {
cb(blenza_xml(req.responseText));
}
};
req.send(data);
}
catch (e) {
msg = e.message;
if (msg == null || msg.length == 0) msg = "Unknown error";
cb(blenza_xml(msg));
}
}
function blenza_getValue(ele, name)
{
if (ele == null) return null;
var elems = ele.getElementsByTagName(name);
if (elems == null) return null;
var one = elems.item(0);
if (one == null || one.firstChild == null) return null;
if (one.firstChild.data != null) return one.firstChild.data;
else return null;
}
function blenza_checkStatus(ele)
{
if (ele == null) {
alert("Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: could not check status");
return false;
}
var sts = blenza_getValue(ele, "status");
if (sts == "success")
return true;
var err = blenza_getValue(ele, "error");
if (sts == "request-error")
msg = "An error occurred while processing the request:\n" + err + "\nPlease try your request again later";
else if (sts == "internal-error")
msg = "Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: " + err;
else if (err == "Duplicate entry")
msg = "That entry has already been added to the list";
else
msg = "Error: " + err;
alert(msg);
return false;
}
function blenza_doInsert(form, xurl, postid, cb)
{
var data = "";
for (i = 0; i < form.elements.length; i++) {
var ele = form.elements[i];
var name = ele.name;
if (name.length < 3 || name.substring(0,3) != "ml_") continue;
if (data.length > 0) data += "&";
data += name.substring(3) + "=";
var val;
if (ele.type == "checkbox") {
if (ele.checked) val = ele.value;
else val = "";
}
else val = ele.value;
data += escape(val);
}
blenza_send(xurl + "/entry_api.php", data, postid, cb);
}
function blenza_switcheroo(off, on)
{
var ele1 = blenza_elem(off);
ele1.style.display = "none";
var ele2 = blenza_elem(on);
ele2.style.display = "block";
}
function blenza_setNextone(pi, name, url)
{
var nx = blenza_elem("nextone-" + pi);
if (nx != null) {
nx.innerHTML = '' + name + '';
}
}
function blenza_reThumb(a, pi)
{
var form = document.getElementById("blenza_" + pi);
if (form == null) {
alert("Cannot locate form, please report internal error to Mister Linky");
return false;
}
form.action = blenza_xurl + "/thumbwin.php";
var name;
if (form.ml_name) name = form.ml_name.value;
else name = form.name.value;
if (! blenza_checkName(name)) return false;
var url;
if (form.ml_url) url = form.ml_url.value;
else url = form.url.value;
if (! blenza_checkUrl(pi, url)) return false;
a.href = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + escape(name) + "&url=" + escape(url);
return true;
}
function blenza_policyCheck(id)
{
var chk = document.getElementById("policy" + id);
if (chk) chk.checked = true;
}
// new and improved!
function blenza_doEnter(form) // false on error
{
if (!form) return;
try {
var name = null;
if (form.ml_name && form.ml_name.value) name = form.ml_name.value;
var url = null;
if (form.ml_url && form.ml_url.value) url = form.ml_url.value;
var pi = form.ml_postid.value;
var xurl = form.ml_xurl.value;
if (! blenza_checkName(name)) return false;
if (pi == null || xurl == null) {
alert(bzloc_bugcheck);
return false;
}
if (!form.policy.checked) {
alert(bzloc_nopolicy);
return false;
}
if (! blenza_checkUrl(pi, url)) return false;
if (form.ml_src.value != "thumb") {
var cb = function(doc) {
if (! blenza_checkStatus(doc)) return;
blenza_setNextone(pi, name, url);
blenza_switcheroo("theform-" + pi, "theform2-" + pi);
}
blenza_doInsert(form, xurl, pi, cb);
}
else {
var popurl = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + name + "&url=" + escape(url);
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin == null) alert(bzloc_nopopwin);
}
}
catch (e) {
alert("Uncaught error: " + e.message + "\n" + e.stack);
}
return false;
}
function blenza_checkName(name)
{
if (name.length == 0) {
alert(bzloc_checkname);
return false;
}
if (name.length > blenza_opt_namemax) {
alert(bzloc_namelength + " " + blenza_opt_namemax);
return false;
}
return true;
}
function bz_starts(str, pre)
{ return (str.substring(0, pre.length) == pre); }
function blenza_checkUrl(pi, url)
{
if (blenza_nourl[pi] > 0) return true;
if (url.length == 0) {
alert(bzloc_checkurl);
return false;
}
if (url.length > blenza_opt_linkmax) {
alert(bzloc_urllength + " " + blenza_opt_linkmax);
return false;
}
if (!bz_starts(url, "http://") && !bz_starts(url, "https://")) {
alert(bzloc_urlprefix);
return false;
}
if (url == "http://www.") {
alert(bzloc_checkurl);
return false;
}
return true;
}
function blenza_elem(id)
{
return document.getElementById(id);
}
function blenza_display(xurl, owner, pi)
{
var popwin = window.open(xurl + "/display.php?owner=" + owner + "&postid=" + pi, "blenza_linkypop", "height=360,width=400,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null) {
return;
}
}
function blenza_getthumb(owner, pi, secret)
{
var popurl = blenza_thumbGetter + "getthumb.php?owner=" + owner + "&postid=" + pi + "&secret=" + secret + "&init=true";
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null)
setTimeout(function(){ blenza_getthumb2(popwin, popurl); }, 3000);
}
function blenza_getthumb2(popwin, popurl)
{
try {
if (popwin == null) return;
if (popwin.innerHeight != null) return;
}
catch (err) {
return;
}
}
function blenza_setwho(n, e, u)
{
blenza_whoName = n;
blenza_whoEmail = e;
blenza_whoURL = u;
}
function blenza_setuser(v)
{
blenza_user = v;
}
function blenza_setredx(v)
{
blenza_showredx = v;
}
function blenza_setxurl(v)
{
blenza_xurl = v;
}
function blenza_setcolor(v)
{
blenza_color = v;
}
function blenza_setthumbs(pi, g, e, r, a)
{
blenza_thumbGetter = g;
blenza_thumbExternal = e;
blenza_thumbRoot[pi] = r;
blenza_thumbApprove = (a > 0);
}
function blenza_setmeme(pi, id, name, text, shared)
{
blenza_meme_unset[pi] = false;
blenza_meme_id[pi] = id;
blenza_meme_name[pi] = name;
blenza_meme_text[pi] = text;
blenza_meme_shared[pi] = shared;
}
function blenza_unsetmeme(pi)
{
blenza_meme_unset[pi] = true;
blenza_meme_id[pi] = null;
blenza_meme_name[pi] = null;
blenza_meme_text[pi] = null;
blenza_meme_shared[pi] = null;
}
function blenza_setYourUrl(pi, nourl, hideurl)
{
blenza_nourl[pi] = nourl;
blenza_hideurl[pi] = hideurl;
}
function blenza_setExpires(str)
{
blenza_expiration = str;
}
function blenza_setMemelinks(v)
{
blenza_memelinks = v;
}
function blenza_setWinner(name, url)
{
blenza_winnerName = name;
blenza_winnerUrl = url;
}
function blenza_setFliplinks(n)
{
blenza_fliplinks = n;
}
function blenza_setAlphasort(n)
{
blenza_alphasort = n;
}
function blenza_setBycol(n)
{
blenza_bycol = n;
}
function blenza_dispExpires()
{
if (blenza_expiration == null) return;
document.write("
" + bzloc_expiry + ": " + blenza_expiration + ".
");
if (blenza_winnerName == null) return;
document.write("' + afterComment + spanCktool);
if (is_ie9e) document.write('
');
if ((src != "easy") && (src != "thumb")) {
document.write("
" + bzloc_caching);
}
document.write('');
blenza_linkies_fini(src, owner, pi, secret, cols, data);
}
function blenza_linkies(src, owner, pi, secret, cols, data)
{
if (pi == "^Preview") data = previewData;
blenza_linkies_wrap1();
blenza_linkies_list(src, owner, pi, secret, cols, data);
if ((src == 'comm') || (src == 'disp')) return;
if (src == 'side')
blenza_linkies_side(src, owner, pi, secret, cols, data, "magic")
else
blenza_linkies_box(src, owner, pi, secret, cols, data, "magic")
blenza_linkies_wrap2();
}
var blenza_inited = true;
try {
blenza_setwho("","","");
blenza_setuser("");
blenza_setxurl("//www.blenza.com:443/linkies");
blenza_setthumbs("14Sep2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRzZXAyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("5 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Sep2019");
blenza_linkies("thumb","lozzy","14Sep2019","905643742",3,
[
// MTRzZXAyMDE5
["11386614","Granne","https://aavamaki.blogspot.com/2019/09/i-put-spell-on-you.html",null,1568534979],
["11386648","Rutscht","https://rutscht.blogspot.com/2019/09/atc-38-de-52.html",null,1568545416],
["11386725","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/09/sparkles-monthly-challenges-ch-120-dt.html",null,1568559032],
["11386756","The Creative Twins","https://thecreativetwins.blogspot.com/2019/09/birthday-shutter-card.html",null,1568564264],
["11386766","The Creative Twins","https://thecreativetwins.blogspot.com/2019/09/bookmark-using-stamp.html",null,1568565234],
["11386792","Wies","https://wiescreablog.blogspot.com/2019/09/doosje-be-challenged.html",null,1568569155],
["11386841","Majalena","http://magdaandscraping.blogspot.com/2019/09/79-i-love-this-couple.html",null,1568577234],
["11386878","Shona Hamill","https://handmadebyhamill.blogspot.com/2019/09/celebrations-with-cutie-pies.html",null,1568582492],
["11386900","Craftartista","https://craftartista.blogspot.com/2019/09/butterflies.html",null,1568589004],
["11386924","Spiral Creativity","https://spiralcreativity.blogspot.com/2019/09/winnie-witch-cat.html",null,1568599747],
["11387005","Lilian B","https://lillyb46.blogspot.com/2019/09/what-lovely-full-moon.html",null,1568623306],
["11387008","ria","http://purpleliciouskingdom.blogspot.com/2019/09/spectember-day-16-autumn-vibes.html",null,1568624053],
["11387011","Monica","https://handmadecardswithlove.blogspot.com/2019/09/dance-like-no-one-is-watching.html",null,1568625718],
["11387022","Sue T","https://suescraftycorner-sue.blogspot.com/2019/09/pixies-snippets-playground.html",null,1568629738],
["11387037","Birgit","https://cardsrstillfun.blogspot.com/2019/09/merry-christmas.html",null,1568635181],
["11387043","Granne","https://aavamaki.blogspot.com/2019/09/not-cinderella.html",null,1568636989],
["11387062","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/09/een-kaart-in-de-vorm-van-een.html",null,1568641559],
["11387069","Lynn McAuley","https://confessionsofaleft-brainedstamper.blogspot.com/2019/09/inlaid-dies-and-autumn-kss.html",null,1568643175],
["11387157","Suze","https://craftysuze.blogspot.com/2019/09/simple-things.html",null,1568664665],
["11387177","Karen C","http://busyinspirations.blogspot.com/2019/09/i-love-books-but-love-you-more.html",null,1568668430],
["11387184","jenimc","https://jenicraftroom.blogspot.com/2019/09/lets-go-blackberrying.html",null,1568669670],
["11387228","Karthikha","https://loveforkrafts.blogspot.com/2019/09/i-smile-when-i-think-of-you.html",null,1568686004],
["11387298","Linda Mc Enery","http://lindamscreations.blogspot.com/2019/09/passion-for-promarkers-challenge-511.html",null,1568707847],
["11387301","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2019/09/passion-for-promarkers-challenge-511.html",null,1568707877],
["11387327","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/09/curious-on-path-of-positivity.html",null,1568709879],
["11387410","Judy V","https://jvzcreations.blogspot.com/2019/09/digi-doodle-studios-costume-party_17.html",null,1568729500],
["11387415","Dori Shelton","http://www.perfectlycreatedchaos.com/2019/09/layered-medallion-stencil-wishing-you.html",null,1568730457],
["11387422","Dawn S","https://dawnscraftybits.blogspot.com/2019/09/christmas-gift-bag-in-hurry.html",null,1568731392],
["11387426","Carla","https://carla-writes.blogspot.com/2019/09/halloween-card-img-12.html",null,1568732762],
["11387428","Rijacki Ledum","https://rijacki.blogspot.com/2019/09/paint-my-world-TTCRD.html",null,1568732824],
["11387444","Maggie S","https://maggiescathouse.blogspot.com/2019/09/sparkle-all-way.html",null,1568736261],
["11387455","Wies","https://wiescreablog.blogspot.com/2019/09/doosjes-kaart-met-uilen-box-card-with.html",null,1568740729],
["11387461","Julie T","https://juliescraftyspot.blogspot.com/2019/09/winnie-winter-time-candy-cane-elf.html",null,1568742295],
["11387483","InvisiblePinkCards","http://invisiblepinkcards.blogspot.com/2019/09/stamplorations-inspiration_17.html",null,1568752563],
["11387516","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2395259600523625/?type=3&theater",null,1568764744],
["11387539","Karen C","http://busyinspirations.blogspot.com/2019/09/coffee-moment.html",null,1568775372],
["11387545","Angie's Creations","https://angiescreationsblog.blogspot.com/2019/09/something-different-plus-cards.html#links",null,1568777063],
["11387563","Priyadarshini","https://simpleartcraft.wordpress.com/2019/09/18/quick-chabby-chic-card",null,1568782134],
["11387576","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/09/ctmh-christmas-card-using-september.html",null,1568785374],
["11387577","Gloria Shirr","https://purpleglocreations.blogspot.com/2019/09/sending-smile-card-using-ctmh-sept.html",null,1568785300],
["11387587","Sheryl Hare","https://marchharecards.blogspot.com/2019/09/cats.html",null,1568787227],
["11387633","Željka","https://creativemomanddaughter.blogspot.com/2019/09/snowman-tag-digi-choosday-challenge.html",null,1568791850],
["11387656","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/09/red-rose.html",null,1568797543],
["11387689","Donna","http://lakefrontstampingcreations.blogspot.com/2019/09/the-house-that-stamps-built-inspiration.html",null,1568806485],
["11387719","Creative Em","https://www.creative-em.com/2019/09/peach-roses-and-lace.html",null,1568808488],
["11387761","*Vicki*","https://stampedsmiles.com/2019/09/17/brutus-monroe-decorative-details-inspiration-team-blog-hop/",null,1568816721],
["11387794","Chriss R.","https://chrissandlou.blogspot.com/2019/09/acorn-pop-up-box-card.html",null,0],
["11387809","Željka","https://creativemomanddaughter.blogspot.com/2019/09/winnie-christmas-wishes-new.html",null,1568827713],
["11387864","Lola","https://littlecardmaker.blogspot.com/2019/09/artsy-butterfly-birthday-card.html",null,1568838671],
["11387880","Varsha from India entry 1","https://cartsandcrafts.blogspot.com/2019/09/ganpati-bappa-morya-mixed-media-tag.html",null,1568841157],
["11387884","Teresa","http://redobsessioncards.blogspot.com/2019/09/autumn-deer.html?m=1",null,1568841269],
["11387910","Teresa","http://redobsessioncards.blogspot.com/2019/09/butterfly-sympathy.html?m=1",null,1568846101],
["11387933","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/09/christmas-card-using-ctmh-september.html",null,1568862583],
["11387952","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/09/just-for-you.html",null,1568873470],
["11388026","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2019/09/world-wide-challenge-09.html",null,1568893805],
["11388028","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2019/09/world-wide-challenge-09_14.html",null,1568894364],
["11388049","Karen C","http://busyinspirations.blogspot.com/2019/09/celebrate-fall.html",null,1568898307],
["11388055","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/09/een-kerstkaart-in-de-vorm-van-een-groot.html",null,1568899786],
["11388059","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/09/toch-nog-een-kerstkaart.html",null,1568901856],
["11388137","Silke","https://kartenkram.blogspot.com/2019/09/geborgen-in-gottes-hand.html",null,1568916460],
["11388200","Craftartista","https://craftartista.blogspot.com/2019/09/autumn-colours.html",null,1568935522],
["11388256","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/09/de-s-van-servies.html#comment-form",null,1568969460],
["11388270","Cinderella 1","https://cinderellasdreamcardsblog.blogspot.com/2019/09/autumn-herfst.html",null,1568973875],
["11388271","Cinderella 2","https://cinderellasdreamcardsblog.blogspot.com/2019/09/happy-birthday-klembordclip-board.html",null,1568973988],
["11388272","Cinderella 3","https://cinderellasdreamcardsblog.blogspot.com/2019/09/gefeliciteerd-feestbeest-congr.html",null,1568974124],
["11388295","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/09/challenge-171-at-creative-fingers.html",null,1568979408],
["11388313","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/09/hartelijk-gefeliciteerd.html",null,1568980340],
["11388376","Kym","http://kyms-crafty-cards.blogspot.com/2019/09/ching-chou-kuiks-digital-stamps_20.html",null,1568996037],
["11388410","Ann-Marie S.","https://mylittlepatchofheaven-ams.blogspot.com/2019/09/polkadoodles-new-release-share.html",null,1569002566],
["11388558","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/09/countryside.html",null,1569049323],
["11388584","monique","http://moniqueschattefor.blogspot.com/2019/09/kerstkaart-tekkel.html",null,1569054202],
["11388702","Carla","https://carla-writes.blogspot.com/2019/09/jackie-robinson-golden-book-notebook.html",null,1569072097],
["11388733","Gale K","https://galesstampingcorner.blogspot.com/2019/09/cute-as-button-inspiration.html",null,1569082086],
["11388737","Rijacki Ledum","https://rijacki.blogspot.com/2019/09/too-cute-kraftin-kimmie-stamps.html",null,1569084184],
["11388754","Helen","https://craftinghelen.blogspot.com/2019/09/new-cute-n-crafty-christmas-challenge.html",null,1569089162],
["11388772","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/09/mijn-herinneringskaart-voor-de.html",null,1569096467],
["11388798","Karen C","http://busyinspirations.blogspot.com/2019/09/cleaning-with-vodka.html",null,1569107019],
["11388896","Craftartista","https://craftartista.blogspot.com/2019/09/mandala-free-image-7.html",null,1569147399],
["11388949","Carol","https://carol-paperplay-carol.blogspot.com/2019/09/have-been-playing-with-tracy-eassons.html",null,1569158829],
["11389008","CreaNancy","https://creanancy.blogspot.com/2019/09/creative-sketchy-girls-201940.html",null,1569168901],
["11389019","Crafty Amy","https://amycraftypurplefrog.blogspot.com/2019/09/love-you-to-moon-and-back.html",null,1569172331],
["11389023","CarolG NZ","https://creationsnz.blogspot.com/2019/09/dawns-bitz.html",null,1569173570],
["11389026","Judy V","https://jvzcreations.blogspot.com/2019/09/penelope-party-girl.html",null,1569175387],
["11389066","Teresa","http://redobsessioncards.blogspot.com/2019/09/winter-penguin.html?m=1",null,1569181060],
["11389082","Jac","https://jacs-playground.blogspot.com/2019/09/crafty-catz-challenge-475-anything-goes.html",null,1569186566],
["11389103","ingunn","https://ingunnsinekort.blogspot.com/2019/09/sprakende-orange-kort-ferdig-skrevetok.html",null,1569192293],
["11389127","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/09/thank-you-card-using-ctmh-perk-up-stamp.html",null,1569203447],
["11389167","Teresa","http://redobsessioncards.blogspot.com/2019/09/birthday-balloons.html?m=1",null,1569223501],
["11389181","Suzi Mac","https://wwwsuzies.blogspot.com/2019/09/shabby-chic-mixed-media-card.html",null,1569231096],
["11389188","Maxine D","https://kiwimeskreations.blogspot.com/2019/09/give-man-fishing-rod.html",null,1569233277],
["11389191","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/09/kaartje-speciaal-voor-jou.html",null,1569234009],
["11389199","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/09/quick-birthday-card.html",null,1569235215],
["11389257","Carole Jones","https://cjcrafty.blogspot.com/2019/09/artsystamper-perfect-pansies.html",null,1569249438],
["11389260","Carole J","https://cjcrafty.blogspot.com/2019/09/vera-lane-studio-mix-n-match-vases.html",null,1569250254],
["11389261","Kym","https://kyms-crafty-cards.blogspot.com/2019/09/happy-birthday-son.html",null,1569250323],
["11389308","Twisted Witch - Lin","http://twisted-witch.blogspot.com/2019/09/dv-210-things-with-wings.html",null,1569259035],
["11389320","Claudia","https://knutselmeisjes.blogspot.com/2019/09/de-beste-wensen.html",null,1569262269],
["11389374","Vannessa","http://saffiresstamping.blogspot.com/2019/09/faery-ink-inspiration-post-tomte-gnome.html",null,1569267902],
["11389396","Teresa","http://redobsessioncards.blogspot.com/2019/09/back-to-school.html?m=1",null,1569275909],
["11389402","Hazel","https://craftyhazelnut.blogspot.com/2019/09/chnc-challenge-456.html",null,1569277594],
["11389486","Craftartista","https://craftartista.blogspot.com/2019/09/start-day.html",null,1569312495],
["11389499","pinky","https://pinkysworldsuprojects.blogspot.com/2019/09/brightly-gleaming-candle-gift-box.html",null,1569315719],
["11389572","Chris","https://andheresoneimadeearlier.blogspot.com/2019/09/for-you.html",null,1569332720],
["11389621","cheiro urgia","https://cheirourgia.blogspot.com/2019/09/granola-box-goes-bloom.html",null,1569346201],
["11389634","Rijacki Ledum","https://rijacki.blogspot.com/2019/09/autumn-box-kraftin-kimmie-stamps.html",null,1569349213],
["11389678","America","https://cardsbyamerica.blogspot.com/2019/09/cutting-dies-vellum-copics.html",null,1569353046],
["11389697","jenimc","https://jenicraftroom.blogspot.com/2019/09/cherry-cake.html",null,1569358562],
["11389729","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2408471682535750/?type=3&theater",null,1569369104],
["11389852","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/09/uniquely-creative-guest-designer-floral.html",null,1569404405],
["11389855","Wendy Batchen","https://wenscreations.blogspot.com/2019/09/cute-as-button-inspiration-13th.html",null,1569404915],
["11389898","Janja - finart","https://myfinart.blogspot.com/2019/09/birthday-card.html",null,1569412586],
["11389904","Creative Em","https://www.creative-em.com/2019/09/pretty-in-pink.html",null,1569413720],
["11389984","Kraftykoolkat","https://kraftykoolkat.blogspot.com/2019/09/a-gift-of-love-card-two.html",null,1569429299],
["11389990","Lisa-olsi","http://lisa-olsi.blogspot.com/2019/09/grattistag-i-turkos.html",null,1569430936],
["11390247","Helen","https://craftinghelen.blogspot.com/2019/09/new-arty-divas-challenge-anything-goes_24.html",null,1569502238],
["11390285","pinkclover","https://pinkclovercards.blogspot.com/2019/09/happy-anniversary.html",null,1569513329],
["11390292","Carole J","https://cjcrafty.blogspot.com/2019/09/vera-lane-studio-this-is-me-postcard.html",null,1569514698],
["11390318","Leslie Turner","http://lovetoscrap2.com/2019/09/22/autumn-high-heel-clutch",null,1569528702],
["11390322","Leslie Turner","http://lovetoscrap2.com/2019/09/22/autumn-themed-stationery-box",null,1569530239],
["11390331","Leslie Turner","http://lovetoscrap2.com/2019/09/23/life-is-good",null,1569531987],
["11390334","Leslie Turner","http://lovetoscrap2.com/2019/09/25/small-floral-hanging-lantern",null,1569532781],
["11390336","Nicky","https://stiggyscrafts.blogspot.com/2019/09/updated-stamp-storage.html",null,1569532915],
["11390353","cheiro urgia","https://cheirourgia.blogspot.com/2019/09/vintage-autumn.html",null,1569542211],
["11390416","meg","https://bitsandpiecec.blogspot.com/2019/09/naughty-at-alphabet-challenge.html",null,1569566553],
["11390468","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/09/herfstkaart.html",null,1569575931],
["11390508","ScrappyHorses","https://scrappyhorses.blogspot.com/2019/09/5-minute-friday-video-organize-markers.html",null,1569586545],
["11390527","Karen C","http://busyinspirations.blogspot.com/2019/09/its-boy.html",null,1569592355],
["11390822","Dawn S","https://dawnscraftybits.blogspot.com/2019/09/ching-chou-kuik-facebook-challenge-week_28.html",null,1569669635],
["11390966","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/09/autumn-colours-at-crafty-cardmakers.html",null,1569693134],
["11391006","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/09/the-male-room-okraski.html",null,1569705633],
["11391050","Wendy F","https://crazy4flowerscards.blogspot.com/2019/09/our-25th-wedding-anniversary.html",null,1569717333],
["11391064","Karthikha","https://loveforkrafts.blogspot.com/2019/09/mft-2019-card-design-superstar.html",null,1569721439],
["11391142","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/09/flessenlabel.html",null,1569749669],
["11391176","Hazel L","http://hazel-hazelshappyhouse.blogspot.com/2019/09/international-art-and-soul-tags.html",null,1569758881],
["11391183","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/09/bonheur-certifie.html",null,1569760043],
["11391258","Made By Mandy","https://amandacruxton2.blogspot.com/2019/09/lories-peppermint-mocha.html",null,1569771314],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}