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("30Nov2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzBub3YyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("3 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("30Nov2019");
blenza_linkies("thumb","lozzy","30Nov2019","1556670152",3,
[
// MzBub3YyMDE5
["11412177","Angela Jervis","https://angscraftycupboard.blogspot.com/2019/12/blog-post.html",null,1575195099],
["11412181","caroline's creaties","https://caroline-creaties.blogspot.com/2019/12/nieuwjaarskaart-bij-2sistersontheblog.html",null,1575196197],
["11412182","Granne","https://aavamaki.blogspot.com/2019/12/sheepski-designs-your-favourite-things.html",null,1575196425],
["11412190","Kym","http://kyms-crafty-cards.blogspot.com/2019/12/ching-chou-kuik-digital-stamps-december.html",null,1575198122],
["11412199","monique","http://moniqueschattefor.blogspot.com/2019/11/poinsetta-girl.html",null,1575200612],
["11412201","AnnChuangCrafts","https://anncard.blogspot.com/2019/12/merry-christmas.html",null,1575201062],
["11412204","AnnChuangCrafts","https://anncard.blogspot.com/2019/12/happy-holiday.html",null,1575201229],
["11412223","Leslie Turner","http://lovetoscrap2.com/2019/12/01/know-what-i-love",null,1575206268],
["11412224","Leslie Turner","http://lovetoscrap2.com/2019/12/01/believe",null,1575206347],
["11412225","Leslie Turner","http://lovetoscrap2.com/2019/12/01/let-it-snow-4",null,1575206386],
["11412228","Leslie Turner","http://lovetoscrap2.com/2019/12/01/a-bright-and-happy-christmas",null,1575206436],
["11412254","Irene","http://abitmoretimetocraft.blogspot.com/2019/12/a-bit-more-time-to-craft-challenge-105.html",null,0],
["11412255","Irene","https://madeinborgo.blogspot.com/2019/12/december-challenge-at-classic-dt-open.html",null,1575209974],
["11412314","Donna R","https://indianainking.blogspot.com/2019/12/last-challenge-for-2019.html",null,1575220540],
["11412316","Cristina","https://rutscht.blogspot.com/2019/12/atc-49-de-52.html",null,1575220824],
["11412320","Hazel","https://craftyhazelnut.blogspot.com/2019/12/craftyhazelnuts-patterned-paper.html",null,1575221091],
["11412331","NanaConnie","https://mygrammysattic.blogspot.com/2019/12/gnome-for-christmas.html",null,1575224295],
["11412377","Vannessa","http://saffiresstamping.blogspot.com/2019/12/happy-december.html",null,1575233823],
["11412387","Carla","https://carla-writes.blogspot.com/2019/11/coffee-break-card.html",null,1575238089],
["11412388","Carole J","https://cjcrafty.blogspot.com/2019/12/gecko-galz-in-dreams.html",null,1575238083],
["11412389","Carla","https://carla-writes.blogspot.com/2019/11/a-whimsical-birthday-gift.html coffee-break-card.html",null,0],
["11412392","Carla","https://carla-writes.blogspot.com/2019/11/a-whimsical-birthday-gift.html ",null,1575238263],
["11412416","AJ","https://ajcreativeenergy.blogspot.com/2019/12/diya-kitty-doodles.html",null,1575246341],
["11412418","Gale K","https://galesstampingcorner.blogspot.com/2019/12/christmas-blessing.html",null,1575247693],
["11412425","Pam D","https://itisfinisheddesigns.blogspot.com/2019/12/christmas-flowers.html",null,1575249425],
["11412496","Priyadarshini","https://simpleartcraft.wordpress.com/2019/12/02/christmas-cards-2/",null,1575269900],
["11412498","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/12/altered-embroidery-hoop.html",null,1575270431],
["11412499","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/12/happy-birthday.html",null,1575270496],
["11412506","Rosina","https://rosina-scrapcards.blogspot.com/2019/12/gefeliciteerd.html",null,1575274704],
["11412513","EmmaT","https://emmatrenouth.blogspot.com/2019/12/christmas-dove.html",null,1575277485],
["11412536","bianca's scrapcards","https://biancasscrapcards.blogspot.com/2019/12/ice-tilda.html",null,1575281605],
["11412538","bianca's scrapcards","https://biancasscrapcards.blogspot.com/2019/12/the-sketchy-challenges-1591-12.html",null,1575281648],
["11412586","Valerija","https://moje-veselje.blogspot.com/2019/11/praznicno-vzdusje-v-veseli-hiski.html",null,1575292074],
["11412614","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/12/vandaag-een-adventskalender-gemaakt-de.html",null,1575296939],
["11412615","caroline's creaties","https://caroline-creaties.blogspot.com/2019/12/sophie-3-jaar.html",null,1575297151],
["11412703","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/12/dak-grudzien.html",null,1575308545],
["11412710","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/12/nekega-zmskega-jutra.html",null,1575310488],
["11412725","cheiro urgia","https://cheirourgia.blogspot.com/2019/12/let-your-heart-soar.html",null,1575313561],
["11412726","AJ","https://ajcreativeenergy.blogspot.com/2019/12/checking-it-twice.html",null,1575314464],
["11412766","Carole J","https://cjcrafty.blogspot.com/2019/12/vera-lane-studio-wintertimes.html",null,1575320997],
["11412775","Helen","https://helenscrafthaven.blogspot.com/2019/12/o-christmas-tree.html",null,1575323030],
["11412790","Valerija","https://moje-veselje.blogspot.com/2019/12/vinska-trta-za-50-let.html",null,1575326466],
["11412798","Lena K.","https://crafterskey.blogspot.com/2019/12/no-red-no-green-christmas-card.html",null,1575327909],
["11412818","Carole J","https://cjcrafty.blogspot.com/2019/12/crafts-galore-encore-christmas-joys.html",null,1575332482],
["11412912","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/12/kit-and-clowder-coloring-class-using.html",null,1575352296],
["11412971","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/12/path-of-positivity-goes-peaceful.html",null,1575374879],
["11412980","Karen C","http://busyinspirations.blogspot.com/2019/12/we-survived.html",null,1575377447],
["11413064","Valerija","https://moje-veselje.blogspot.com/2019/12/minion.html",null,1575388651],
["11413071","Valerija","https://moje-veselje.blogspot.com/2019/12/skrat-dolgobrad.html",null,1575390003],
["11413150","Maryann Scrapbooking","https://maryann-scrap.blogspot.com/2019/12/carte-tendresse-pour-des-jeunes-maries.html",null,1575402221],
["11413173","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/12/christmas-no-red-or-green-at-incy-wincy.html",null,1575406496],
["11413176","Karthikha","https://loveforkrafts.blogspot.com/2019/12/christmas-sweater-background-cards.html",null,1575407099],
["11413183","Sheryl Hare","https://marchharecards.blogspot.com/2019/12/peekaboo-penguins.html",null,1575408825],
["11413344","Kym","http://kyms-crafty-cards.blogspot.com/2019/12/happy-christmas.html",null,1575442864],
["11413368","Zora","http://lofquisten.blogspot.com/2019/11/tomtenisse.html",null,0],
["11413369","Zora","https://lofquisten.blogspot.com/2019/12/tomte-i-rott.html",null,1575447692],
["11413373","Sheryl Hare","https://marchharecards.blogspot.com/2019/12/winter-bird-snow-globe.html",null,1575448536],
["11413414","Donna","http://lakefrontstampingcreations.blogspot.com/2019/12/the-house-that-stamps-built-designer.html",null,1575459856],
["11413423","Linda Mc Enery","http://lindamscreations.blogspot.com/2019/12/pennys-paper-crafty-challenge-459.html",null,1575461296],
["11413473","Chris","https://andheresoneimadeearlier.blogspot.com/2019/12/guest-designer-for-jo-tales-from-craft.html",null,1575469649],
["11413503","Cards By MI","https://kompis-kort-by-mi.blogspot.com/2019/12/bloghop-over-at-paper-shelter.html",null,1575473163],
["11413523","Ellie","https://www.simplyellibelle.com/2019/12/ellibelles-crafty-wednesday-december.html",null,1575479365],
["11413525","CarolG NZ","https://creationsnz.blogspot.com/2019/12/christmas-joy.html",null,1575479958],
["11413559","My Other World","https://scrapsdamaryv.blogspot.com/2019/12/pennys-challenges-459.html",null,1575483411],
["11413598","Saphron","https://www.lemonbiscuit.blog/crafts/pennys-paper-crafty-challenge-459/",null,1575493431],
["11413601","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/12/nuovo-challenge-del-mese-su-magnolia.html",null,1575494376],
["11413602","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/12/nuovo-challenge-su-simply-magnolia.html",null,1575495025],
["11413610","Teresa","http://redobsessioncards.blogspot.com/2019/12/stocking-kitty.html?m=1",null,1575497823],
["11413611","Kathie","https://kathiezkardz.blogspot.com/2019/12/tulip-border.html",null,1575497972],
["11413621","Craftartista","https://craftartista.blogspot.com/2019/12/happy-christmas.html",null,1575500850],
["11413624","Judy V","https://jvzcreations.blogspot.com/2019/12/december-at-cute-as-button.html",null,1575501248],
["11413626","Teresa","http://redobsessioncards.blogspot.com/2019/12/peeking.html?m=1",null,1575501394],
["11413646","AJ","https://ajcreativeenergy.blogspot.com/2019/12/a-caroling-we-go.html",null,1575509154],
["11413709","Valerija","https://moje-veselje.blogspot.com/2019/12/srnica.html",null,1575535769],
["11413752","Sheryl Hare","https://marchharecards.blogspot.com/2019/12/gift-card-holder.html",null,1575539093],
["11413757","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/12/bonne-annee-25.html",null,1575540143],
["11413772","Pam D","https://itisfinisheddesigns.blogspot.com/2019/12/christmas-bells.html",null,1575545428],
["11413773","Valerija","https://moje-veselje.blogspot.com/2019/12/reciklirana-snezinka.html",null,1575545439],
["11413774","AuntySue","https://auntysuescraftcavern.blogspot.com/2019/12/craft-challenge-gifts-santa-again.html",null,1575545522],
["11413782","Karen Dunbrook","https://snippets-karen.blogspot.com/2019/12/warmest-wishes.html",null,1575548538],
["11413800","Leslie Turner","http://lovetoscrap2.com/2019/12/03/its-your-big-day",null,1575555409],
["11413843","*Vicki*","https://stampedsmiles.com/2019/12/05/cute-card-thursday-anything-goes-with-reindeer-farts/",null,1575565076],
["11413883","Valerija","https://moje-veselje.blogspot.com/2019/12/harmonika.html",null,1575576079],
["11413901","Leslie Turner","http://lovetoscrap2.com/2019/12/05/special-delivery",null,1575579552],
["11413918","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2019/12/christmas-mix.html",null,1575582935],
["11413920","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2019/12/challenge-21-leanns-world-101.html",null,1575584192],
["11414102","Made by Mandy","https://amandacruxton2.blogspot.com/2019/12/snowman-winter.html",null,1575624143],
["11414111","Valerija","https://moje-veselje.blogspot.com/2019/12/otroska-voscilnica-s-traktorjem-gdt.html",null,1575626496],
["11414120","caroline's creaties","https://caroline-creaties.blogspot.com/2019/12/voor-trijntje.html",null,1575627332],
["11414124","Loopyloo","https://loopyloocards.com/2019/12/06/snowy-bountiful-branch/",null,1575627596],
["11414192","NanaConnie","https://mygrammysattic.blogspot.com/2019/12/old-time-santa.html",null,1575645028],
["11414214","Karthikha","https://loveforkrafts.blogspot.com/2019/12/joy-wreath-card.html",null,1575646801],
["11414229","Donna R","https://indianainking.blogspot.com/2019/12/another-birthday.html",null,1575648191],
["11414277","CarolG NZ","https://creationsnz.blogspot.com/2019/12/sunflower-friends.html",null,1575659115],
["11414293","Lola","https://littlecardmaker.blogspot.com/2019/11/christmas-penguin-card.html",null,1575664225],
["11414329","Liliane Carvalho","http://scrapchosdalilica.blogspot.com/2019/12/ola-arteiras-passando-para-mostrar-mais.html",null,1575673109],
["11414379","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/12/december-progressive-freebie-scrappers.html",null,1575688660],
["11414384","monique","https://moniqueschattefor.blogspot.com/2019/12/angel-wishes.html",null,1575690785],
["11414391","Dawn Frost","http://stamp-n-play.blogspot.com/2019/12/bugaboo-ginger-bowl.html",null,1575692910],
["11414437","Hazel","https://craftyhazelnut.blogspot.com/2019/12/chnc-challenge-467.html",null,1575711965],
["11414447","Valerija","https://moje-veselje.blogspot.com/2019/12/disi-po-praznikih.html",null,1575715339],
["11414449","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/12/winter.html",null,1575716480],
["11414452","Craftartista","https://craftartista.blogspot.com/2019/12/can-you-keep-secret.html",null,1575717382],
["11414513","Sharmitha @ Crafter's Icon","https://craftersicon.blogspot.com/2019/12/holiday-card.html",null,1575726967],
["11414518","My Other World","https://scrapsdamaryv.blogspot.com/2019/12/creative-moments-182.html",null,1575728381],
["11414631","ScrappyHorses","https://scrappyhorses.blogspot.com/2019/12/gifting-scrapbook-page.html",null,1575751120],
["11414660","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/12/christmas-card-using-conie-fong-mollys.html",null,1575765779],
["11414675","Leslie Turner","http://lovetoscrap2.com/2019/12/07/you-kids-get-off-my-lawn",null,1575772805],
["11414678","Leslie Turner","http://lovetoscrap2.com/2019/12/07/coffeefriends-perfect-blend",null,1575772944],
["11414679","Leslie Turner","http://lovetoscrap2.com/2019/12/06/another-birthday",null,1575773164],
["11414737","Claudia","https://knutselmeisjes.blogspot.com/2019/12/winter-wishes.html",null,1575794937],
["11414777","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/12/gast-designer-4seasons.html",null,1575805288],
["11414790","Mieke Duckers","https://www.miekesaddiction.blogspot.nl",null,1575807412],
["11414846","Hazel L","https://hazel-hazelshappyhouse.blogspot.com/2019/12/iaas-anything-but-card.html",null,1575814580],
["11414876","Judy V","https://jvzcreations.blogspot.com/2019/12/celebration.html",null,1575821187],
["11414891","Chris","https://andheresoneimadeearlier.blogspot.com/2019/12/crafty-calendar-december-challenge.html",null,1575822246],
["11414909","Judy V","https://jvzcreations.blogspot.com/2019/12/winnie-winter-celebrations.html",null,1575824917],
["11414920","Judy V","https://jvzcreations.blogspot.com/2019/12/morgans-artworld-challenge-12.html",null,1575827492],
["11414959","marleen","https://marleenvanwetten.blogspot.com/2019/12/snow-fun.html",null,1575838454],
["11414985","Cass","https://casscreatingnow.blogspot.com/2019/12/time-to-trim-tree.html",null,1575850371],
["11415035","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/12/happy-birthday.html",null,1575874449],
["11415036","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/12/birthday.html",null,1575874812],
["11415047","Valerija","https://moje-veselje.blogspot.com/2019/12/bela-bozicna-zvezda.html",null,1575880209],
["11415048","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/12/raindrops.html",null,1575880812],
["11415055","Rosina","http://rosina-scrapcards.blogspot.com/2019/12/gefeliciteerd_9.html",null,1575883771],
["11415060","jackie cornfield","https://getthejclook.blogspot.com/2019/12/christmas-cheer-hop-classic-dt-open.html",null,1575887044],
["11415074","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/12/scrappers-delights-chibi-new-release.html",null,1575891933],
["11415078","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/12/scrappers-delights-progressive.html",null,1575892631],
["11415093","Leslie Turner","http://lovetoscrap2.com/2019/12/08/happy-holiday-2",null,1575895584],
["11415095","Valerija","https://moje-veselje.blogspot.com/2019/12/snezinke.html",null,1575896267],
["11415097","Leslie Turner","http://lovetoscrap2.com/2019/12/08/celebrate-5",null,1575896621],
["11415158","Dori","http://www.perfectlycreatedchaos.com/2019/12/25-days-of-christmas-cards-day-13.html",null,1575908405],
["11415162","Judy V","https://jvzcreations.blogspot.com/2019/12/frozen-birthday.html",null,1575908904],
["11415237","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/12/hallo.html",null,1575926619],
["11415246","Angie's Creations","http://angiescreationsblog.blogspot.com/2019/12/three-more-christmas-cards.html#links",null,1575927913],
["11415247","Birgit","https://cardsrstillfun.blogspot.com/2019/12/only-to-be-opened-on-christmas-eve.html",null,1575927986],
["11415301","Memas Crafts","https://memascrafts.blogspot.com/2019/12/signs-of-christmas.html",null,1575950176],
["11415332","monique","https://moniqueschattefor.blogspot.com/2019/12/classic-design-team-challenge-blog-hop.html",null,1575969124],
["11415334","Željka","https://creativemomanddaughter.blogspot.com/2019/12/celebration-from-new-polkadoodles.html",null,1575969361],
["11415336","Teresa","http://redobsessioncards.blogspot.com/2019/12/the-christmas-gift.html?m=1",null,1575971160],
["11415345","Valerija","https://moje-veselje.blogspot.com/2019/12/akvarelno-pobarvana-srnica.html",null,1575975150],
["11415346","Pam D","https://itisfinisheddesigns.blogspot.com/2019/12/nativity-ornament-easel-card.html",null,1575975422],
["11415393","Ellie","https://www.simplyellibelle.com/2019/12/allsorts-challenge-549-snowflakes-andor.html",null,1575990131],
["11415395","Beverly Cole","https://www.artsystamper.com/2019/12/dreamy-christmas-tag.html",null,1575990508],
["11415423","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/12/a-green-christmas.html",null,1575992848],
["11415442","Valerija","https://moje-veselje.blogspot.com/2019/12/vrtnice-za-70-let.html",null,1575996148],
["11415461","Allisa","http://www.rockymtnpapercrafts.com/2019/12/case-this-sketch-350.html",null,1576002504],
["11415464","jenimc","https://jenicraftroom.blogspot.com/2019/12/christmas-box.html",null,1576004023],
["11415494","Patsy Long","http://craftyafrican.blogspot.com/2019/12/paper-nest-dolls-digi-doodle-studios.html",null,1576014324],
["11415506","Teresa","http://redobsessioncards.blogspot.com/2019/12/blues-and-silvers.html?m=1",null,1576017430],
["11415511","Teresa","http://redobsessioncards.blogspot.com/2019/12/forest-princess.html?m=1",null,1576018450],
["11415512","Karthikha","https://loveforkrafts.blogspot.com/2019/12/colorful-christmas-trees.html",null,1576018947],
["11415658","Karen Dunbrook","https://snippets-karen.blogspot.com/2019/12/gold-deer.html",null,1576066306],
["11415663","Željka","https://creativemomanddaughter.blogspot.com/2019/12/forest-scene-with-acetate-background.html",null,1576067387],
["11415694","Donna","http://lakefrontstampingcreations.blogspot.com/2019/12/the-house-that-stamps-built-tic-tac-toe.html",null,1576070944],
["11415729","Judy V","https://jvzcreations.blogspot.com/2019/12/winnie-winter-birthday-gifts.html",null,1576077122],
["11415732","Judy V","https://jvzcreations.blogspot.com/2019/12/tis-season.html",null,1576077482],
["11415893","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/12/christmas-card-using-aurora-wings.html",null,1576128677],
["11416028","Nancy Edwards","https://pinkpanoply.blogspot.com/2019/12/dazzling-christmas-tree-card-dreaming.html",null,1576166258],
["11416114","Silke","https://kartenkram.blogspot.com/2019/12/fur-feiertage-voller-magie.html",null,1576177956],
["11416206","Valerija","https://moje-veselje.blogspot.com/2019/12/sestavljena-snezinka.html",null,1576190620],
["11416226","Steffi H.","https://www.flickr.com/photos/spinkymausi/49210888336/in/dateposted/",null,1576196444],
["11416321","pinky","https://pinkysworldsuprojects.blogspot.com/2019/12/floral-essence-birthday-card.html",null,1576234005],
["11416324","monique","https://moniqueschattefor.blogspot.com/2019/12/voedertijd.html",null,1576235069],
["11416482","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/12/hoera.html",null,1576261491],
["11416530","elizabeth h","http://warmharted.blogspot.com/2019/12/happy-hour.html",null,1576270311],
["11416556","AJ","https://ajcreativeenergy.blogspot.com/2019/12/ice-queen.html",null,1576277883],
["11416628","Pam D","https://itisfinisheddesigns.blogspot.com/2019/12/winters-butterflies.html",null,1576313360],
["11416640","Cinderella1","https://cinderellasdreamcardsblog.blogspot.com/2019/12/merry-christmas.html",null,1576316971],
["11416641","Cinderella2","https://cinderellasdreamcardsblog.blogspot.com/2019/12/christmas-card-kerst-kaart.html",null,1576317071],
["11416642","Cinderella3","https://cinderellasdreamcardsblog.blogspot.com/2019/12/kerst-tag-christmas-tag.html",null,1576317193],
["11416643","Cinderella4","https://cinderellasdreamcardsblog.blogspot.com/2019/12/hohoho.html",null,1576317291],
["11416649","Hazel","https://craftyhazelnut.blogspot.com/2019/12/chnc-challenge-468.html",null,1576318485],
["11416755","Ellie","https://www.simplyellibelle.com/2019/12/allsorts-challenge-550-inspired-by-song.html",null,1576337940],
["11416765","Dawn S","https://dawnscraftybits.blogspot.com/2019/12/spring-jasmine.html",null,1576339016],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}