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("30Nov2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzBub3YyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("15 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("30Nov2018");
blenza_linkies("thumb","lozzy","30Nov2018","393869499",3,
[
// MzBub3YyMDE4
["11284637","nnalorac","https://somethinggonemissing.blogspot.com/2018/12/dis-digi-designs-challenge-for-child.html",null,1543655930],
["11284649","Alina","http://www.happycrafts.ch/2018/12/01/gnome-for-christmas/",null,0],
["11284657","Jackie T","http://tinyrosecr.blogspot.com/2018/12/crafts-galore-encore-december-challenge.html",null,1543660052],
["11284673","Ella","https://mojeszydelkoweprzygody.blogspot.com/2018/12/do-all-kreatives-challange-24.html",null,1543663344],
["11284695","cheiro urgia","https://cheirourgia.blogspot.com/2018/12/autumn-box.html",null,1543667297],
["11284714","Carla","https://carla-writes.blogspot.com/2018/12/a-wreath-christmas-card.html",null,1543670587],
["11284719","Cathymac","http://goldeninkspirations.blogspot.com/2018/12/welcome-to-odbd-december-2018-release.html",null,1543671391],
["11284720","Kym","https://kyms-crafty-cards.blogspot.com/2018/12/ching-chou-kuik-digital-stamps-december.html",null,1543671516],
["11284787","Craftartista","https://craftartista.blogspot.com/2018/12/will-you-marry-me.html",null,1543681342],
["11284846","cheiro urgia","https://cheirourgia.blogspot.com/2018/12/christmas-greenery.html",null,1543690659],
["11284875","Carole J","https://cjcrafty.blogspot.com/2018/12/crafts-galore-encore-alexs-christmas.html",null,1543696402],
["11284884","jenimc","https://jenicraftroom.blogspot.com/2018/12/snowdrop-winter.html",null,1543698762],
["11284936","Donna R","https://indianainking.blogspot.com/2018/12/holy-flurry-of-chaos.html",null,1543720000],
["11284969","Lisa :D","https://royalpumpkinart.blogspot.com/2018/12/diecember-day-one-skating-greetings.html",null,1543731395],
["11285021","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2018/11/morgans-artworld-open-challenge-12.html",null,1543745012],
["11285028","Sheryl Hare","https://marchharecards.blogspot.com/2018/12/curvy-and-beautiful.html",null,1543745512],
["11285034","Chandhini","https://thecreativetwins.blogspot.com/2018/12/monochrome-greeting-card.html",null,1543746290],
["11285064","Helen","https://helenscrafthaven.blogspot.com/2018/12/pile-it-on-challenge-shaped-cards.html",null,1543755337],
["11285126","Craftartista","https://craftartista.blogspot.com/2018/12/little-drummer-boy.html",null,1543763882],
["11285135","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/12/magnolia-forever-christmas-challenge.html",null,1543767266],
["11285144","Leslie Turner","http://lovetoscrap2.com/2018/12/01/let-it-snow-3",null,1543766285],
["11285145","Leslie Turner","http://lovetoscrap2.com/2018/12/01/snow-queen",null,1543766314],
["11285146","Hermien","https://handmadebyhermien.blogspot.com/2018/12/happy-birthday.html",null,1543766492],
["11285156","elizabeth h","http://warmharted.blogspot.com/2018/12/a-corgi-holiday.html",null,1543769101],
["11285216","Tammy L","https://tampatha.wordpress.com/2018/12/02/let-it-snow-2/",null,1543777063],
["11285222","Aimeslee Winans","https://paper-paisleys.blogspot.com/2018/12/birthday-christmas-cards.html",null,1543778903],
["11285243","Melanie Gee","https://melgeecrafts.com/2018/11/28/digi-doodle-studios-twinkle-berry-love/",null,1543783889],
["11285248","Paperesse","http://www.paperesse.com/2018/12/happy-winter-anniversary-card.html",null,1543784601],
["11285261","Vivi Casale","http://handmadebyvivi.blogspot.com/2018/12/obrigada.html",null,1543788795],
["11285268","Anet","https://anetscrafting.blogspot.com/2018/12/special-day-card-le-petit-jardin.html",null,1543791688],
["11285279","elizabeth h","http://warmharted.blogspot.com/2018/12/lantern-girl.html",null,1543797954],
["11285333","Kym","http://kyms-crafty-cards.blogspot.com/2018/12/special-wishes-happy-birthday.html",null,1543821199],
["11285335","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/12/happy-birthday.html",null,1543821593],
["11285345","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2018/12/jaynes-roses.html",null,1543824542],
["11285360","monique","https://moniqueschattefor.blogspot.com/2018/12/een-winterse-kerst.html",null,1543827467],
["11285366","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/12/hoera-een-zoon.html",null,1543829787],
["11285372","Emma R","https://emgoescardmaking.blogspot.com/2018/12/under-mistletoe.html",null,1543832739],
["11285374","tinyworks","https://tinyworks81.blogspot.com/2018/12/card-winter-designer-team-magnolia.html",null,1543832983],
["11285412","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2018/12/une-carte-assez-simple.html",null,1543839532],
["11285495","Dreja","https://drejasbastelwelt.blogspot.com/2018/12/noch-2-weihnachtsmauslein.html",null,1543848247],
["11285556","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/12/let-it-snow.html",null,1543853690],
["11285599","Rutscht","https://rutscht.blogspot.com/2018/12/baby-its-cold.html",null,1543859319],
["11285638","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2018/12/we-zijn-weer-met-een-nieuwe-wedstrijd.html",null,1543865164],
["11285729","Claudia Martins","https://1pandaideiascriativas.blogspot.com/2018/12/projeto-dt-rabisco-challenge.html",null,1543878530],
["11285733","Bisse","https://vasemmalkadella.blogspot.com/2018/12/joulukortti-5.html",null,1543879511],
["11285775","Donna R","https://indianainking.blogspot.com/2018/12/thinking-of-you-today.html",null,1543893087],
["11285794","Barbara Bruder","https://artandsoulcreations.blogspot.com/2018/12/a-reindeer-silhouette.html",null,1543900707],
["11285813","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2018/12/floral-heart-birthday-card_1.html",null,1543908240],
["11285814","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2018/12/high-top-birthday-card.html",null,1543908324],
["11285825","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/12/ospite-sulle-tre-pazze-paperine.html",null,1543912396],
["11285831","tina föcking","https://paperplotterlottas-craftchaos.blogspot.com/2018/12/oddball-surprise-rotary-card-video.html",null,1543915451],
["11285836","Davinia","https://ifindoubtbling.blogspot.com/2018/12/white-christmas.html",null,1543916754],
["11285843","Pippa","https://viewsfrommycraftroom.blogspot.com/2018/12/metallic-madness.html",null,1543919511],
["11285850","Kali","https://bastelgrotte.de/?p=11674",null,1543920860],
["11285855","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2018/12/passion-for-promarkers-mega-christmas.html",null,1543922011],
["11285859","Craftartista","https://craftartista.blogspot.com/2018/12/so-sweet.html",null,1543922583],
["11285892","Gerie","https://scraptastisch.blogspot.com/2018/12/gefeliciteerd.html",null,1543929625],
["11285912","Aimeslee Winans","https://paper-paisleys.blogspot.com/2018/12/abbreviated-thanks.html",null,1543932919],
["11285930","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2018/12/wreath-christmas-card.html",null,1543935748],
["11286023","Judy V","https://jvzcreations.blogspot.com/2018/12/house-of-cards-blog-hop.html",null,1543945741],
["11286027","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/12/huisje-in-de-sneeuw.html",null,1543946401],
["11286042","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2018/12/04/december-challenge-christmas-cards-facebook-group/",null,1543947674],
["11286063","CreaNancy","https://creanancy.blogspot.com/2018/12/elines-winterdiertjes-dinsdag-3.html",null,1543950631],
["11286109","Shamita","https://spiralcreativity.blogspot.com/2018/12/winter-building-snowman.html",null,1543956582],
["11286130","Dawn Frost","http://stamp-n-play.blogspot.com/2018/12/bugaboo-awkward-holiday-chaos-day-4.html",null,1543960410],
["11286169","Pam Sebring","http://psebring.blogspot.com/2018/12/merry-christmas-bear.html",null,1543971773],
["11286171","Craftartista","https://craftartista.blogspot.com/2018/12/package-delivered-to-artista-of-vovou.html",null,1543971816],
["11286185","Pam Sebring","http://psebring.blogspot.com/2018/12/snowfun.html",null,1543975676],
["11286190","Pam Sebring","http://psebring.blogspot.com/2018/12/dog-lites.html",null,1543977942],
["11286195","Craftartista","https://craftartista.blogspot.com/2018/12/lovely-winter-moments.html",null,1543979385],
["11286217","Aimeslee Winans","https://paper-paisleys.blogspot.com/2018/12/fusion-sketch-card.html",null,1543987033],
["11286277","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/12/3-blog-hop-del-bosco.html",null,1543998740],
["11286304","Marja","https://marjaskaarten.blogspot.com/2018/12/sketch-met-een-kerstman.html",null,1544003479],
["11286327","niki1","https://www.splitcoaststampers.com/gallery/photo/2903059?&cat=500&ppuser=205884",null,1544007627],
["11286371","Pat K","https://patkscards.blogspot.com/2018/12/thank-you-at-fabnfunky.html",null,1544014466],
["11286376","Larissa","https://car-d-elicious.blogspot.com/2018/12/gerda-steiner-designs-two-kittens-in.html",null,1544015411],
["11286437","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/12/copic-europa-december.html",null,1544020225],
["11286532","AJ","https://ajcreativeenergy.blogspot.com/2018/12/santas-list.html",null,1544028778],
["11286635","Vivi Casale","http://handmadebyvivi.blogspot.com/2018/12/flowers-in-jar.html",null,1544047115],
["11286662","ValeryAnne","https://itsanalienlife.blogspot.com/2018/12/the-fairies-are-back.html",null,1544056482],
["11286672","Leslie Turner","http://lovetoscrap2.com/2018/12/04/ho-ho-ho",null,1544061172],
["11286703","Priyadarshini","https://simpleartcraft.wordpress.com/2018/12/06/non-traditional-candle-for-christmas/",null,1544073578],
["11286769","Creative Smiles","http://creativesmiles2.blogspot.com/2018/12/experimental-christmas-moving-along.html",null,1544097644],
["11286775","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/12/nuovo-challenge-su-simply-magnolia.html",null,1544102187],
["11286778","Maria Giselle B.","https://ienjoywhatido.blogspot.com/2018/12/embossed-cricut-die-cut-and-embossed.html",null,1544103161],
["11286835","Craftartista","https://craftartista.blogspot.com/2018/12/package-delivered-to-dimi.html",null,1544114566],
["11286845","Larissa","https://car-d-elicious.blogspot.com/2018/12/as-you-like-it-challenge-145-favourite.html",null,1544120216],
["11286911","Craftartista","https://craftartista.blogspot.com/2018/12/package-delivered-to-rena.html",null,1544138232],
["11286971","elizabeth h","http://warmharted.blogspot.com/2018/12/winter-window.html",null,1544161545],
["11286987","Clare ","http://clarelloyd.blogspot.com/2018/12/grateful-heart.html",null,1544166092],
["11287031","Zeynep Toraman","http://love-of-pink.blogspot.com/2018/12/old-fashion.html?m=1",null,1544179123],
["11287100","Donna R","https://indianainking.blogspot.com/2018/12/happy-95th.html",null,1544190009],
["11287207","Varsha from India ","https://cartsandcrafts.blogspot.com/2018/12/christmas-card.html",null,1544206752],
["11287236","Claudia","http://knutselmeisjes.blogspot.com/2018/12/keep-calm-and-wait-for-snow.html",null,1544210636],
["11287276","Craftartista","https://craftartista.blogspot.com/2018/12/santa-clause-is-coming-to-town.html",null,1544218061],
["11287349","niki1","https://www.splitcoaststampers.com/gallery/photo/2903398?&cat=500&ppuser=205884",null,1544246868],
["11287376","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2018/12/birthday-boy.html",null,1544258791],
["11287384","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2018/12/birthday-wishes-for-cool-dude.html",null,1544262170],
["11287420","Kym","https://kyms-crafty-cards.blogspot.com/2018/12/happy-12th-birthday-to-very-special.html",null,1544270787],
["11287467","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/12/zomaar.html",null,1544274802],
["11287504","Melanie","https://creative-world-of-melanie.blogspot.com/2018/12/elfie-elizabeth.html",null,1544280513],
["11287545","Craftartista","https://craftartista.blogspot.com/2018/12/beautiful-trees.html",null,1544284832],
["11287558","Denise P.","https://myinkimprint.blogspot.com/2018/12/inspiration-challenge.html",null,1544286394],
["11287616","Plony","https://plonysbloggie.blogspot.com/2018/12/en-nog-maar-1.html",null,1544302373],
["11287639","Hazel","https://craftyhazelnut.blogspot.com/2018/12/chnc-challenge-415.html",null,1544308015],
["11287650","Angela B","https://tastecraftiness.blogspot.com/2018/12/my-besties-at-outlawz-challenges.html",null,1544315340],
["11287660","Angela B","https://tastecraftiness.blogspot.com/2018/12/mmedel-illustrations-at-outlawz.html",null,1544318444],
["11287725","monique","https://moniqueschattefor.blogspot.com/2018/12/kerstbal.html",null,1544336337],
["11287738","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/12/hartelijk-gefeliciteerd.html",null,1544337923],
["11287815","Carla","https://carla-writes.blogspot.com/2018/12/noel-card.html",null,1544355492],
["11287826","Hazel L","http://hazel-hazelshappyhouse.blogspot.com/2018/12/iaas-add-some-sparkle.html",null,1544357442],
["11287830","Tone K.","http://tonesscrapperom.blogspot.com/2018/12/kort-med-diamant-card-with-diamond.html",null,1544358006],
["11287893","Carla","https://carla-writes.blogspot.com/2018/12/winter-unicorn-memory-dex-card.html",null,1544367689],
["11287943","Chriss","https://chrissandlou.blogspot.com/2018/12/inas-48.html",null,1544378900],
["11287955","Claudia Martins","https://1pandaideiascriativas.blogspot.com/2018/12/projeto-dt-cute-ncrafty.html",null,1544379692],
["11288038","Teresa","http://redobsessioncards.blogspot.com/2018/12/santa-claus.html",null,1544397684],
["11288043","Teresa","http://redobsessioncards.blogspot.com/2018/12/warmest-wishes.html",null,1544398307],
["11288046","Teresa","http://redobsessioncards.blogspot.com/2018/12/sitting-pretty.html",null,1544399124],
["11288047","Teresa","http://redobsessioncards.blogspot.com/2018/12/winter-snowflakes.html",null,1544399660],
["11288049","Teresa","http://redobsessioncards.blogspot.com/2018/12/sparkling-reindeer.html",null,1544399909],
["11288105","jackie cornfield","https://getthejclook.blogspot.com/2018/12/santa-always-fun-challenges.html",null,1544423482],
["11288111","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/12/celebrate.html",null,1544427264],
["11288120","Rosina","http://rosina-scrapcards.blogspot.com/2018/12/happy-birthday.html",null,1544429286],
["11288125","Maya","https://mayas-hobbyblogg.blogspot.com/2018/12/god-julmerry-christmas.html",null,1544430227],
["11288134","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/12/chrismas-card-north-pole.html",null,1544432472],
["11288137","nnalorac","https://somethinggonemissing.blogspot.com/2018/12/happy-christmas.html",null,1544433481],
["11288162","Desire Fourie","https://desiref.blogspot.com/2018/12/have-yourself-color-it-create-it-show.html",null,1544442595],
["11288168","ingunn","https://ingunnsinekort.blogspot.com/2018/12/enkelt-restekort.html",null,1544443511],
["11288186","Carla","http://carla-writes.blogspot.com/2018/12/beach-time-card.html",null,1544446125],
["11288533","Gloria Shirr","https://purpleglocreations.blogspot.com/2018/12/birthday-card-using-crafters-companion.html",null,1544507195],
["11288585","Natasa","https://najboljsezelje.blogspot.com/2018/12/kuverta-z-losom-za-darilno-kartico.html",null,1544523276],
["11288593","Craftartista","https://craftartista.blogspot.com/2018/12/handmade-necklace-with-washers-and-beads.html",null,1544523962],
["11288601","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/12/nieuwe-woning.html",null,1544526487],
["11288631","cheiro urgia","https://cheirourgia.blogspot.com/2018/12/winter-scene.html",null,1544531727],
["11288634","Renate","https://dotjesparelsenjuweeltjes.blogspot.com/2018/12/gorjuss-holy-christmas-present.html",null,1544532263],
["11288636","Michelle","https://michelledees.blogspot.com/2018/12/hier-ben-ik-weer-en-heb-wat-leuks-voor.html",null,1544532616],
["11288761","Rijacki Ledum","https://rijacki.blogspot.com/2018/12/warm-friends-TTCRD.html",null,1544543368],
["11288795","Rijacki Ledum","https://rijacki.blogspot.com/2018/12/buzzy.html",null,1544547394],
["11288951","Craftartista","https://craftartista.blogspot.com/2018/12/package-delivered-to-ariadne.html",null,1544610172],
["11288966","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/12/have-tea-riffic-birthday.html",null,1544580037],
["11289086","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/12/hoera-een-dochter.html",null,1544603771],
["11289151","CreaNancy","https://creanancy.blogspot.com/2018/12/50.html",null,1544620375],
["11289162","Larissa","https://car-d-elicious.blogspot.com/2018/12/gerda-steiner-designs-fa-la-la-la.html",null,1544622449],
["11289225","Valeryanne","https://itsanalienlife.blogspot.com/2018/12/more-fairies.htmll",null,0],
["11289227","Valeryanne","https://itsanalienlife.blogspot.com/2018/12/more-fairies.html",null,1544628600],
["11289394","CarolG NZ","https://creationsnz.blogspot.com/2018/12/red-bauble-triangle-box.html",null,1544646224],
["11289395","Cass","https://casscreatingnow.blogspot.com/2018/12/southern-girls-glitter-13-december.html",null,1544646685],
["11289571","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com/2018/12/hoppy-christmas-wishes.html",null,1544697789],
["11289573","TracyM 6773 (3)","https://tracyscraftyadventures.blogspot.com/2018/12/elegant-berry-christmas-wishes.html",null,1544698193],
["11289575","TracyM 6773 (4)","https://tracyscraftyadventures.blogspot.com/2018/12/another-elegant-berry-christmas-wish.html",null,1544698267],
["11289614","cheiro urgia","https://cheirourgia.blogspot.com/2018/12/love-fairy-dust.html",null,1544713959],
["11289697","Ellie","https://www.ellibellescorner.com/2018/12/a-fairy-wonderland-with-hero-arts.html",null,1544725500],
["11289744","America","https://cardsbyamerica.blogspot.com/2018/12/easy-art-deco-gatefold.html",null,1544734235],
["11289808","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/12/seasons-tweetings.html",null,1544748672],
["11289810","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/12/a-little-christmas-inspiration-with.html",null,1544748803],
["11289819","Angie's Creations","http://angiescreationsblog.blogspot.com/2018/12/shaker-sunglass-embellishment.html#links",null,1544752499],
["11289834","Craftartista","https://craftartista.blogspot.com/2018/12/mewy-christmas.html",null,1544756068],
["11289930","jackie cornfield","https://getthejclook.blogspot.com/2018/12/ribbon-at-ching-chou-kuik.html",null,1544782522],
["11289957","Varsha from C-Arts","https://cartsandcrafts.blogspot.com/2018/12/waiting-for-santaho-ho-ho.html",null,1544788094],
["11289987","Aimeslee Winans","https://paper-paisleys.blogspot.com/2018/12/joy-to-world-sketch-card.html",null,1544792537],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}