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("14Nov2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRub3YyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("3 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Nov2019");
blenza_linkies("thumb","lozzy","14Nov2019","863631436",3,
[
// MTRub3YyMDE5
["11406817","Katrine","https://katrinehspapirverden.blogspot.com/2019/04/ny-utfordring-hos-scrap-from-your-heart.html",null,0],
["11406818","bianca's scrapcards","https://biancasscrapcards.blogspot.com/2019/11/happy-birthday-in-het-roze.html",null,1573808871],
["11406820","Katrine","https://katrinehspapirverden.blogspot.com/2019/11/midtveisinpirasjon-hos-nordsalten.html",null,1573808917],
["11406827","Made by Mandy","https://amandacruxton2.blogspot.com/2019/11/berry-wreath.html",null,1573809730],
["11406864","Karen C","http://busyinspirations.blogspot.com/2019/11/yum.html",null,1573815355],
["11406868","June F","https://www.popppyfieldcardcrafts.com",null,1573816225],
["11406909","ScrappyHorses","https://scrappyhorses.blogspot.com/2019/11/fall-festival-tag.html",null,1573823863],
["11406956","Anna","https://nonsolocard.blogspot.com/2019/11/december-daily-tutorial.html",null,1573827215],
["11406979","Cathy (Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/11/sparkles-monthly-challenges-ch-122-dt.html",null,1573830909],
["11407035","My Other World","https://scrapsdamaryv.blogspot.com/2019/11/decoracao-de-natal-porta-dinheiro.html",null,1573840684],
["11407046","Janes Journal","https://jane-janesjournal.blogspot.com/2019/11/still-going-round-in-circles-with.html",null,1573841670],
["11407066","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/may-2020-journal-divider-do-al-l.html",null,1573845249],
["11407068","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/everything-is-better-colour-crazy.html",null,1573845751],
["11407070","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/wishing-yu-one-of-kind-crafty-catz-483.html",null,1573846360],
["11407071","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/grateful-for-this-life-bugaboo-stamps.html",null,1573847047],
["11407075","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/merry-christmas-creations-in-pink-14.html",null,1573847821],
["11407198","Dreja","https://drejasbastelwelt.blogspot.com/2019/11/80-af-hz-und-fs-hz.html",null,1573898238],
["11407202","Doreen","https://doreensdream.blogspot.com/2019/11/horse-grazing.html",null,1573898689],
["11407203","Caz Crafty bits","https://cazcraftybits.blogspot.com/2019/11/hanging-house-ornaments.html",null,1573898728],
["11407205","Tracey","https://hotchpotchcreations.blogspot.com/2019/11/strike-pose-with-new-34-view-dinkys.html",null,1573899019],
["11407213","Hazel","https://craftyhazelnut.blogspot.com/2019/11/chnc-challenge-464.html",null,1573900805],
["11407230","Cinderella 1","https://cinderellasdreamcardsblog.blogspot.com/2019/11/your-wings-are-ready-all-you-have-to-do.html",null,1573905612],
["11407232","Cinderella 2","https://cinderellasdreamcardsblog.blogspot.com/2019/11/hoping-your-day-is-full-of-sparkle.html",null,1573905975],
["11407233","Chris","https://andheresoneimadeearlier.blogspot.com/2019/11/november-bingo-challenge-at-catch-bug.html",null,1573906663],
["11407238","jenimc","https://jenicraftroom.blogspot.com/2019/11/turquoise-snowflake.html",null,1573907143],
["11407242","Sabina","https://artbysabina.blogspot.com/2019/11/the-creative-crafters-challenge.html",null,1573908907],
["11407319","Kym","https://kyms-crafty-cards.blogspot.com/2019/11/art-deco-christmas-by-debbi-moore.html",null,1573919715],
["11407383","caroline's creaties","https://caroline-creaties.blogspot.com/2019/11/liefde-en-gezelligheid.html",null,1573930107],
["11407418","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/11/een-felicitatie-waard.html",null,1573932929],
["11407494","Debra","https://debs-eternity-cards.blogspot.com/2019/11/leannes-birthday.html",null,1573937320],
["11407505","ingunn","https://ingunnsinekort.blogspot.com/2019/11/hva-skal-man-gjre-med-velmente-gaver.html",null,1573938148],
["11407510","Sherry G","https://loosestitchesandunraveledthreads.blogspot.com/2019/11/createful-heart-design-gdt.html",null,1573938357],
["11407523","Esther","http://manitasdehuron.es/atcs-brillos-en-la-oscuridad/",null,0],
["11407524","Esther","http://manitasdehuron.es/atcs-brillos-en-la-oscuridad",null,1573939452],
["11407596","Maxine D .","https://kiwimeskreations.blogspot.com/2019/11/trees-in-row.html",null,1573959568],
["11407603","Mynn xx","https://mynnettekitchenonastampage.blogspot.com/2019/11/washi-tape-series-05-unicorn-scene.html",null,1573961202],
["11407622","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/11/christmas-holiday-cheer-shaker.html",null,1573970605],
["11407634","Chrissy","https://chrissyscardland.blogspot.com/2019/11/mail-cameim-happy.html",null,1573973990],
["11407684","Cristina","https://rutscht.blogspot.com/2019/11/atc-47-de-52.html",null,1573987121],
["11407685","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/11/art-journal-not-all-who-wander-are-lost.html",null,1573987604],
["11407710","Surekha Galagoda","http://craftsmysoul.blogspot.com",null,1573994041],
["11407722","Donna R","https://indianainking.blogspot.com/2019/11/n-is-for-north-pole.html",null,1573995770],
["11407735","caroline's creaties","https://caroline-creaties.blogspot.com/2019/11/merry-christmas-met-gestempelde.html",null,1573997044],
["11407780","Deezy","https://handmadecards922312075.wordpress.com/2019/11/17/anything-goes-with-some-aquamarkers-and-cute-flora-stamps/",null,1574004766],
["11407821","Dawn S","https://dawnscraftybits.blogspot.com/2019/11/purple-iris.html",null,1574009902],
["11407834","Crafty Amy","https://amycraftypurplefrog.blogspot.com/2019/11/youre-awesome-fur-real.html",null,1574013735],
["11407920","Ellie","https://www.simplyellibelle.com/2019/11/caroling-trio-for-penny-black-and-more.html",null,1574044252],
["11407954","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/11/veel-liefs.html",null,1574060916],
["11407955","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2019/11/monday-have-good-week-peeps.html",null,1574061292],
["11407987","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/11/birds-and-butterflies.html",null,1574066485],
["11407990","Made by Mandy","https://amandacruxton2.blogspot.com/2019/11/christmas-stocking.html",null,1574067462],
["11408001","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/11/jarig.html",null,1574072779],
["11408048","Caz Crafty bits","https://cazcraftybits.blogspot.com/2019/11/campervan-clock.html",null,1574085079],
["11408056","Janis Lewis","https://pausedreamenjoy.blogspot.com/2019/11/crafting-happiness-challenge-23.html",null,1574086371],
["11408059","The Creative Twins","https://thecreativetwins.blogspot.com/2019/11/beary-hugs-shaker-card.html",null,1574087166],
["11408103","Chriss R.","https://chrissandlou.blogspot.com/2019/11/acorn-luminary-gift-box.html",null,1574094885],
["11408105","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/11/favourite-colour-combo-at-dream-valley.html",null,1574095511],
["11408135","Claudia","https://knutselmeisjes.blogspot.com/2019/11/always-be-yourself.html",null,1574103381],
["11408202","Rosette","https://rosettecards.blogspot.com/2019/11/a-vintage-birthday.html",null,1574118862],
["11408218","Pam D","https://itisfinisheddesigns.blogspot.com/2019/11/thanks-latte.html",null,1574123627],
["11408247","Donna R","https://indianainking.blogspot.com/2019/11/p-is-for-penguin-and-patterned-paper.html",null,1574131824],
["11408332","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/11/all-occasion-card-using-ctmh-products.html",null,1574146802],
["11408359","JO","https://craftyjoscardmaking.blogspot.com/2019/11/non-tradition-colours-christmas.html",null,1574155567],
["11408385","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/11/thankfulness-and-controversial-thinking.html",null,1574163445],
["11408431","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/11/kerstknuffels.html",null,1574172203],
["11408444","*Vicki*","https://stampedsmiles.com/2019/11/19/come-aboard-the-penguin-polar-express/",null,1574173938],
["11408508","Donna R","https://indianainking.blogspot.com/2019/11/q-is-for-quilting.html",null,1574196436],
["11408526","Dori Shelton","http://www.perfectlycreatedchaos.com/2019/11/25-days-of-christmas-cards-day-1.html",null,1574200426],
["11408704","Creative Em","https://www.creative-em.com/2019/11/flowers-in-round.html",null,1574254620],
["11408757","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/11/simple-home-decor-using-craftreat.html",null,1574261889],
["11408816","caroline's creaties","http://caroline-creaties.blogspot.com/2019/11/reminderkaartje-voor-2sistersontheblog.html",null,1574276705],
["11408925","monique","https://moniqueschattefor.blogspot.com/2019/11/podiumkaart.html",null,1574323024],
["11408958","AuntySue","https://auntysuescraftcavern.blogspot.com/2019/11/craft-challenge-make-your-own-embellies.html",null,1574335315],
["11408979","Karen C","http://busyinspirations.blogspot.com/2019/11/ewe-are-fabulous.html",null,1574344840],
["11408981","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/11/het-is-weer-tijd-voor-een.html",null,1574345956],
["11409006","Creative Smiles","https://creativesmiles2.blogspot.com/2019/11/lavinia-world-clean-and-simple.html",null,1574357025],
["11409024","Donna R","https://indianainking.blogspot.com/2019/11/day-21-use-scraps.html",null,1574362036],
["11409034","Gale K","https://galesstampingcorner.blogspot.com/2019/11/cute-as-button-inspiration-showcase.html",null,1574363346],
["11409045","Made by Mandy","https://amandacruxton2.blogspot.com/2019/11/red-nose-reindeer-imagine-that-guest-dt.html",null,1574364429],
["11409066","Teresa","http://redobsessioncards.blogspot.com/2019/11/white-pumpkins.html?m=1",null,1574375850],
["11409076","Teresa","http://redobsessioncards.blogspot.com/2019/11/anniversary-flowers.html?m=1",null,1574379895],
["11409223","The Creative Twins","https://thecreativetwins.blogspot.com/2019/11/folio-album.html",null,1574419344],
["11409232","Craftartista","https://craftartista.blogspot.com/2019/11/mandala-free-image-9.html",null,1574421894],
["11409336","Kym","http://kyms-crafty-cards.blogspot.com/2019/11/ching-chou-kuiks-digital-stamps_22.html",null,1574448943],
["11409350","Teresa","https://redobsessioncards.blogspot.com/2019/11/winter-elf.html?m=1",null,1574454110],
["11409351","Larissa","https://car-d-elicious.blogspot.com/2019/11/kleuren-met-potloden-sending-holiday.html",null,1574454357],
["11409360","Karthikha","https://loveforkrafts.blogspot.com/2019/11/25-days-of-christmas-tags-entry-1.html",null,1574456624],
["11409378","Judy V","https://jvzcreations.blogspot.com/2019/11/christmas-gift-card-holders.html",null,1574461976],
["11409384","Carole J","https://cjcrafty.blogspot.com/2019/11/gecko-galz-christmas-peace-on-earth-2.html",null,1574464934],
["11409436","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2019/11/saturday-woo-hoo-weekend.html",null,1574491909],
["11409479","Auntysue","https://auntysuescraftcavern.blogspot.com/2019/11/craft-challenge-make-your-own-embellies.html?m=1",null,1574500272],
["11409487","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/11/bonne-annee-19-et-le-defi-7-du-cbbb.html",null,1574503677],
["11409757","Helen","https://craftinghelen.blogspot.com/2019/11/new-through-craft-room-door-challenge_19.html",null,1574557116],
["11409761","Helen","https://craftinghelen.blogspot.com/2019/11/new-pennys-paper-crafty-challenge.html",null,1574558323],
["11409762","Renee Daley","https://stampknowhow.com/2019/11/23/playful-penguins-christmas-card/",null,1574559490],
["11409808","Craftartista","https://craftartista.blogspot.com/2019/11/fruit-at-christmas.html",null,1574573581],
["11409820","Ruth Lopez","https://www.myhobbymyart.com/2019/11/christmas-card-flip-swing.html",null,1574577071],
["11409928","Leslie Turner","http://lovetoscrap2.com/2019/11/18/thanks-3",null,1574601405],
["11409929","Leslie Turner","http://lovetoscrap2.com/2019/11/22/shabby-garden-boxed-set",null,1574601463],
["11409969","Alice","https://volidicarta.blogspot.com/2019/11/grazie-con-foglie-di-acero.html",null,1574607215],
["11410022","Ellie","https://www.simplyellibelle.com/2019/11/allsorts-challenge-547-thank-younew-year.html",null,1574615665],
["11410082","Helen","https://helenscrafthaven.blogspot.com/2019/11/toot-your-own-horn.html",null,1574632104],
["11410087","Steffi H.","https://www.flickr.com/photos/spinkymausi/49117815813/in/dateposted/",null,1574634086],
["11410154","Shirley-Anne ","https://shirley-anne-stampingforjoy.blogspot.com/2019/11/we-all-need-fun-friends.html",null,1574660535],
["11410164","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/11/niet-openen-voor-kerst-en.html",null,1574663817],
["11410172","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/11/happy-birthday_25.html",null,1574666106],
["11410256","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/11/vandaag-een-kerstkaart-gemaakt-van-een.html",null,1574691939],
["11410352","Carole J","https://cjcrafty.blogspot.com/2019/11/vera-lane-studio-be-wise.html",null,1574705445],
["11410363","Karthikha","https://loveforkrafts.blogspot.com/2019/11/25-days-of-christmas-tags-entry-2.html",null,1574709763],
["11410370","Maia","https://hetvalkennest.blogspot.com/2019/11/drie-maanden-bijpraten-kinderworkshop.html",null,1574711386],
["11410472","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/11/christmas-card-using-conie-fong-hollys.html",null,1574749894],
["11410486","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/11/3-layer-explosion-box.html",null,1574755156],
["11410497","Linda Mc Enery","http://lindamscreations.blogspot.com/2019/11/passion-for-promarkers-challenge-521-3.html",null,1574759412],
["11410515","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2019/11/passion-for-promarkers-challenge-521-3.html",null,1574763019],
["11410518","Twisted Witch - Lin","http://twisted-witch.blogspot.com/2019/11/ccm-246-no-patterned-paper.html",null,1574763676],
["11410525","ingunn","https://ingunnsinekort.blogspot.com/2019/11/gult-kort.html",null,1574765992],
["11410531","ingunn","https://ingunnsinekort.blogspot.com/2019/11/gd-bidrag-hos-rubber-dance.html",null,1574767257],
["11410546","Vivian Foo","https://www.facebook.com/photo.php?fbid=1679966492139132&set=a.753827484753042&type=3&theater",null,1574770338],
["11410642","caroline's creaties","http://caroline-creaties.blogspot.com/2019/11/gerjanne-is-jarig.html",null,1574783446],
["11410666","Patsy Long","http://craftyafrican.blogspot.com/2019/11/digi-doodles-studios-nicolette.html",null,1574785356],
["11410702","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/warm-holiday-wishes-bugaboo-stamps-new.html",null,1574796517],
["11410717","Karthikha","https://loveforkrafts.blogspot.com/2019/11/thanksgiving-favor-boxes-for-teachers.html",null,1574801471],
["11410731","Teresa","http://redobsessioncards.blogspot.com/2019/11/traditional-christmas-flowers.html?m=1",null,1574805385],
["11410733","Teresa","http://redobsessioncards.blogspot.com/2019/11/butterfly-thanks.html?m=1",null,1574806335],
["11410782","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/11/life-is-canvas.html",null,1574816358],
["11410796","Donna R","https://indianainking.blogspot.com/2019/11/x-is-for-kisses.html",null,1574822266],
["11410817","elizabeth h","http://warmharted.blogspot.com/2019/11/happy-are-days.html",null,1574830910],
["11410891","Janes Journal","https://jane-janesjournal.blogspot.com/2019/11/raindrops-at-wisley.html",null,1574847720],
["11410894","Tip Top","http://tiptoptoppers.blogspot.com/2019/11/id-rather-be-watching-im-celebrity.html",null,1574849703],
["11410931","Karen Dunbrook","https://snippets-karen.blogspot.com/2019/11/magical-season.html",null,1574857543],
["11410999","Cristina","https://rutscht.blogspot.com/2019/11/where-there-love-there-is-life.html",null,1574869246],
["11411054","Valerija","https://moje-veselje.blogspot.com/2019/11/praznicna-po-skici.html",null,1574875684],
["11411093","Shirley Gentry","https://stampinwithshirleyg.com/?p=9465",null,1574883995],
["11411107","Cinderella 3","https://cinderellasdreamcardsblog.blogspot.com/2019/11/100-kerst-100-christmas.html",null,1574887481],
["11411148","Judy McKay","https://insearchofmycreativeside.blogspot.com/2019/11/no-pattern-paper-challenge.html",null,1574913159],
["11411190","Suze","https://craftysuze.blogspot.com/2019/11/youre-one-cool-dude.html",null,1574927570],
["11411273","Valerija","https://moje-veselje.blogspot.com/2019/11/smrecica-malo-drugace.html",null,1574939350],
["11411294","Lisa Bird","https://craftycard-designs.co.uk/elliot-and-elvis-merry-christmas/",null,1574949237],
["11411301","Leslie Turner","http://lovetoscrap2.com/2019/11/27/autumn-blessings-3",null,1574953472],
["11411308","Dreja","https://drejasbastelwelt.blogspot.com/2019/11/weihnachtskarte-junge-mit-geschenkesack.html",null,1574954841],
["11411358","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/we-wish-you-aud-sentiments-241.html",null,1574966224],
["11411370","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/11/holly-jolly-catch-bug-oldie-but-goodie.html",null,1574967071],
["11411391","Karthikha","https://loveforkrafts.blogspot.com/2019/11/fall-window-scene-thanksgiving-cards.html",null,1574972528],
["11411392","Karthikha","https://loveforkrafts.blogspot.com/2019/11/christmas-tag-3.html",null,1574972603],
["11411393","Karthikha","https://loveforkrafts.blogspot.com/2019/11/plaid-christmas-card.html",null,1574972618],
["11411421","Karen C","http://busyinspirations.blogspot.com/2019/11/great-time-for-ride.html",null,1574979260],
["11411422","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/11/v-fokusu-cvet.html",null,1574979876],
["11411446","Shona Hamill","http://handmadebyhamill.blogspot.com/2019/11/christmas-with-cuties-show-us-your.html",null,1574988864],
["11411448","Shona Hamill","http://handmadebyhamill.blogspot.com/2019/11/holly-ivy-christmas-challenge-61.html",null,1574989970],
["11411548","Rosina","https://rosina-scrapcards.blogspot.com/2019/11/proficiat.html",null,1575021442],
["11411667","CarolG NZ","https://creationsnz.blogspot.com/2019/11/wellness-patch.html",null,1575043119],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}