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("31Dec2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzFkZWMyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("14 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("31Dec2018");
blenza_linkies("thumb","lozzy","31Dec2018","76997040",3,
[
// MzFkZWMyMDE4
["11295224","Megan Flynn","https://meganscraftasticcraft.blogspot.com/2019/01/follow-your-dreams-gift-tag.html",null,1546336449],
["11295225","pinky","https://pinkysworldsuprojects.blogspot.com/2019/01/forever-lovely-gift-box-tutorial.html",null,1546336824],
["11295228","Desire Fourie","https://desiref.blogspot.com/2019/01/a-time-to-make-magic-digistamps4joy.html",null,1546337864],
["11295233","Hazel","https://craftyhazelnut.blogspot.com/2019/01/craftyhazelnuts-patterned-paper-january.html",null,1546339706],
["11295239","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2019/01/its-tuesday-and-time-for-new-challenge.html",null,1546340586],
["11295244","Jackie T","https://tinyrosecr.blogspot.com/2019/01/crafts-galore-encore-challenge-blog.html",null,1546342210],
["11295251","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/01/50-jaar.html",null,1546343307],
["11295259","tinyworks","http://tinyworks81.blogspot.com/2019/01/tag-button-dt-magnolia-forever.html",null,1546345142],
["11295284","Tina - happy new year","https://paperplotterlottas-craftchaos.blogspot.com/2019/01/odddball-january-blog-challenge-happy.html",null,1546350423],
["11295288","CarolG NZ ","https://creationsnz.blogspot.com/2019/01/snail-bravo.html",null,1546351658],
["11295296","Carla","https://carla-writes.blogspot.com/2019/01/roof-top-santa-card.html",null,1546352758],
["11295310","Jolanda","http://jolandasblogs.blogspot.com/2019/01/ice-queen.html",null,1546357411],
["11295329","Kym","https://kyms-crafty-cards.blogspot.com/2019/01/ching-chou-kuik-digital-stamps-january.html",null,1546360412],
["11295385","tinyworks","http://tinyworks81.blogspot.com/2019/01/segnalibro-hot-cuppa-girl-dt-lemon.html",null,1546366627],
["11295406","Craftartista","https://craftartista.blogspot.com/2019/01/happy-new-year.html",null,1546369295],
["11295466","Kinda Cute Cards","https://kindacutecards.blogspot.com/2019/01/i-am-back-and-i-have-preview-of-my-new.html",null,1546376759],
["11295477","Linda Mc Enery","https://lindamscreations.blogspot.com/2019/01/my-besties-aussies-january-challenge.html",null,1546378208],
["11295478","Plony","https://plonysbloggie.blogspot.com/2019/01/een-nieuw-jaar.html",null,1546378813],
["11295503","Donna R","https://indianainking.blogspot.com/2019/01/new-year-new-challenge.html",null,1546382382],
["11295504","Crafty Cards by Marg (1)","https://craftycardsbymarg.blogspot.com/2019/01/a-dt-card-to-say-happy-new-year.html",null,1546382624],
["11295505","Crafty Cards by Marg (1)","https://craftycardsbymarg.blogspot.coml",null,0],
["11295539","Carole Jones","https://cjcrafty.blogspot.com/2019/01/gecko-galz-love-stories.html",null,1546393664],
["11295667","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2019/01/welcome-to-first-wednesday-in-2019.html",null,1546420911],
["11295682","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/01/ospite-su-scrapper-della-notte_2.html",null,1546425734],
["11295727","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/01/snow-much-fun-at-crafty-gals-corner.html",null,1546434916],
["11295799","Angie","https://cimbacreativefun.blogspot.com/2019/01/fresh-lemonade-with-newtons-nook.html",null,1546441405],
["11295806","Kali","https://bastelgrotte.de/?p=11763",null,1546441727],
["11295821","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/01/nieuwe-baan.html",null,1546444386],
["11295834","Rijacki Ledum","https://rijacki.blogspot.com/2019/01/new-wonders-sheepski-designs.html",null,1546446978],
["11295989","Davinia","https://ifindoubtbling.blogspot.com/2019/01/new-adventure.html",null,1546487733],
["11296041","Tina - moving message card","https://paperplotterlottas-craftchaos.blogspot.com/2019/01/oddball-creepy-cute-chronicles-ccc34.html",null,1546508141],
["11296047","pinky","https://pinkysworldsuprojects.blogspot.com/2019/01/family-and-friends-gift-card.html",null,1546510746],
["11296049","bharatinayudu","https://bharatinayudu.com/2019/01/01/casology-fresh/",null,0],
["11296075","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/01/kerstkaart-week-1.html",null,1546520545],
["11296084","Nisha","https://creationspersonalised.blogspot.com/2019/01/happy-new-year.html",null,1546523483],
["11296101","Michelle Lancaster","https://laughingducks2012.blogspot.com/2019/01/swan-die-cut-card.html",null,1546523697],
["11296114","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/01/we-zijn-weer-een-nieuwe-wedstrijd.html",null,1546525436],
["11296134","*Vicki*","https://stampedsmiles.com/2019/01/03/whimsy-stamps-january-digital-new-release-is-here-anything-goes-at-cute-card-thursday/",null,1546527266],
["11296179","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/01/wesoa-kartka-dla-dziadka.html",null,1546534022],
["11296180","Faith A","https://daffodil-faitha.blogspot.com/2019/01/angel.html",null,1546534199],
["11296185","Tip Top","http://tiptoptoppers.blogspot.com/2019/01/crimbo-crackers-challenge-175-anything.html",null,1546535929],
["11296186","Kinda Cute Cards","https://kindacutecards.blogspot.com/2019/01/cas-valentines-day-card.html",null,1546536133],
["11296210","Jackie T","https://tinyrosecr.blogspot.com/2019/01/thank-you-with-flowers-and-butterflies.html",null,1546544029],
["11296211","Silke","https://kartenkram.blogspot.com/2019/01/stay-warm.html",null,1546544313],
["11296214","Glittertastic","https://glittertastic.blogspot.com/2019/01/camp-fire.html",null,1546545896],
["11296222","Janes Journal","https://jane-janesjournal.blogspot.com/2019/01/a-little-colour-in-january.html",null,1546547098],
["11296226","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/happy-happy-birthday.html",null,1546548181],
["11296227","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/love-friendship-laughter.html",null,1546548239],
["11296230","Tone K.","http://tonesscrapperom.blogspot.com/2019/01/stjernekort-starcards.html",null,1546549085],
["11296239","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2019/01/unicorn-love.html",null,1546552430],
["11296319","Margreet","https://margreets-scrapcards.blogspot.com/2019/01/sweet-romance.html",null,1546584043],
["11296328","Lia","https://liadesignandso.blogspot.com/2019/01/winter-in-goud-en-wit-en-300-volgers-ik.html",null,1546587695],
["11296342","tinyworks","http://tinyworks81.blogspot.com/2019/01/card-erica-dt-le-anns-world-101.html",null,1546593963],
["11296345","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/01/une-nouvelle-carte-et-une-autre-qui-gagne.html",null,1546595285],
["11296386","Craftartista","https://craftartista.blogspot.com/2019/01/package-delivered-to-annie.html",null,1546608552],
["11296408","NanaConnie","http://mygrammysattic.blogspot.com/2019/01/hatching-new-world.html",null,1546611959],
["11296409","Pat K","https://patkscards.blogspot.com/2019/01/winter-wonderland-january-challenge.html",null,1546611965],
["11296441","Janes Journal","http://jane-janesjournal.blogspot.com/2019/01/january-theme-and-sketch-challenge-at.html",null,1546616638],
["11296455","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/01/happy-new-year.html",null,1546619319],
["11296465","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2019/01/04/baby-boy-shadow-box/",null,1546620990],
["11296481","Bharati Nayudu","https://bharatinayudu.com/2019/01/01/casology-fresh/",null,1546624192],
["11296485","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/01/een-creatief-kaartje.html",null,1546624904],
["11296521","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/enjoy-chills-of-winter-bugaboo-free.html",null,1546631755],
["11296526","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/take-time-to-small-coffee-crafty-catz.html",null,1546632343],
["11296533","niki1","https://www.splitcoaststampers.com/gallery/photo/2907150?&cat=500&ppuser=205884",null,1546636412],
["11296552","Mary Marsh","https://thecharmedlife-maryr917.blogspot.com/2019/01/to-you-yours.html",null,1546641588],
["11296577","Shamita","https://spiralcreativity.blogspot.com/2019/01/first-snowflake.html",null,1546649452],
["11296591","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/01/you-are-tea-rrific.html",null,1546653405],
["11296646","Aileen Ryan","https://colourandsparkle.blogspot.com/2019/01/three-fairies-and-dog.html",null,1546676256],
["11296691","Wies","https://wiescreablog.blogspot.com/2019/01/kaart-in-het-wit.html",null,1546691303],
["11296726","cheiro urgia","https://cheirourgia.blogspot.com/2019/01/winter-tree.html",null,1546694836],
["11296731","Hazel","https://craftyhazelnut.blogspot.com/2019/01/chnc-challenge-419.html",null,1546695301],
["11296767","The Creative Twins","https://thecreativetwins.blogspot.com/2019/01/ethnic-fridge-magnets.html",null,1546701503],
["11296782","Ellie","https://www.ellibellescorner.com/2019/01/allsorts-501-hearts-and-flowers.html",null,1546706648],
["11296789","Gale K","https://galesstampingcorner.blogspot.com/2019/01/all-things-frosty.html",null,1546707712],
["11296791","Pam Sebring","http://psebring.blogspot.com/2018/12/holiday-ornaments-sketch.html",null,1546707728],
["11296794","Pam Sebring","http://psebring.blogspot.com/2018/12/bestys-birthday-cake.html",null,1546707795],
["11296825","Janie","https://crafterscastle.blogspot.com/2019/01/fun-with-color-bursts.html",null,1546713400],
["11296831","Crealientje","https://isocrealientje.blogspot.com/2019/01/diploma-a.html",null,1546714043],
["11296846","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/congrats-you-deserve-to-be-celebrated.html",null,1546717135],
["11296889","jenimc","https://jenicraftroom.blogspot.com/2019/01/waterlily-girl.html",null,1546722474],
["11296984","Granne","https://aavamaki.blogspot.com/2019/01/laminated-bookmark.html",null,1546759377],
["11296993","Lisa :D","https://royalpumpkinart.blogspot.com/2019/01/anything-goes-new-challenge-with.html",null,1546761979],
["11297011","Megan Flynn","https://meganshappycraftcreations.blogspot.com/2019/01/happy-birthday-small-size-card.html",null,1546767472],
["11297019","Viv","http://vivsvisuals.blogspot.com/2019/01/a-new-challenge-year-at-stamping.html",null,1546770038],
["11297039","Teresa","http://redobsessioncards.blogspot.com/2019/01/dream-big.html",null,1546775924],
["11297043","Helen","https://helenscrafthaven.blogspot.com/2019/01/pile-it-on-challenge-land-animals.html",null,1546776444],
["11297044","Hazel L","http://hazel-hazelshappyhouse.blogspot.com/2019/01/iaas-cat-or-dog.html",null,1546776653],
["11297109","Deonna B","http://ialwayslovetomakecards.blogspot.com/2019/01/mason-jar-shaker-tags.html",null,1546785755],
["11297113","Michelle Lancaster","https://laughingducks2012.blogspot.com/2019/01/lavinia-fairy.html",null,1546785959],
["11297120","Epie","https://cards-by-epie.blogspot.com/2019/01/be-challenched.html",null,1546786983],
["11297133","Teresa","http://redobsessioncards.blogspot.com/2019/01/hearts-for-my-valentine.html",null,1546788658],
["11297160","Kinda Cute Cards","https://kindacutecards.blogspot.com/2019/01/valentines-day-card-with-lizard.html",null,1546792896],
["11297201","Sari K","https://nasumuori.blogspot.com/2019/01/100-beautiful.html",null,1546800262],
["11297203","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/hoping-you-have-amazing-birthday.html",null,1546800862],
["11297209","Chriss","https://chrissandlou.blogspot.com/2019/01/international-art-soul-challenge-49.html",null,1546802553],
["11297240","Nicky","https://stiggyscrafts.blogspot.com/2019/01/mr-and-mr-engagement-card.html",null,1546806671],
["11297261","CreaNancy","https://creanancy.blogsphttps://creanancy.blogspot.com/2019/01/catch-bug-challenge.htmlot.com/2019/01/gastdesigner-bij-mijn-hobbyhonk.html",null,0],
["11297262","CreaNancy","https://creanancy.blogspot.com/2019/01/catch-bug-challenge.html",null,1546810327],
["11297269","Hazel","https://craftyhazelnut.blogspot.com/2019/01/happu-40th-birthday.html",null,1546812213],
["11297273","Hazel","https://craftyhazelnut.blogspot.com/2019/01/golden-wedding-card.html",null,1546813122],
["11297351","elizabeth h","http://warmharted.blogspot.com/2019/01/all-dressed-up.html",null,1546832449],
["11297368","jackie cornfield","https://getthejclook.blogspot.com/2019/01/new-beginnings-ching-chou-kuik.html",null,1546842833],
["11297370","Junebug Creations","https://junebugcreations.wordpress.com/2019/01/06/an-animal-outing-double-challenge",null,1546843074],
["11297380","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/01/happy-birthday.html",null,1546846672],
["11297421","Birgit","https://cardsrfun.blogspot.com/2019/01/training-diary.html",null,1546861544],
["11297432","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/01/anything-goes-at-dream-valley.html",null,1546864942],
["11297476","Monica C.","https://sunshinecreativity.blogspot.com/2019/01/the-importance-of-being-creative.html",null,1546872119],
["11297479","Carla","https://carla-writes.blogspot.com/2019/01/surfing-memory-dex-card.html",null,1546872250],
["11297522","Deonna B","http://ialwayslovetomakecards.blogspot.com/2019/01/snowman-peeker-embellishments.html",null,1546874517],
["11297599","Ellie","https://www.ellibellescorner.com/2019/01/a-little-bit-of-magic-and-new-january.html",null,1546889471],
["11297607","Hannapanna","https://hannapannabloggar.blogspot.com/2019/01/challenge-13-simply-magnolia.html",null,1546890761],
["11297614","Vannessa","http://saffiresstamping.blogspot.com/2019/01/lawn-fawn-thanks-latte-slider.html",null,1546891791],
["11297618","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/01/ancora-card-natalizie.html",null,1546892386],
["11297646","Lisa Bird","https://craftycard-designs.co.uk/have-a-wonderful-birthday-2/",null,1546896358],
["11297656","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/giving-thanks.html",null,1546897661],
["11297663","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/thank-you-for-inspiring-me-always-fun.html",null,1546898797],
["11297679","Craftartista: Mia","https://craftartista.blogspot.com/2019/01/fish-and-mandala.html",null,1546901415],
["11297729","Karthikha","http://loveforkrafts.blogspot.com/2019/01/tower-box-for-birthday.html",null,1546919457],
["11297766","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/01/hoera-een-zoon.html",null,1546931854],
["11297777","Tracey Brossart","https://brossartaddiction.blogspot.com/2019/01/a-new-sketchy-cardspiration-5-my-heart.html",null,1546938666],
["11297783","Plony","https://plonysbloggie.blogspot.com/2019/01/dancing-queen.html",null,1546942368],
["11297791","Teresa","http://redobsessioncards.blogspot.com/2019/01/thank-you-trees.html?m=1",null,1546945690],
["11297796","Hazel","https://craftyhazelnut.blogspot.com/2019/01/merry-christmas.html",null,1546946829],
["11297806","J. Atterbury Creations","https://jatterburycreations.blogspot.com/2019/01/scripture-series-armor-of-god-card-join.html",null,1546949840],
["11297807","J. Atterbury Creations","https://jatterburycreations.blogspot.com/2019/01/encouragement-series-take-deep-breath.html",null,1546950038],
["11297842","creativEle","https://creativele.blogspot.com/2019/01/anything-goes-at-crafty-sentiments.html",null,1546952981],
["11297860","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/01/encouraging-words.html",null,1546956658],
["11297869","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/01/een-kerstkaart-gemaakt-in-de-vorm-van.html",null,1546957599],
["11297874","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/01/due-pinguini-innamorati.html",null,1546958806],
["11297916","Hazel","https://craftyhazelnut.blogspot.com/2019/01/happy-new-year.html",null,1546962520],
["11297926","amit","https://sisterscreatecards.blogspot.com/2019/01/blog-post_8.html",null,1546965248],
["11297938","Teresa","http://redobsessioncards.blogspot.com/2019/01/on-cloud-nine.html?m=1",null,1546968180],
["11297941","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/01/babykaartje.html",null,1546969967],
["11297951","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/loving-you-more-each-day-bugaboo.html",null,1546972467],
["11297966","Teresa","http://redobsessioncards.blogspot.com/2019/01/lazy-days.html?m=1",null,1546975662],
["11298059","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/01/christmas-card-using-conie-fong-snowy.html",null,1547009593],
["11298148","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/01/due-gnomi-per-natale.html",null,1547027440],
["11298152","Katrine","https://katrinehspapirverden.blogspot.com/2018/11/julekort-med-reinsdyr.html",null,1547028290],
["11298154","Katrine","https://katrinehspapirverden.blogspot.com/2019/01/en-frossen-vinterklem.html",null,1547028541],
["11298181","Valeryanne","https://itsanalienlife.blogspot.com/2019/01/snowflakes.html",null,1547035214],
["11298213","Donna T","https://lakefrontstampingcreations.blogspot.com/2018/01/fluttering-by.html",null,1547036326],
["11298413","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/giving-thanks_9.html",null,1547067476],
["11298444","Megan Flynn","https://meganshappycraftcreations.blogspot.com/2019/01/time-for-cake.html",null,1547076749],
["11298470","Monica C.","https://sunshinecreativity.blogspot.com/2019/01/the-best-sentiment.html",null,1547088033],
["11298509","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/01/flora-musica.html",null,1547103153],
["11298576","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/01/kerstkaart-week-2.html",null,1547129957],
["11298584","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/01/deze-keer-geen-kerstkaart-maar-een.html",null,1547131521],
["11298656","Leslie Turner","http://lovetoscrap2.com/2019/01/04/have-a-magical-day",null,1547146385],
["11298671","Leslie Turner","http://lovetoscrap2.com/2019/01/08/have-a-purrrfect-day",null,1547149867],
["11298685","Grietje's Kaartenhoekje","https://grietje78.blogspot.com/2019/01/koffie.html",null,1547151135],
["11298692","Leslie Turner","http://lovetoscrap2.com/2019/01/10/you-are-a-fabulous-work-of-art",null,1547151641],
["11298729","Craftartista: Mia","https://craftartista.blogspot.com/2019/01/package-delivered-to-francis.html",null,1547156961],
["11298736","America","https://cardsbyamerica.blogspot.com/2019/01/stained-glass-cards.html",null,1547157920],
["11298794","Mary Marsh","https://thecharmedlife-maryr917.blogspot.com/2019/01/happy-new-year.html",null,1547178130],
["11298802","Leslie Turner","http://lovetoscrap2.com/2019/01/01/tis-the-season-2",null,1547180022],
["11298806","Joy Wilson","https://joyfullystamps.blogspot.com/2019/01/sweet-little-turtle.html",null,1547180470],
["11298807","Leslie Turner","http://lovetoscrap2.com/2019/01/01/thank-you-gift-box",null,1547180537],
["11298811","Leslie Turner","http://lovetoscrap2.com/2019/01/01/old-guys-rule",null,1547181059],
["11298812","Lisa :D","https://royalpumpkinart.blogspot.com/2019/01/look-for-rainbow-in-every-storm.html",null,1547181247],
["11298813","Leslie Turner","http://lovetoscrap2.com/2019/01/01/happy-new-home",null,1547181617],
["11298815","Leslie Turner","http://lovetoscrap2.com/2019/01/01/je-taime",null,1547181791],
["11298834","Lisa :D","https://royalpumpkinart.blogspot.com/2019/01/anything-goes-new-challenge-with-angies.html",null,1547189179],
["11298836","Clare ","https://clarelloyd.blogspot.com/2019/01/gratitude.html",null,1547189823],
["11298846","Cicci with the Pen","https://ciccividpennan.blogspot.com/2019/01/new-atg-challenge-ttcrd-sponsor-paper.html",null,1547193136],
["11298854","decorcraftdesign","https://decorcraftdesign.wordpress.com/2019/01/06/upcycling-table-calendar-into-a-personalized-2019-planner/",null,1547197504],
["11298876","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/01/due-card-portasoldi.html",null,1547203364],
["11298924","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/01/best-birthday-fishes.html",null,1547210998],
["11298947","Grietje's Kaartenhoekje2","https://grietje78.blogspot.com/2019/01/creatieve-ochtend.html",null,1547215998],
["11298998","elizabeth h","http://warmharted.blogspot.com/2019/01/butterfly-beauty.html",null,1547224555],
["11299021","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/happy-birthday-bugaboo-free-friday.html",null,1547229293],
["11299025","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/happy-birthday-to-you-crafty-catz.html",null,1547229879],
["11299034","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/today-is-new-day-colour-crazy-challenge.html",null,1547231302],
["11299044","Kym","http://kyms-crafty-cards.blogspot.com/2019/01/ching-chou-kuiks-digital-stamps.html",null,1547232728],
["11299060","CreaNancy","https://creanancy.blogspot.com/2019/01/catch-bug-freebie-friday.html",null,1547235769],
["11299081","Junebug Creations","https://junebugcreations.wordpress.com/2019/01/11/geared-up-for-another-double-challenge",null,1547239401],
["11299118","Angie's Creations","https://angiescreationsblog.blogspot.com/2019/01/first-projects-of-new-year.html#links",null,1547256591],
["11299139","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com/2019/01/magical-birthday-wishes-with-paper.html",null,1547271086],
["11299140","TracyM 6773 (3)","https://tracyscraftyadventures.blogspot.com/2019/01/pink-scandinavian-flowers-with-neat.html",null,1547271181],
["11299141","TracyM 6773 (4)","https://tracyscraftyadventures.blogspot.com/2019/01/orange-scandinavian-flowers-with-neat.html",null,1547271315],
["11299181","Claudia","http://knutselmeisjes.blogspot.com/2019/01/chnc.html",null,1547285542],
["11299184","Hazel","https://craftyhazelnut.blogspot.com/2019/01/chnc-challenge-420.html",null,1547285988],
["11299213","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/01/last-throws-of-christmas.html",null,1547294330],
["11299279","Deonna B","http://ialwayslovetomakecards.blogspot.com/2019/01/heart-shaped-ornaments-shabby-style.html",null,1547302443],
["11299384","Rachel Taylor ","https://blossomcards.blogspot.com/2019/01/flower-power.html#links",null,1547313515],
["11299391","Ellie","https://www.ellibellescorner.com/2019/01/allsorts-502-milestones-with-numbers.html",null,1547314538],
["11299418","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/monster-bash-day-1-birthday-catch-bug.html",null,1547318833],
["11299454","Aunty Sue","https://auntysuescraftcavern.blogspot.com/2019/01/crafty-catz-challenge-atg-with-optional.html?m=1",null,1547328889],
["11299459","Lou Sims","https://lulucardmaking.blogspot.com/2019/01/tonic-studios-elegant-sleeve-dies.html",null,1547329958],
["11299575","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/01/saturday-card-share.html",null,1547365817],
["11299602","Rutscht","https://rutscht.blogspot.com/2019/01/atc-3-de-52.html",null,1547374453],
["11299622","Nisha","https://creationspersonalised.blogspot.com/2019/01/thank-you-card.html",null,1547379541],
["11299623","Nisha","https://creationspersonalised.blogspot.com/2019/01/sending-love.html",null,1547379679],
["11299625","Nisha","https://creationspersonalised.blogspot.com/2019/01/you-are-my-world.html",null,1547379812],
["11299653","Julie T","https://juliescraftyspot.blogspot.com/2019/01/frozen-tilda-winter-card.html",null,1547385921],
["11299780","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/monster-bash-day-2-birthday-catch-bug.html",null,1547407314],
["11299809","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/01/beterschap.html",null,1547412966],
["11299811","Rijacki Ledum","https://rijacki.blogspot.com/2019/01/beary-heart.html",null,1547413111],
["11299812","Zora","https://lofquisten.blogspot.com/2019/01/birthday.html",null,1547413125],
["11299860","Karthikha","http://loveforkrafts.blogspot.com/2019/01/altenew-layered-medallion-card-2.html",null,1547430324],
["11299864","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/01/spellbinders-pinks-and-pearls.html",null,1547431452],
["11299935","monique","https://moniqueschattefor.blogspot.com/2019/01/mijn-dt-kaart-voor-httpsscrapbookstamps.html",null,1547458486],
["11300112","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/01/sivan-vencek.html",null,0],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}