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("30Oct2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzBvY3QyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("16 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("30Oct2018");
blenza_linkies("thumb","lozzy","30Oct2018","1171243551",3,
[
// MzBvY3QyMDE4
["11271832","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/11/squillino-le-trombe-rullino-i-tamburi.html",null,1541065726],
["11271833","Jane Willis","https://onionsandpaper.blogspot.com/2018/11/embossing-heat-or-dry-at-sparkles.html",null,1541065842],
["11271865","pinky","https://pinkysworldsuprojects.blogspot.com/2018/11/teabag-gift-pack.html",null,1541070536],
["11271895","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/11/joy.html",null,1541075789],
["11271903","CarolG NZ","https://creationsnz.blogspot.com/2018/11/christmas-cat-lit.html",null,1541077532],
["11271909","Kym","http://kyms-crafty-cards.blogspot.com/2018/11/ching-chou-kuik-digital-stamps-november.html",null,1541077957],
["11271922","Kali","https://bastelgrotte.de/?p=11531",null,1541078732],
["11271933","Jenna","http://jennagallery.blogspot.com/2018/11/pop-up-box-3x3-christmas-name-plates.html",null,1541081564],
["11271940","Hazel","https://craftyhazelnut.blogspot.com/2018/11/craftyhazelnuts-patterned-paper.html",null,1541082738],
["11271969","Jolanda","https://jolandasblogs.blogspot.com/2018/11/mannenwereld_1.html",null,1541085641],
["11271989","Irene","https://madeinborgo.blogspot.com/2018/11/mixed-media-with-dancer.html",null,1541088387],
["11271996","cheiro urgia","https://cheirourgia.blogspot.com/2018/11/birthday-wishes.html",null,1541090414],
["11272012","NanaConnie","https://mygrammysattic.blogspot.com/2018/11/sleigh-ride.html",null,1541093565],
["11272024","Carole J","https://cjcrafty.blogspot.com/2018/11/gecko-galz-jingle-all-way.html",null,1541096466],
["11272026","Gale K","https://galesstampingcorner.blogspot.com/2018/10/cameo-7.html",null,1541097365],
["11272049","Wies","https://wiescreablog.blogspot.com/2018/11/friends-are.html",null,1541100956],
["11272096","Helen","http://helenscrafthaven.blogspot.com/2018/11/new-home.html",null,1541110946],
["11272103","Linda Mc Enery","https://lindamscreations.blogspot.com/2018/11/summer-holiday.html",null,1541113197],
["11272125","Donna R","https://indianainking.blogspot.com/2018/11/cool-christmas.html",null,1541117680],
["11272158","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2018/11/friday-and-official-start-to-weekend.html",null,1541124388],
["11272163","Uma Didwania","http://craftinlife.blogspot.com/2018/11/gift-bag.html?m=1",null,1541125691],
["11272192","Kleido","https://kleidosbastelstueble.wordpress.com/2018/11/01/gamer-boy-dt/",null,1541138077],
["11272286","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2018/11/snowman-exploding-box.html",null,1541153652],
["11272305","Craftartista","https://craftartista.blogspot.com/2018/11/autumn.html",null,1541156380],
["11272324","CreaNancy","https://creanancy.blogspot.com/2018/11/catch-bug-friday-freebie.html",null,1541159425],
["11272357","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2018/11/the-adorable-pippi.html",null,1541164119],
["11272362","Marja","https://marjaskaarten.blogspot.com/2018/11/thanks.html",null,1541164895],
["11272385","Chandhini","https://thecreativetwins.blogspot.com/2018/11/earthern-lamp-makeover.html",null,1541166615],
["11272402","Kym","https://kyms-crafty-cards.blogspot.com/2018/11/get-well-soon.html",null,1541169392],
["11272438","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/11/voor-lianne.html",null,1541174266],
["11272523","elizabeth h","http://warmharted.blogspot.com/2018/11/happy-birthday-baby-shoes.html",null,1541191418],
["11272552","Craftartista","https://craftartista.blogspot.com/2018/11/cute-unicorn.html",null,1541198966],
["11272581","Pam Sebring","http://psebring.blogspot.com/2018/11/butterfly-sympathy.html",null,1541211390],
["11272670","nnalorac","https://somethinggonemissing.blogspot.com/2018/11/dis-digi-designs-challenge.html",null,1541240286],
["11272688","Wendy Batchen","https://wenscreations.blogspot.com/2018/11/scrappers-delights-special-deals-3rd.html",null,1541243997],
["11272865","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/this-fox-says-catch-bug-saturday.html",null,1541269626],
["11272875","Tindaloo","https://tindaloo.blogspot.com/2018/11/hello-dear-friend.html",null,1541272502],
["11272896","jenimc","https://jenicraftroom.blogspot.com/2018/11/snowman.html",null,1541275285],
["11272937","Teresa","http://redobsessioncards.blogspot.com/2018/11/halloween-tree.html?m=1",null,1541290076],
["11272940","Hazel","https://craftyhazelnut.blogspot.com/2018/11/chnc-challenge-410.html",null,1541290408],
["11272947","Suzette Hussey","https://papermachepatch.com/wp-content/uploads/2018/10/final-8-1.jpg",null,1541291698],
["11272948","Suzette Hussey","http://papermachepatch.com",null,1541291767],
["11272960","Shamita","https://spiralcreativity.blogspot.com/2018/11/xmas-honey-bundle.html",null,1541296899],
["11273049","Claudia","http://knutselmeisjes.blogspot.com/2018/11/happy-b-day.html",null,1541321977],
["11273056","Grietje's Kaartenhoekje","https://grietje78.blogspot.com/2018/11/gefeliciteerd.html",null,1541323383],
["11273077","Ella","https://mojeszydelkoweprzygody.blogspot.com/2018/11/mannerwelt.html",null,1541327749],
["11273078","AnnChuangCrafts","https://anncard.blogspot.com/2018/11/joy-to-world.html",null,1541327651],
["11273080","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/11/babykaartje.html",null,1541328271],
["11273092","Maya","https://mayas-hobbyblogg.blogspot.com/2018/11/merry-christmas_4.html",null,1541330644],
["11273099","Glittertastic","https://glittertastic.blogspot.com/2018/11/glamorous-gran.html",null,1541331460],
["11273110","Craftartista","https://craftartista.blogspot.com/2018/11/christmas-kisses.html",null,1541332536],
["11273190","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/11/voor-lianne.htmlhttp://nicoletteskaarten.blogspot.com/2018/11/mannenkaart.html",null,0],
["11273191","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/11/mannenkaart.html",null,1541340344],
["11273246","elizabeth h","http://warmharted.blogspot.com/2018/11/love-our-pets.html",null,1541345105],
["11273251","elizabeth h","http://warmharted.blogspot.com/2018/11/pitcher-of-fall-flowers.html",null,1541345894],
["11273283","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/he-restores-my-soul.html",null,1541352523],
["11273300","Angie","https://cimbacreativefun.blogspot.com/2018/11/hope-your-day-is-wonderful-with.html",null,1541354785],
["11273303","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/11/harrys-serious-christmas-card.html",null,1541355427],
["11273344","Monika Reeck","https://creativewithmonika.blogspot.com/2018/11/sunday-stamps-challenge-191-enjoy-using.html",null,1541366062],
["11273387","Pam Sebring","http://psebring.blogspot.com/2018/11/snow-fun.html",null,1541382074],
["11273462","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2018/11/conie-fongs-little-blossom.html",null,1541401845],
["11273464","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/11/have.html",null,1541402553],
["11273489","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/11/simply-magnoglia-novembre-e-card-per.html",null,1541406665],
["11273513","monique","https://moniqueschattefor.blogspot.com/2018/11/kerst-in-de-viskom.html",null,1541409545],
["11273526","Teresa","http://redobsessioncards.blogspot.com/2018/11/autumn-berries.html?m=1",null,1541413508],
["11273579","sue","https://sue-hickey.blogspot.com/2018/11/anything-goes-with-option-of-monochrome.html",null,1541420227],
["11273583","mel-decorcraftdesign","https://decorcraftdesign.wordpress.com/2018/11/05/diy-grateful-thanksgiving-sign/",null,1541421148],
["11273584","MARLENE","https://cardsmadebymarlene.blogspot.com/2018/11/christmas-at-incy-wincy-designs.html",null,1541421191],
["11273616","Desire Fourie","https://desiref.blogspot.com/2018/11/have-yourself-digistamps4joy-november.html",null,1541425759],
["11273626","Dawn S","https://cherrytreestudio.blogspot.com/2018/11/mid-challenge-inspiration-once-upon.html",null,1541427039],
["11273629","Michelle","https://michelledees.blogspot.com/2018/11/kerst-dekoratie-christmas-decoration.html",null,1541427411],
["11273642","Ine (creaine)","http://creaine-cards.blogspot.com/2018/11/ontmoetingsdag-kaartenmaatjessuper-leuk.html",null,1541429426],
["11273682","Carole J","https://cjcrafty.blogspot.com/2018/11/vera-lane-studio-adorabelle.html",null,1541433287],
["11273696","Katrine","https://katrinehspapirverden.blogspot.com/",null,1541436248],
["11273754","corry","https://corryscreart.blogspot.com/",null,0],
["11273779","Wies 2","https://wiescreablog.blogspot.com/2018/11/visser.html",null,1541452658],
["11273793","Craftartista","https://craftartista.blogspot.com/2018/11/kiss-cook.html",null,1541455791],
["11273843","Teresa","http://redobsessioncards.blogspot.com/2018/11/winter-penguin.html?m=1",null,1541465152],
["11273853","ValeryAnne","https://itsanalienlife.blogspot.com/2018/11/today-is-my-day.html",null,1541467229],
["11273863","Paper Whims","https://wendylynnspaperwhims.blogspot.com/2018/11/grateful-heart-card_5.html",null,0],
["11273864","Paper Whims","https://wendylynnspaperwhims.blogspot.com/2018/11/baby-time-card.html",null,1541469115],
["11273865","Teresa","http://redobsessioncards.blogspot.com/2018/11/building-work.html?m=1",null,1541469256],
["11273874","Pam Sebring","http://psebring.blogspot.com/2018/11/grateful.html",null,1541470918],
["11273876","Aileen","https://colourandsparkle.blogspot.com/2018/11/the-flower-challenge-26-special-occasion.html",null,1541471397],
["11273885","Chandhini","https://thecreativetwins.blogspot.com/2018/11/diwali-greeting-card-packing-tape.html",null,1541473027],
["11273936","Craftartista","https://craftartista.blogspot.com/2018/11/under-stars.html",null,1541494787],
["11273976","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2018/11/passion-for-promarkers-challenge-469.html",null,1541504907],
["11273983","Pippa","https://pippapblog.wordpress.com/2018/11/05/path-of-positivity-challenge-63-shades-of-green/",null,1541507278],
["11274003","Paper Whims","https://wendylynnspaperwhims.blogspot.com/2018/11/baby-girl-tag.html",null,1541510340],
["11274015","Donna R","https://indianainking.blogspot.com/2018/11/oh-deer-christmas-is-here.html",null,1541512262],
["11274032","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/11/for-magazine-ttcrd-november-december.html",null,1541516080],
["11274112","Birgit","https://cardsrfun.blogspot.com/2018/11/warm-winter-greetings.html",null,1541525716],
["11274279","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/we-are-blessed-bugaboo-new-release.html",null,1541544349],
["11274345","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/11/winter-wishes.html",null,1541555337],
["11274346","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/11/cozy-christmas.html",null,1541555454],
["11274412","Shery","https://thatonelayermixedmediagirl.blogspot.com/2018/11/grateful-tag.html",null,1541574655],
["11274452","le idee di penelope ","https://ricordidicartascrap.blogspot.com/2018/11/secondo-blog-hop-del-bosco.html",null,0],
["11274453","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/11/secondo-blog-hop-del-bosco-novembre.html",null,1541580096],
["11274498","Kali","https://bastelgrotte.de/?p=11509",null,1541588246],
["11274517","Craftartista","https://craftartista.blogspot.com/2018/11/real-women.html",null,1541590719],
["11274562","Paper Whims","https://wendylynnspaperwhims.blogspot.com/2018/11/baby-mermaid-card.html",null,1541596340],
["11274692","ValeryAnne","https://itsanalienlife.blogspot.com/2018/11/recycling.html",null,1541614116],
["11274715","AJ","https://ajcreativeenergy.blogspot.com/2018/11/native-american-girl.html",null,1541616168],
["11274735","Teresa","http://redobsessioncards.blogspot.com/2018/11/bat-dog.html?m=1",null,1541619176],
["11274745","Marjeta","https://marjetinaustvarjalnica.blogspot.com/2018/11/barvanje.html",null,1541620664],
["11274748","Paper Whims","https://wendylynnspaperwhims.blogspot.com/2018/11/dreaming-of-you-card.html",null,1541620695],
["11274767","flamingstar","http://flaming-star1.blogspot.com/2018/11/hi-new-challenge-over-at.html",null,1541624019],
["11274794","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2018/11/best-wishes-card.html",null,1541630707],
["11274795","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/youre-amazing-catch-bug-humor-wednesday.html",null,1541631181],
["11274867","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/11/christmas-heels.html",null,1541646108],
["11274868","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/11/girly-christmas.html",null,1541646223],
["11274897","Greeshma","https://gpexplosionbox.blogspot.com/2018/11/3-layered-white-explosion-box.html?m=1",null,1541660968],
["11274901","Megan Flynn","https://thehappycraftchallenge.blogspot.com/2018/11/snow-bear-card-joy-to-world.html",null,1541661929],
["11274913","Craftartista","https://craftartista.blogspot.com/2018/11/dance-like-wind.html",null,1541665859],
["11274949","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/11/moonlight-hugs.html",null,1541676405],
["11274996","Hazel","https://craftyhazelnut.blogspot.com/2018/11/commissioned-sympathy-card.html",null,1541689272],
["11275009","Dawn Frost","http://stamp-n-play.blogspot.com/2018/11/bugaboo-pumpkin-crow.html",null,1541694106],
["11275074","AJ","https://ajcreativeenergy.blogspot.com/2018/11/christmas-snowman.html",null,1541704870],
["11275089","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/so-incredibly-grateful.html",null,1541708036],
["11275097","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/kiss-kiss-i-love-you.html",null,1541709083],
["11275111","Melanie Gee","https://melgeecrafts.com/2018/11/08/crafty-sentiments-designs-november-new-release-day-3/",null,1541713050],
["11275156","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/happy-birthday-to-kindest-catch-bug-obg.html",null,1541731263],
["11275160","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/memories-close-to-my-heart-aud.html",null,1541731583],
["11275251","Tracey","https://hotchpotchcreations.blogspot.com/2018/11/paperbabe-stamps-challenge-86.html",null,1541757720],
["11275330","Julie T","https://juliescraftyspot.blogspot.com/2018/11/merry-x-mas.html",null,1541767619],
["11275348","Cathy","https://itsoddlyappealing.blogspot.com/2018/11/mystery-fantasy.html",null,1541771377],
["11275373","Margreet","http://margreets-scrapcards.blogspot.com/2018/11/peaches-car.html",null,1541775574],
["11275420","Julie Reed","https://pumpkinbellycards.blogspot.com/2018/11/the-golden-compass.html",null,1541780425],
["11275444","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/faith-colour-crazy-challenge.html",null,1541785760],
["11275455","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/wishing-you-were-here-bugaboo-free.html",null,1541786713],
["11275484","basslady","https://bassladycreations.blogspot.com/2018/11/teelicht-mit-blumen-aus-blumenseide.html?m=0",null,1541789203],
["11275486","AJ","https://ajcreativeenergy.blogspot.com/2018/11/emma-geisha.html",null,1541789492],
["11275524","Kym","https://kyms-crafty-cards.blogspot.com/2018/11/ching-chou-kuiks-digital-stamps_9.html",null,1541794740],
["11275553","niki1","https://www.splitcoaststampers.com/gallery/photo/2899627?&cat=500&ppuser=205884",null,1541806784],
["11275628","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/11/trouwkaart.html",null,1541840715],
["11275635","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/11/kerstkoekjes.html",null,1541844008],
["11275680","Margreet","http://margreets-scrapcards.blogspot.com/2018/11/fantasiekaart.html",null,1541853805],
["11275682","Cathy","https://itsoddlyappealing.blogspot.com/2018/11/colorful-quirky-zine-with-twist.html",null,1541853977],
["11275685","Cathy","https://itsoddlyappealing.blogspot.com/2018/11/a-small-deck-of-atcs.html",null,1541854266],
["11275686","Cathy","https://itsoddlyappealing.blogspot.com/2018/11/a-harvest-of-gratitude.html",null,1541854455],
["11275708","Paper Whims","https://wendylynnspaperwhims.blogspot.com/2018/11/baby-boy-card.html",null,1541858143],
["11275720","Mary Marsh","https://thecharmedlife-maryr917.blogspot.com/2018/11/peace-love-joy-greetings.html",null,1541859628],
["11275839","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/happy-birthday-catch-bug-saturday.html",null,1541873468],
["11275971","Steffi H.","https://www.flickr.com/photos/spinkymausi/44002187550/in/dateposted/",null,1541899142],
["11276103","Hazel L","http://hazel-hazelshappyhouse.blogspot.com/2018/10/iaas-black-and-orange.htmlhttps://hazel-hazelshappyhouse.blogspot.com/2018/11/iaas-wild-animal.html",null,0],
["11276104","Hazel L","https://hazel-hazelshappyhouse.blogspot.com/2018/11/iaas-wild-animal.html",null,1541938473],
["11276256","Nicky","https://stiggyscrafts.blogspot.com/2018/11/christening-card.html",null,1541964406],
["11276274","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/happy-birthday-stella-says-sketch.html",null,1541968398],
["11276280","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/dont-let-life-ruffle-your-feathers.html",null,1541968876],
["11276353","Meeta Bhalotia","https://thequillmillcrafts.blogspot.com/2018/11/zig-zag-mini-album.html",null,1541990852],
["11276429","Craftartista","https://craftartista.blogspot.com/2018/11/birdie.html",null,1542013520],
["11276493","Gerie","https://scraptastisch.blogspot.com/2018/11/gefeliciteerd-en-veel-geluk-samen.html",null,1542027123],
["11276552","Paper Whims","https://wendylynnspaperwhims.blogspot.com/2018/11/christmas-cheer-card.html",null,1542032740],
["11276692","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/grateful-for-you-always-fun-challenges.html",null,1542044439],
["11276700","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/11/een-witte-kerst.html",null,1542046227],
["11276701","Gina","https://ginascards.blogspot.com/2018/11/new-challenge-at-polkadoodles-crafting.html",null,1542046400],
["11276717","Twisted Witch - Lin","https://twisted-witch.blogspot.com/2018/11/ccm-222-lots-of-layers.html",null,1542048374],
["11276784","Craftartista","https://craftartista.blogspot.com/2018/11/thank-you-for-memories.html",null,1542056747],
["11276839","Tracey Brossart","https://brossartaddiction.blogspot.com/2018/11/hello-beautiful-and-new-sketchy.html",null,1542068074],
["11276947","Craftartista","https://craftartista.blogspot.com/2018/11/elf-and-mistletoe.html",null,1542100693],
["11276948","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/11/babykaart.html",null,1542101029],
["11276999","Cathy","https://itsoddlyappealing.blogspot.com/2018/11/step-into-my-boudoir.html",null,1542115031],
["11277070","coops","http://coopsclutteredcorner.blogspot.com/2018/11/passion-for-promarkers-lets-celebrate.html",null,1542123934],
["11277132","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/so-thankful-for-this-day-bugaboo-new.html",null,1542132556],
["11277175","Paper Whims","https://wendylynnspaperwhims.blogspot.com/2018/11/thankful-card.html",null,1542136610],
["11277190","AJ","https://ajcreativeenergy.blogspot.com/2018/11/christmas-cardinals.html",null,1542138324],
["11277238","Bonnie Garby","http://maketime2craft.com/2018/11/really-reasonable-ribbon-november-blog-hop-3.html",null,1542143398],
["11277269","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2018/11/skatlica-72-metulj-in-snezinke.html",null,1542149380],
["11277318","Paper Whims","https://wendylynnspaperwhims.blogspot.com/2018/11/thankful-card_13.html",null,1542155263],
["11277356","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/11/butterfly-and-flora.html",null,1542161350],
["11277490","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/11/new-magazine-ttcrd-nov-dec-marshmallow.html",null,1542189914],
["11277491","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/11/new-atg-challenge-dr-dgi.html",null,1542189953],
["11277745","Paper Whims","https://wendylynnspaperwhims.blogspot.com/2018/11/baby-girl-card.html",null,1542214262],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}