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("14Dec2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRkZWMyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("14 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Dec2018");
blenza_linkies("thumb","lozzy","14Dec2018","378945262",3,
[
// MTRkZWMyMDE4
["11290332","nnalorac","https://somethinggonemissing.blogspot.com/2018/12/dis-digi-designs-challenge-winter.html",null,1544866432],
["11290374","tinyworks","http://tinyworks81.blogspot.com/2018/12/card-christmas-winter-dt-magnolia.html",null,1544876319],
["11290412","Irene","https://madeinborgo.blogspot.com/2018/12/calendario-dellavvento-mixed-media.html",null,1544882291],
["11290424","Hanna","https://hannapannabloggar.blogspot.com/2018/12/shiny-tilda.html",null,1544883473],
["11290534","Craftartista","https://craftartista.blogspot.com/2018/12/waiting-for-christmas.html",null,1544900058],
["11290535","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/12/sparkles-monthly-challenges-ch111-dt.html",null,1544900115],
["11290538","Craftartista","https://craftartista.blogspot.com/2018/12/miss-you.html",null,1544900886],
["11290548","Craftartista","https://craftartista.blogspot.com/2018/12/package-delivered-to-belarmina.html",null,1544903099],
["11290570","Rijacki Ledum","https://rijacki.blogspot.com/2018/12/forever-love.html",null,1544910047],
["11290616","Gloria Shirr","https://purpleglocreations.blogspot.com/2018/12/christmas-card-using-crafters-companion.html",null,1544925161],
["11290679","Aimeslee Winans","https://paper-paisleys.blogspot.com/2018/12/tuesday-morning-sketch-483-thankful.html",null,1544942967],
["11290713","Hazel","https://craftyhazelnut.blogspot.com/2018/12/chnc-challenge-416.html",null,1544952810],
["11290723","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/12/voor-nicolette.html",null,1544955901],
["11290736","jenimc","https://jenicraftroom.blogspot.com/2018/12/cute-fc.html",null,1544961471],
["11290862","jenimc","https://jenicraftroom.blogspot.com/2018/12/christmas-tree.html",null,1544979485],
["11290865","America","https://cardsbyamerica.blogspot.com/2018/12/die-cutting-ideas-tips-christmas.html",null,1544981158],
["11290927","Craftartista","https://craftartista.blogspot.com/2018/12/i-love-christmas-shopping.html",null,1545002044],
["11290952","Olivia","https://ormcraftynights.blogspot.com/2018/12/paper-rosette-wreath.html",null,1545004663],
["11290958","Crafty Cards by Marg","https://craftycardsbymarg.blogspot.com/2018/12/a-skully-christmas.htmll",null,1545006582],
["11290967","Pam Sebring","http://psebring.blogspot.com/2018/12/christmas-gifts.html",null,1545012735],
["11290994","Aimeslee Winans","https://paper-paisleys.blogspot.com/2018/12/mojo-monday-sketch-card-thank-you.html",null,1545022388],
["11291013","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/12/nevaeh.html",null,1545031157],
["11291020","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2018/12/mechanical.html",null,1545033953],
["11291026","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2018/12/money-wallet.html",null,1545034675],
["11291034","monique","https://moniqueschattefor.blogspot.com/2018/12/kerstboom-eenhoorn.html",null,1545037275],
["11291041","creativEle","https://creativele.blogspot.com/2018/12/a-touch-of-love-for-my-best-wishes.html",null,1545038487],
["11291057","Carole J","https://cjcrafty.blogspot.com/2018/12/vera-lane-studio-matilda-2019.html",null,1545040551],
["11291069","Sherry G","http://loosestitchesandunraveledthreads.blogspot.com/2018/12/the-creative-crafters-challenge-11.html",null,1545043842],
["11291095","Valeryanne","https://itsanalienlife.blogspot.com/2018/12/quack-over-eight.html",null,1545050791],
["11291133","Carla","https://carla-writes.blogspot.com/2018/12/my-besties-img-201821615-xmas-card.html",null,1545054222],
["11291144","Beverly Cole","https://bevsbliss.blogspot.com/2018/12/watercolor-pencils-are-not-just-for.html",null,1545057864],
["11291152","Mindy Baxter","https://www.mycreativescoop.com/sweet-christmas-with-pink-and-main-stamps/",null,1545059072],
["11291167","Natasa","https://najboljsezelje.blogspot.com/2018/11/mavricne-smrecice.html",null,1545061251],
["11291224","CarolG NZ","https://creationsnz.blogspot.com/2018/12/birthday-ten.html",null,1545068290],
["11291262","Shamita","https://spiralcreativity.blogspot.com/2018/12/singing-reindeer.html",null,1545081926],
["11291264","Vannessa","http://saffiresstamping.blogspot.com/2018/12/oh-kitty-tree-oh-kitty-tree-how-lovely.html",null,1545082396],
["11291341","Maxine D .","https://kiwimeskreations.blogspot.com/2018/12/peek-boo-lighthouse.html",null,1545114669],
["11291364","Rosina","http://rosina-scrapcards.blogspot.com/2018/12/gefeliciteerd_18.html",null,1545123291],
["11291374","Aimeslee Winans","https://paper-paisleys.blogspot.com/2018/12/thank-you-card-say-it-with-flowers.html",null,1545124862],
["11291393","Craftartista","https://craftartista.blogspot.com/2018/12/believe-in-magic-of-season.html",null,1545132086],
["11291407","Karen Dunbrook","https://snippets-karen.blogspot.com/2018/12/silver-snowflake.html",null,1545135044],
["11291409","Birgit","https://cardsrfun.blogspot.com/2018/12/merry-and-bright.html",null,1545135478],
["11291411","Pippa","https://viewsfrommycraftroom.blogspot.com/2018/12/path-of-positivity-half-way-post.html",null,1545135917],
["11291445","Carole J","https://cjcrafty.blogspot.com/2018/12/vera-lane-studio-holiday-monsters.html#comment-form",null,1545143950],
["11291468","Julie Reed","https://pumpkinbellycards.blogspot.com/2018/12/party-time.html",null,1545148868],
["11291514","Julie T","https://juliescraftyspot.blogspot.com/2018/12/its-party.html",null,1545155830],
["11291523","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2018/12/18/cards-und-more-advent-with-friends-day-18/",null,1545160752],
["11291530","Renate","https://dotjesparelsenjuweeltjes.blogspot.com/2018/12/gorjuss-ruby.html",null,1545163218],
["11291536","Ellie","https://www.ellibellescorner.com/2018/12/midway-reminder-for-penny-black-and.html",null,1545165224],
["11291571","Craftartista","https://craftartista.blogspot.com/2018/12/warm-christmas-wishes.html",null,1545176336],
["11291599","Pam Sebring","http://psebring.blogspot.com/2018/12/martini-gal.html",null,1545189857],
["11291696","Craftartista","https://craftartista.blogspot.com/2018/12/happy-santa-clause.html",null,1545213828],
["11291706","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/12/filigree-just-because.html",null,1545217817],
["11291708","Ella","https://mojeszydelkoweprzygody.blogspot.com/2018/12/creative-moments-1912.html",null,1545217850],
["11291729","Carole J","https://cjcrafty.blogspot.com/2018/12/winter-stag-in-snow-shaker-card.html",null,1545223994],
["11291742","Hazel L","http://hazel-hazelshappyhouse.blogspot.com/2018/12/congratulations-christina.html",null,1545227461],
["11291911","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2018/12/pretty-purple-pansies.html",null,1545253875],
["11291912","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com/2018/12/pretty-pink-pansies.html",null,1545253991],
["11291927","AJ","https://ajcreativeenergy.blogspot.com/2018/12/sleepy-star-elf.html",null,1545257558],
["11291934","Craftartista","https://craftartista.blogspot.com/2018/12/package-delivered-to-olga.html",null,1545261334],
["11292061","Nisha","https://creationspersonalised.blogspot.com/2018/12/floral-card.html",null,1545301675],
["11292090","*Vicki*","https://stampedsmiles.com/2018/12/20/anything-goes-for-cute-card-thursday-4/",null,1545314196],
["11292109","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2018/12/ik-heb-vandaag-een-kerstkaart-gemaakt.html",null,1545317821],
["11292144","Claudia","http://knutselmeisjes.blogspot.com/2018/12/babykaartje.html",null,1545334038],
["11292157","AJ","https://ajcreativeenergy.blogspot.com/2018/12/joy-noel-nativity.html",null,1545337127],
["11292206","Pam Sebring","http://psebring.blogspot.com/2018/12/christmas-joy.html",null,1545363170],
["11292247","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2018/12/friday-and-last-weekend-before-christmas.html",null,1545378090],
["11292280","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2018/12/une-carte-pour-marjo.html",null,1545387972],
["11292284","Lilian B","http://lillyb46.blogspot.com/2018/12/last-post-before-christmas.html",null,1545389847],
["11292427","Patty Sue2","https://patty-inkitup.blogspot.com/2018/12/a-wee-snowman.html",null,1545416107],
["11292443","Kym","https://kyms-crafty-cards.blogspot.com/2018/12/ching-chou-kuiks-digital-stamps_21.html",null,1545418250],
["11292453","Gloria Shirr ","https://purpleglocreations.blogspot.com/2018/12/all-occasion-card-using-conie-fong.html",null,1545419244],
["11292456","AJ","https://ajcreativeenergy.blogspot.com/2018/12/christmas-penguins.html",null,1545419361],
["11292473","Craftartista","https://craftartista.blogspot.com/2018/12/dear-santa.html",null,1545425214],
["11292479","Craftartista","https://craftartista.blogspot.com/2018/12/love-and-peace.html",null,1545426080],
["11292484","Craftartista","https://craftartista.blogspot.com/2018/12/package-delivered-to-ike.html",null,1545428082],
["11292551","Megan Flynn","https://meganscraftasticcraft.blogspot.com/2018/12/party-animal-gift-tag.html",null,1545456222],
["11292561","Nisha","https://creationspersonalised.blogspot.com/2018/12/hot-chocolate.html",null,1545461439],
["11292686","Arpita","https://arpitashouseofcreation.blogspot.com/2018/12/altered-bottle-candle-holder.html",null,1545495455],
["11292688","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/12/una-card-veloce.html",null,1545496146],
["11292712","Hazel","https://craftyhazelnut.blogspot.com/2018/12/chnc-challenge-417.html",null,1545504199],
["11292731","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/12/i-made-these-ornaments-gingerbread-and.html",null,1545509346],
["11292824","Priyadarshini","https://simpleartcraft.wordpress.com/2018/12/23/cas-christmas-card/",null,1545547641],
["11292825","Megan Flynn","https://meganscraftasticcraft.blogspot.com/2018/12/all-things-grow-with-love-gift-tag.html",null,1545548384],
["11292856","cheiro urgia","https://cheirourgia.blogspot.com/2018/12/christmas-cas.html",null,1545563237],
["11292908","Nicky","https://stiggyscrafts.blogspot.com/2018/12/vouchers-for-christmas.html",null,1545578220],
["11292910","Tina - Pendulum Card","https://paperplotterlottas-craftchaos.blogspot.com/2018/12/oddball-creepy-cute-chronicles-ccc32.html",null,1545578415],
["11292963","Vivi Casale","http://handmadebyvivi.blogspot.com/2018/12/merry-christmas_23.html",null,1545593765],
["11293105","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/12/celebrate_24.html",null,1545641779],
["11293134","Nisha","https://creationspersonalised.blogspot.com/2018/12/dil-ke-kalam-se.html",null,1545648315],
["11293194","Deonna B","https://ialwayslovetomakecards.blogspot.com/2018/12/i-made-some-shaker-ornaments-also.html",null,1545660221],
["11293210","Anna","https://nonsolocard.blogspot.com/2018/12/special-delivery.html",null,1545663791],
["11293232","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/12/babykaart.html",null,1545673283],
["11293318","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/12/happy-birthday-en-fijne-feestdagen.html",null,1545740899],
["11293322","Aimeslee Winans","https://paper-paisleys.blogspot.com/2018/12/merry-christmas-and-noel.html",null,1545741790],
["11293402","Craftartista","https://craftartista.blogspot.com/2018/12/secret-santa-swap-2018.html",null,1545776937],
["11293425","Craftartista","https://craftartista.blogspot.com/2018/12/package-delivered-to-elizabeth.html",null,1545782155],
["11293444","Gloria Shirr ","https://purpleglocreations.blogspot.com/2018/12/christmas-card-using-ctmh-cricut-season_25.html",null,1545802899],
["11293448","Junebug Creations","https://junebugcreations.wordpress.com/2018/12/25/gdp170-sketch-challenge",null,1545804507],
["11293456","Margreet","https://margreets-scrapcards.blogspot.com/2018/12/kkt-okerdonkerblauw.html",null,1545808061],
["11293635","Craftartista","https://craftartista.blogspot.com/2018/12/package-delivered-to-conchi.html",null,1545861653],
["11293657","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2018/12/feeling-sketchy-skatlica-36-jelen-in.html",null,1545867790],
["11293663","America","https://cardsbyamerica.blogspot.com/2018/12/a-golden-musical-note.html",null,1545870820],
["11293682","bharatinayudu","https://bharatinayudu.com/2018/12/19/christmas-with-tubby-craft/",null,1545885623],
["11293751","Earl~lea","https://earl-lea-riser.blogspot.com/2018/12/sleddin-shaker.html",null,1545918195],
["11293809","Craftartista","https://craftartista.blogspot.com/2018/12/package-delivered-to-esther.html",null,1545929879],
["11293850","Teresa","http://redobsessioncards.blogspot.com/2018/12/frosty.html?m=1",null,1545943961],
["11293866","Teresa","http://redobsessioncards.blogspot.com/2018/12/winter-spirit.html?m=1",null,1545952537],
["11293872","Teresa","http://redobsessioncards.blogspot.com/2018/12/blue-christmas.html?m=1",null,1545954483],
["11294002","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/12/new-atg-challenge-prize-1-year.html",null,1545982362],
["11294038","Desire Fourie","https://desiref.blogspot.com/2018/12/a-time-to-make-magic-digistamps4joy.html",null,1545993472],
["11294108","Craftartista","https://craftartista.blogspot.com/2018/12/rhapsody.html",null,1546008875],
["11294157","Silke","https://kartenkram.blogspot.com/2018/12/tier-boxen.html",null,1546017465],
["11294231","Aimeslee Winans","https://paper-paisleys.blogspot.com/2018/12/time-for-some-birthday-cards.html",null,1546036411],
["11294259","Leslie Turner","http://lovetoscrap2.com/2018/12/24/if-the-tiara-fits-tag",null,1546044390],
["11294312","bharatinayudu","https://bharatinayudu.com/2018/12/15/joining-the-celebrations-at-tubby-crafts/",null,1546058231],
["11294324","bharatinayudu","https://bharatinayudu.com/2018/12/07/winter-christmas-theme-at-patties-creations-challenge/",null,1546061024],
["11293682","bharatinayudu","https://bharatinayudu.com/2018/12/19/christmas-with-tubby-craft/",null,0],
["11293682","bharatinayudu","https://bharatinayudu.com/2018/12/19/christmas-with-tubby-craft/",null,0],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}