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("31Oct2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzFvY3QyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("4 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("31Oct2019");
blenza_linkies("thumb","lozzy","31Oct2019","871513454",3,
[
// MzFvY3QyMDE5
["11401862","monique","http://moniqueschattefor.blogspot.com/2019/10/robin.html",null,1572605375],
["11401948","ria","http://purpleliciouskingdom.blogspot.com/2019/11/sending-christmas-wishes.html",null,1572618535],
["11401970","caroline's creaties ","https://caroline-creaties.blogspot.com/2019/11/hoera-voor-lianne.html",null,1572623900],
["11402017","CarolG NZ","https://creationsnz.blogspot.com/2019/11/snow-deer.html",null,1572632171],
["11402024","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/10/thankful-january-2020-journal-divider.html",null,1572633328],
["11402028","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/hello-colour-crazy-challenge-143.html",null,1572633716],
["11402029","Donna R","https://indianainking.blogspot.com/2019/11/snowflake-kisses.html",null,1572633803],
["11402031","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/tis-season-to-be-browning-creative-with.html",null,1572634151],
["11402033","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/have-yourselfie-crafty-catz-481.html",null,1572634923],
["11402034","Karthikha","https://loveforkrafts.blogspot.com/2019/11/thanksgiving-card.html",null,1572635080],
["11402035","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/stop-and-smell-coffee.html",null,1572635332],
["11402038","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/autumn-bugaboo-stamps-free-friday.html",null,1572636038],
["11402053","ScrappyHorses","https://scrappyhorses.blogspot.com/2019/11/circus-theme-party.html",null,1572639120],
["11402058","AJ","https://ajcreativeenergy.blogspot.com/2019/11/gothic-love.html",null,1572641796],
["11402100","Kym","https://kyms-crafty-cards.blogspot.com/2019/11/ching-chou-kuik-digital-stamps-november.html",null,1572651252],
["11402102","Kym","http://kyms-crafty-cards.blogspot.com/2019/11/colour-crazy-challenge-blog-friday-1.html",null,1572652039],
["11402131","Desire Fourie","https://desiref.blogspot.com/2019/11/wishing-you-design-team-project.html",null,1572667339],
["11402169","Helen","https://helenscrafthaven.blogspot.com/2019/11/pbsc-november-anything-goes-optional.html",null,1572682173],
["11402187","Hazel","https://craftyhazelnut.blogspot.com/2019/11/craftyhazelnuts-patterned-paper.html",null,1572686093],
["11402188","Craftartista","https://craftartista.blogspot.com/2019/11/enjoy-your-day.html",null,1572687266],
["11402197","Hazel","https://craftyhazelnut.blogspot.com/2019/11/chnc-challenge-462.html",null,1572689300],
["11402199","AnnChuangCrafts","https://anncard.blogspot.com/2019/11/happiness.html",null,1572690117],
["11402201","AnnChuangCrafts","https://anncard.blogspot.com/2019/11/believe.html",null,1572690602],
["11402209","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2019/11/woo-hoo-its-weekend-again.html",null,1572693320],
["11402221","Maria","https://maria-mood.blogspot.com/2019/11/snow.html",null,1572695174],
["11402242","Caz Crafty bits","https://cazcraftybits.blogspot.com/2019/11/edna.html",null,1572697679],
["11402273","Pat K","https://patkscards.blogspot.com/2019/11/celebration-at-sweet-stampin.html",null,1572702002],
["11402336","Dawn S","https://dawnscraftybits.blogspot.com/2019/11/halloween-dusk.html",null,1572714831],
["11402338","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/11/time-for-some-new-chibis-at-scrappers.html",null,1572715167],
["11402343","Judy V","https://jvzcreations.blogspot.com/2019/11/sparkle-glitter-and-joy.html",null,1572715880],
["11402351","cheiro urgia","https://cheirourgia.blogspot.com/2019/11/autumn-bloom.html",null,1572717717],
["11402359","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/wishing-you-happiest-catch-bug-saturday.html",null,1572719175],
["11402366","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/dont-give-me-attitude.html",null,1572720290],
["11402369","Gale K","https://galesstampingcorner.blogspot.com/2019/11/leila.html",null,1572720494],
["11402402","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/11/er-is-een-nieuwe-wedstrijd-begonnen-bij.html",null,1572724470],
["11402448","Linda Mc Enery","https://lindamscreations.blogspot.com/2019/11/my-besties-aussies-november-challenge.html",null,1572728217],
["11402452","Monika Reeck ","https://creativewithmonika.blogspot.com/2019/11/sunday-stamps-challenge-217-boys-card.html",null,1572729089],
["11402520","Creative Smiles","https://creativesmiles2.blogspot.com/2019/11/that-vintage-look-at-paper-shelter-2.html",null,1572745216],
["11402533","ingunn","https://ingunnsinekort.blogspot.com/2019/11/jule-tag.html",null,1572750460],
["11402592","Sherry G","http://loosestitchesandunraveledthreads.blogspot.com/2019/11/cute-as-button-challenge-50.html",null,1572762052],
["11402594","Ruth Lopez","https://www.myhobbymyart.com/2019/11/christmas-card-and-matching-envelope.html",null,1572763242],
["11402635","Larissa","https://car-d-elicious.blogspot.com/2019/11/two-christmas-labels-with-dis-digi.html",null,1572777624],
["11402668","Cinderella 1","https://cinderellasdreamcardsblog.blogspot.com/2019/11/write-your-troubles.html",null,1572785654],
["11402673","Terry","https://cardscreativity.blogspot.com/2019/11/we-love-to-create-challenge-11-anything.html",null,1572786460],
["11402683","Claudia","https://knutselmeisjes.blogspot.com/2019/11/prettige-feestdagen_3.html",null,1572787434],
["11402729","Kym","https://kyms-crafty-cards.blogspot.com/2019/11/home-sweet-home.html",null,1572793515],
["11402737","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/11/gefeliciteerd.html",null,1572794026],
["11402766","Loopyloo","https://loopyloocards.com/2019/11/03/fractile-leaf-thank-you/",null,1572797987],
["11402775","Granne","https://aavamaki.blogspot.com/2019/11/card-out-of-scraps.html",null,1572799895],
["11402778","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/life-happens.html",null,1572800542],
["11402779","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/sending-you-most-merriest-of-christmas.html",null,1572801049],
["11402784","Crafty Amy","https://amycraftypurplefrog.blogspot.com/2019/11/create-smile-challenge-and-dt-call.html",null,1572803025],
["11402801","Donna R","https://indianainking.blogspot.com/2019/11/happy-fall.html",null,1572808354],
["11402808","Gloria Shirr","https://purpleglocreations.blogspot.com/2019/11/christmas-card-using-conie-fong.html",null,1572809375],
["11402972","Rosina","http://rosina-scrapcards.blogspot.com/2019/11/een-voorspoedig-herstel.html",null,1572849067],
["11402977","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/11/happy-birthday.html",null,1572851454],
["11402981","Cass","https://casscreatingnow.blogspot.com/2019/11/a-place-to-start-november-2019.html",null,1572852976],
["11402991","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/11/stoere-kaart-voor-uitdaging-4.html",null,1572855522],
["11403014","Carole J","https://cjcrafty.blogspot.com/2019/11/artsystamper-monochrome-autumn.html",null,1572865232],
["11403032","Rachelle Oltean","https://redcre8s.blogspot.com/2019/11/pop-up-window-gift-card-ellen-hutson.html",null,1572869293],
["11403034","Birgit","https://cardsrstillfun.blogspot.com/2019/11/when-you-stop-believing-in-santa-you.html",null,1572869910],
["11403060","Janis Lewis","https://pausedreamenjoy.blogspot.com/2019/11/crafting-happiness-challenge-21.html",null,1572875097],
["11403067","Karen C","http://busyinspirations.blogspot.com/2019/11/friendly-mouse.html",null,1572875670],
["11403072","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/11/een-kerstkaart-gemaakt-de-achtergrond.html",null,1572876319],
["11403089","NanaConnie","https://mygrammysattic.blogspot.com/2019/11/guest-designer-for-tales-from-craft.html",null,1572879924],
["11403110","*Vicki*","https://stampedsmiles.com/2019/11/04/naughty-or-nice-for-digi-doodle-studios/",null,1572882702],
["11403132","Carole J","https://cjcrafty.blogspot.com/2019/11/vera-lane-studio-what-fluff.html",null,1572887536],
["11403149","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/coffee-is-hug.html",null,1572891129],
["11403151","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/happy-farthers-day-always-fun-challenge.html",null,1572891462],
["11403167","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/11/birthday-card-for-husband-using-ctmh.html",null,1572895533],
["11403223","AJ","https://ajcreativeenergy.blogspot.com/2019/11/bella-butterfly.html",null,1572906742],
["11403239","jenimc","https://jenicraftroom.blogspot.com/2019/11/trailing-ivy.html",null,1572908702],
["11403301","Barbara Bruder","http://artandsoulcreations.blogspot.com/2019/11/peace-on-earth.html",null,1572932110],
["11403335","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/11/veel-liefs.html",null,1572943930],
["11403347","Maria","https://maria-mood.blogspot.com/2019/11/happy-birthday-boy.html",null,1572945814],
["11403351","Made by Mandy","https://amandacruxton2.blogspot.com/2019/11/frosty-snowman.html",null,1572946667],
["11403373","Craftartista","https://craftartista.blogspot.com/2019/11/you-rock-my-friend.html",null,1572952521],
["11403381","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/11/feeling-thankful-despite-it-all.html",null,1572953545],
["11403391","Debbie M","https://secretstamper.com/2019/11/beauty-joy-holiday-card-for-the-hand-stamped-sentiments-challenge/",null,1572955986],
["11403393","Emma R","https://emgoescardmaking.blogspot.com/2019/11/tag-it-with-tiddy-inks.html",null,1572956192],
["11403404","Donna R","https://indianainking.blogspot.com/2019/11/e-is-for-exploding-card-and-elf.html",null,1572958980],
["11403488","Judy V","https://jvzcreations.blogspot.com/2019/11/cute-as-button-november-challenge.html",null,1572971465],
["11403570","Carol S","http://scrappydayz.blogspot.com/2019/10/merry-christmas-kisses.html",null,1572983530],
["11403573","Carol S","http://scrappydayz.blogspot.com/2019/11/reindeer-games.html",null,1572983757],
["11403587","AJ","https://ajcreativeenergy.blogspot.com/2019/11/coffee-cake-friends.html",null,1572984467],
["11403794","Janes Journal","https://jane-janesjournal.blogspot.com/2019/11/designing-for-creative-stamping-magazine.html",null,1573028701],
["11403854","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2019/11/hi-crafters-ive-been-playing-with-this.html",null,1573041321],
["11403869","Creative Em","https://www.creative-em.com/2019/11/butterflies-in-round.html",null,1573044096],
["11403882","Made by Mandy","https://amandacruxton2.blogspot.com/2019/11/ruby-christmas-tree.html",null,1573046619],
["11403997","Ellie","https://www.simplyellibelle.com/2019/11/ellibelles-crafty-wednesday-november.html",null,1573055737],
["11404099","Teresa","http://redobsessioncards.blogspot.com/2019/11/spotlight-beauty.html?m=1",null,1573074010],
["11404215","Karthikha","https://loveforkrafts.blogspot.com/2019/11/laytons-legacy-card-drive.html",null,1573100006],
["11404278","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/11/bonne-annee-8.html",null,1573121448],
["11404282","Loopyloo","https://loopyloocards.com/2019/11/07/let-it-snow/",null,1573122836],
["11404316","Bernadet","https://cardsbybernadet.blogspot.com/2019/10/sandra-word-32-jaar.html",null,1573127366],
["11404336","cheiro urgia","https://cheirourgia.blogspot.com/2019/11/scraps.html",null,1573131619],
["11404346","Made by Mandy","https://amandacruxton2.blogspot.com/2019/11/tree-with-presents-imagine-that-guest-dt.html",null,1573133913],
["11404352","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/11/een-kerstkaart-met-op-de-achtergrond.html",null,1573136622],
["11404362","caroline's creaties","https://caroline-creaties.blogspot.com/2019/11/bloemen-en-vlinders.html",null,1573140227],
["11404476","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2019/11/cranes.html",null,1573165662],
["11404498","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/11/leanns-world-101-20-challenge.html",null,1573179599],
["11404566","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/11/gefeliciteerd_8.html",null,1573200356],
["11404617","jenimc","https://jenicraftroom.blogspot.com/2019/11/snowy-border.html",null,1573206920],
["11404647","ValeryAnne","https://itsanalienlife.blogspot.com/2019/11/flower-does-it.html",null,1573214002],
["11404744","caroline's creaties","https://caroline-creaties.blogspot.com/2019/11/een-smakelijke-kerst.html",null,1573227345],
["11404753","NanaConnie","https://mygrammysattic.blogspot.com/2019/11/day-8-letter-g-beccys-place-30-days-of.html",null,1573229464],
["11404770","Jasmina","https://handmadebyjasmina.blogspot.com/2019/11/fb-papirckarice-41-izziv-izrezi-iz.html",null,1573233391],
["11404791","Janes Journal","https://jane-janesjournal.blogspot.com/2019/11/daisy-makes.html",null,1573237323],
["11404810","Liliane Carvalho","http://scrapchosdalilica.blogspot.com/2019/11/cartao-natalino.html",null,1573241706],
["11404816","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/friday-november-8-2019-hello.html",null,1573242831],
["11404923","Hazel","https://craftyhazelnut.blogspot.com/2019/11/chnc-challenge-463.html",null,1573294878],
["11404930","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/11/scrappers-delights-progressive.html",null,1573298737],
["11404977","caroline's creaties","https://caroline-creaties.blogspot.com/2019/11/thanksgiving.html",null,1573308468],
["11404995","Teresa","http://redobsessioncards.blogspot.com/2019/11/my-pink-snowman.html?m=1",null,1573310967],
["11405077","Priyadarshini","https://simpleartcraft.wordpress.com/2019/11/10/mixed-media-box",null,1573327051],
["11405082","Priyadarshini","https://simpleartcraft.wordpress.com/2019/11/10/stencil-highlighting",null,1573328907],
["11405096","Chana","https://redoralee.blogspot.com/2019/11/a-place-to-start-november-challenge.html",null,1573334888],
["11405144","Judy V","https://jvzcreations.blogspot.com/2019/11/frostella-ginger.html",null,1573358077],
["11405172","Dewi","https://sundaymorningcard.blogspot.com/2019/11/thanks.html",null,1573371798],
["11405202","Maya","https://mayas-hobbyblogg.blogspot.com/2019/11/ho-ho-ho-deer.html",null,1573380184],
["11405309","Terry","https://cardscreativity.blogspot.com/2019/11/polkadoodles-tutorial-on-how-to-make.html",null,1573399327],
["11405353","jenimc","https://jenicraftroom.blogspot.com/2019/11/white-on-white.html",null,1573405947],
["11405391","Carol S","http://scrappydayz.blogspot.com/2019/11/a-merry-christmas-ornament.html",null,1573411061],
["11405397","Lou Sims","https://lulucardmaking.blogspot.com/2019/11/playing-with-stencils-izink-ink-pads.html",null,1573411645],
["11405406","Helen","https://craftinghelen.blogspot.com/2019/11/new-through-craft-room-door-challenge.html",null,1573413315],
["11405441","Varsha from India","https://cartsandcrafts.blogspot.com/2019/11/make-wish-mixed-media-tag.html?m=1",null,1573417997],
["11405489","Craftartista","https://craftartista.blogspot.com/2019/11/green-and-beautiful-gift-from-rena.html",null,1573425713],
["11405499","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/11/november-progressive-freebie-challenge.html",null,1573430795],
["11405501","charlene","http://scrappygmasplace.blogspot.com/2019/11/happy-fall-yall.html",null,1573433897],
["11405507","Steffi H.","https://www.flickr.com/photos/spinkymausi/49046278656/in/dateposted/",null,1573436620],
["11405551","jackie cornfield","https://getthejclook.blogspot.com/2019/11/purplelicious-ching-chou-kuik.html",null,1573453981],
["11405556","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/11/cleaning-up-from-halloween.html",null,1573455580],
["11405566","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/11/plooien.html",null,1573456048],
["11405580","Judy McKay","https://insearchofmycreativeside.blogspot.com/2019/11/just-smile.html",null,1573456926],
["11405601","EmmaT","https://emmatrenouth.blogspot.com/2019/11/70th-birthday-shutter-card.html",null,1573463325],
["11405620","Janes Journal","https://jane-janesjournal.blogspot.com/2019/11/a-christmas-sprite.html",null,1573472364],
["11405651","Pat K","https://patkscards.blogspot.com/2019/11/add-animal-at-cuties.html",null,1573480580],
["11405668","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/11/ik-heb-vandaag-een-easel-kerstkaart.html",null,1573484450],
["11405728","Twisted Witch - Lin","https://twisted-witch.blogspot.com/2019/11/ccm-245-thankful.html",null,1573500030],
["11405793","Glenda Atkins","https://gilbyscorner.blogspot.com/2019/11/crafty-cardmakers-challenge-245-thankful.html",null,1573520583],
["11405798","Gloria Shirr - 2nd ","https://purpleglocreations.blogspot.com/2019/11/christmas-card-using-conie-fong-snowy.html",null,1573522118],
["11405810","Karthikha","https://loveforkrafts.blogspot.com/2019/11/happy-birthday-friend.html",null,1573529035],
["11405957","Rijacki Ledum","https://rijacki.blogspot.com/2019/11/get-well-kitty-ttcrd.html",null,1573574052],
["11406000","Liliane Carvalho","http://scrapchosdalilica.blogspot.com/2019/11/cartao-para-aniversario.html",null,1573581395],
["11406036","Patsy Long","http://craftyafrican.blogspot.com/2019/11/digi-doodles-studios-jolly-ol-sparky.html",null,1573585594],
["11406055","monique","http://moniqueschattefor.blogspot.com/2019/11/kerstdraakje.html",null,1573586888],
["11406068","Renate ","https://renatekaarten.blogspot.com/2019/11/thanks.html",null,1573588917],
["11406160","Teresa","http://redobsessioncards.blogspot.com/2019/11/pumpkin-tea.html?m=1",null,1573601176],
["11406164","Teresa","http://redobsessioncards.blogspot.com/2019/11/poppies-of-thanks.html?m=1",null,1573602230],
["11406166","Teresa","http://redobsessioncards.blogspot.com/2019/11/the-winter-blues.html?m=1",null,1573602802],
["11406186","Karthikha","https://loveforkrafts.blogspot.com/2019/11/50th-birthday-card.html",null,1573609358],
["11406205","Ruth Lopez","https://www.myhobbymyart.com/2019/11/snowman-globe-card.html",null,1573614443],
["11406231","Gloria Shirr","https://purpleglocreations.blogspot.com/2019/11/life-is-tough-card-for-male.html",null,1573623533],
["11406382","Chris","https://andheresoneimadeearlier.blogspot.com/2019/11/trees.html",null,1573655923],
["11406421","Bonnie Garby","http://maketime2craft.com/2019/11/really-reasonable-ribbon-november-blog-hop-4.html",null,1573665408],
["11406450","Zora","http://lofquisten.blogspot.com/2019/11/tomtenisse.html",null,1573672047],
["11406470","Melanie","https://creative-world-of-melanie.blogspot.com/2019/11/caveman-klob.html",null,1573676779],
["11406471","Melanie","https://creative-world-of-melanie.blogspot.com/2019/11/birthday-elephant.html",null,1573677038],
["11406528","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/11/vencek-iz-buc.html",null,1573686690],
["11406617","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/11/snowman-christmas-joy.html",null,1573719194],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}