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("30Sep2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzBzZXAyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("1.5 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("30Sep2018");
blenza_linkies("thumb","lozzy","30Sep2018","271961023",3,
[
// MzBzZXAyMDE4
["11260113","Liz Cavill","https://crafty-lizc.blogspot.com/2018/10/dreamcatcher.html",null,1538381091],
["11260147","Željka","https://creativemomanddaughter.blogspot.com/2018/10/love-ewe-new-polkadoodles-clear-stamp.html",null,1538389030],
["11260148","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2018/10/fairytale-card.html",null,1538389526],
["11260160","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2018/10/cas-mermaid-card.html",null,1538392518],
["11260172","Granne","http://aavamaki.blogspot.com/2018/10/sheep-ski-designs-challenge-fantasy.html",null,1538395584],
["11260174","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/10/simply-magnolia-ottobre.html",null,1538395983],
["11260177","Hazel","http://craftyhazelnut.blogspot.com/2018/10/craftyhazelnuts-patterned-paper-october.html",null,1538396369],
["11260215","Anna","http://nonsolocard.blogspot.com/2018/10/post-card-helga.html",null,1538399809],
["11260230","Cathymac","http://goldeninkspirations.blogspot.com/2018/10/welcome-to-odbd-october-2018-release.html",null,1538401705],
["11260264","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/10/vintage-christening.html",null,1538405321],
["11260299","Suzette Hussey","https://papermachepatch.com/2018/10/01/bootiful-a-halloween-craft/",null,1538410352],
["11260314","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/10/een-nieuw-baan.html",null,1538412879],
["11260315","Gale K","http://galesstampingcorner.blogspot.com/2018/09/sketch-no-793.html",null,1538412924],
["11260337","Kym","https://kyms-crafty-cards.blogspot.com/2018/10/ching-chou-kuik-digital-stamps-october.html",null,1538416688],
["11260338","Kym","http://kyms-crafty-cards.blogspot.com/2018/10/4th-anniversary-of-ching-chou-kuik.html",null,1538417071],
["11260346","monique","https://moniqueschattefor.blogspot.com/2018/10/herfstige-groetjes.html",null,1538418263],
["11260374","Irene","https://madeinborgo.blogspot.com/2018/10/smile-tag.html",null,1538421817],
["11260464","Michelle M","https://chelleshocked2.blogspot.com/2018/09/conie-fong-dt-new-release-puppy-love.html",null,1538433415],
["11260477","Craftartista","https://craftartista.blogspot.com/2018/10/pretty-butterfly.html",null,1538438226],
["11260484","Pam Sebring","http://psebring.blogspot.com/2018/10/fall.html",null,1538440825],
["11260558","Carla","http://carla-writes.blogspot.com/2018/10/french-clown-birthday-card.html",null,1538462221],
["11260561","niki1","https://www.splitcoaststampers.com/gallery/photo/2893346?&cat=500&ppuser=205884",null,1538464653],
["11260571","Lisa","https://ellas-design.blogspot.com/2018/10/passion-for-promarkers-christmas-is.html",null,1538469742],
["11260578","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/10/bauble-christmas-card.html",null,1538475658],
["11260588","cheiro urgia","https://cheirourgia.blogspot.com/2018/10/autumn-flowers.html",null,1538477478],
["11260599","Cicci with the Pen","http://ciccividpennan.blogspot.com/2018/10/new-atg-challenge-rick-st-dennis-and.html",null,1538480316],
["11260602","Cicci with the Pen","http://ciccividpennan.blogspot.com/2018/10/new-anything-goes-challenge-over-at.html",null,1538480365],
["11260605","Aileen Ryan Australia","https://colourandsparkle.blogspot.com/2018/10/alright-i-tried-but-i-just-cant-stay.html",null,1538481225],
["11260624","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/10/stinkin-inkers-challenge.html",null,1538483963],
["11260626","Tina Föcking","https://paperplotterlottas-craftchaos.blogspot.com/2018/10/all-dressed-up-fb-challenge-inspiration.html",null,1538484355],
["11260627","Judy V","http://jvzcreations.blogspot.com/2018/10/digi-doodles-studios-challenge-10.html",null,1538484422],
["11260628","ScrappyHorses","http://scrappyhorses.blogspot.com/2018/10/halloween-treat-bag.html",null,1538484793],
["11260639","Scraffky","http://scraffky.blogspot.com/2018/10/zaproszenie-biao-rozowe.html",null,1538486414],
["11260670","tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/10/boo.html",null,1538489046],
["11260671","Pippa","https://pippapblog.wordpress.com/2018/10/01/path-of-positivity-shades-of-purple/",null,1538489643],
["11260674","Dreja","https://drejasbastelwelt.blogspot.com/2018/10/206-sonne-hz-67-af-48-ske-ta.html",null,1538489815],
["11260677","Rijacki Ledum: Something Wicked","https://rijacki.blogspot.com/2018/10/something-wicked-ttcrd.html",null,1538490476],
["11260713","Jackie T","https://tinyrosecr.blogspot.com/2018/10/a-batch-of-poinsettia-and-snowflake.html",null,1538496384],
["11260740","Melanie Gee","https://melgeecrafts.com/2018/10/01/challenge-for-sheepski-designs-01-10-2018/",null,1538503522],
["11260806","niki1","https://www.splitcoaststampers.com/gallery/photo/2893494?&cat=500&ppuser=205884",null,1538509789],
["11260808","Tip Top","http://tiptoptoppers.blogspot.com/2018/10/birthday-cake.html",null,1538510031],
["11260833","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/10/first-christmas-exploding-box.html",null,1538514037],
["11260919","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2018/10/dragon-theme-card.html",null,1538545206],
["11260934","Greeshma","https://gpexplosionbox.blogspot.com/2018/10/first-dt-post-for-crafts-galore-encore.html",null,1538548178],
["11260935","Megan Flynn","https://thehappycraftchallenge.blogspot.com/2018/10/long-time-no-emboss.html",null,1538548323],
["11260951","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/10/una-shadow-box-per-inaugurare-una-nuova.html",null,1538550528],
["11260962","Sheryl Hare","https://marchharecards.blogspot.com/2018/10/three-of-kind.html",null,1538551546],
["11260977","Marja","http://marjaskaarten.blogspot.com/2018/10/herfst.html",null,1538554470],
["11260979","Larissa","https://car-d-elicious.blogspot.com/2018/10/gerda-steiner-designs-halloween-kids.html",null,1538554769],
["11260995","Emma R","https://emgoescardmaking.blogspot.com/2018/10/melon-tilda.html",null,1538557887],
["11261024","Gerie","https://scraptastisch.blogspot.com/2018/10/herfstblaadjes.html",null,1538566214],
["11261025","Michelle Lancaster","https://laughingducks2012.blogspot.com/2018/10/pennys-paper-crafty-challenge-number.html",null,1538566295],
["11261101","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/10/coffee-is-hug-in-mug.html",null,1538572961],
["11261120","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/10/but-first-coffee.html",null,1538574657],
["11261123","Mindy Baxter","https://www.mycreativescoop.com/new-challenge-lets-get-ready-for-christmas/",null,1538574816],
["11261207","elizabeth h","http://warmharted.blogspot.com/2018/10/pumpkin-witch.html",null,1538582341],
["11261230","CreaNancy","https://creanancy.blogspot.com/2018/10/19.html",null,1538588236],
["11261295","Louise F","https://punknscrap2.blogspot.com/2018/10/scootin-by-on-sgc-thursday.html",null,1538610622],
["11261377","tinyworks","https://tinyworks81.blogspot.com/2018/10/swing-easel-card-dt-simply-magnolia.html",null,1538644837],
["11261381","pinky","https://pinkysworldsuprojects.blogspot.com/2018/10/lollipops-from-santas-workshop.html",null,1538646068],
["11261401","NanaConnie","http://mygrammysattic.blogspot.com/2018/10/birthday-freesias.html",null,1538656497],
["11261411","Craftartista","https://craftartista.blogspot.com/2018/10/beautiful-zen-bat.html",null,1538658548],
["11261424","Claudia","http://knutselmeisjes.blogspot.com/2018/10/its-your-birthday.html",null,1538664840],
["11261427","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/10/happy-halloween.html",null,1538666674],
["11261429","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2018/10/spooky-haunted-house.html",null,1538666881],
["11261430","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2018/10/spook-it-up.html",null,1538667094],
["11261467","Sharon Hudson","https://craftyhugs.blogspot.com/2018/10/fairy-lantern.html?m=1",null,1538679902],
["11261586","Pam Sebring","http://psebring.blogspot.com/2018/10/pretty-leaves.html",null,1538708490],
["11261622","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2018/10/delilah.html",null,1538719003],
["11261640","Glittertastic","http://glittertastic.blogspot.com/2018/10/simple-baptism-card.html",null,1538724690],
["11261757","Jane Willis","https://onionsandpaper.blogspot.com/2018/10/you-are-beautiful.html",null,1538750761],
["11261790","Chandhini","https://thecreativetwins.blogspot.com/2018/10/one-is-never-too-old-for-dolls.html",null,1538758841],
["11261843","pat martin","https://patacakespages.blogspot.com/2018/10/ikes-world-challenge-blog-salutes-edgar.html",null,1538769678],
["11261848","elizabeth h","http://warmharted.blogspot.com/2018/10/fall-girl.html",null,1538770618],
["11261894","AJ","https://ajcreativeenergy.blogspot.com/2018/10/2019-planner.html",null,1538776744],
["11261897","Nicola Gold","https://amethystlilydesigns.blogspot.com/2018/10/guest-designer-at-colour-crazy.html",null,1538777567],
["11261915","Craftartista","https://craftartista.blogspot.com/2018/10/beauty.html",null,1538786766],
["11261917","Rita","http://www.cardsbyrita.com/2018/10/minecraft-what.html",null,1538788101],
["11261937","elizabeth h","http://warmharted.blogspot.com/2018/10/cool-friends.html",null,1538794536],
["11262025","Wendy F","http://crazy4flowerscards.blogspot.com/2018/10/beautiful-butterflies-again.html",null,1538820762],
["11262047","Wendy Batchen","https://wenscreations.blogspot.com/2018/10/scrappers-delights-special-deals-6th.html",null,1538823928],
["11262074","nnalorac","https://somethinggonemissing.blogspot.com/2018/10/use-pumpkin.html",null,1538829690],
["11262106","Jennifer Scull","https://justcoffeepleasestampsribbonspaper.blogspot.com/2018/10/from-my-heart-to-yours-for-wcmd-plus.html",null,1538833158],
["11262143","Donna R","https://indianainking.blogspot.com/2018/10/birthday-tag.html",null,1538838720],
["11262184","Andree","http://acecardsandree.blogspot.com/2018/10/creative-artiste-43-october-2018.html",null,1538846610],
["11262207","cheiro urgia","https://cheirourgia.blogspot.com/2018/10/anime-portrait.html",null,1538849205],
["11262243","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2018/10/rainbow-unicorn.html",null,1538858319],
["11262261","Larissa","https://car-d-elicious.blogspot.com/2018/10/dis-digi-designs-challenge-include.html",null,1538862593],
["11262283","Vivi Casale","http://handmadebyvivi.blogspot.com/2018/10/congratulations.html",null,1538869679],
["11262297","Pam Sebring","http://psebring.blogspot.com/2018/10/love-you.html",null,1538872928],
["11262324","Karthikha","https://loveforkrafts.blogspot.com/2018/10/out-of-world.html",null,1538886886],
["11262347","Nish creations","http://creationspersonalised.blogspot.com/2018/10/autumn.html",null,1538894928],
["11262349","Michelle","https://michelledees.blogspot.com/2018/10/vintage-mannen-vintage-men.html",null,1538895372],
["11262388","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/10/kerstgroetjes.html",null,1538907477],
["11262413","Helen","http://helenscrafthaven.blogspot.com/2018/10/pile-it-on-challenge-use-mostly-black.html",null,1538910997],
["11262574","Leslie Turner","http://lovetoscrap2.com/2018/10/01/shamrock-notes-post-it-note-pad-holder",null,1538938052],
["11262576","Leslie Turner","http://lovetoscrap2.com/2018/10/01/lucky",null,1538938595],
["11262577","Leslie Turner","http://lovetoscrap2.com/2018/10/01/autumn-blessings-2",null,1538938670],
["11262578","Leslie Turner","http://lovetoscrap2.com/2018/10/01/dear-santa",null,1538938737],
["11262580","Leslie Turner","http://lovetoscrap2.com/2018/10/01/wicked-tag",null,1538938781],
["11262581","Leslie Turner","http://lovetoscrap2.com/2018/10/02/happy-halloween",null,1538938828],
["11262583","Leslie Turner","http://lovetoscrap2.com/2018/10/07/11810",null,1538938897],
["11262665","Tammy L","https://tampatha.wordpress.com/2018/10/07/pio-147/",null,1538963094],
["11262710","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2018/10/the-paper-nest-dolls-challenge.html",null,1538979706],
["11262711","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/10/dikke-knuffel.html",null,1538979959],
["11262716","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2018/10/lets-craft-create-challenge-142.html",null,1538981271],
["11262731","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/10/een-zoon.html",null,1538985413],
["11262742","Desire Fourie","https://desiref.blogspot.com/2018/10/stardust-color-it-create-it-show-it-off.html",null,1538988105],
["11262756","monique","http://moniqueschattefor.blogspot.com/2018/10/dagje-vissen.html",null,1538992200],
["11262762","jenimc","http://jenicraftroom.blogspot.com/2018/10/pink-and-gold-shaker.html",null,1538994199],
["11262849","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/10/finally-sharing-something.html?m=0",null,1539007830],
["11262864","Anna","https://nonsolocard.blogspot.com/2018/10/un-solo-foglio-e-il-packaging-e-pronto.html",null,1539011375],
["11262953","Chrissyxx","https://trulychrissyxx.blogspot.com/2018/10/birthday-monkey.html",null,1539023515],
["11262969","Helene Ouellet","https://lescreationsdhelene.blogspot.com/2018/10/une-carte.html",null,1539025438],
["11262970","Vannessa","http://saffiresstamping.blogspot.com/2018/10/the-paper-shelter-challenge-356-time-to.html",null,1539025466],
["11263003","Suetarby","https://craftingwithloveandfairydust.blogspot.com/2018/10/halloween-mdf-makes.html",null,1539031138],
["11263029","Rijacki Ledum: Piano Birthday Silver","https://rijacki.blogspot.com/2018/10/take-flight.html",null,1539035333],
["11263040","AJ","https://ajcreativeenergy.blogspot.com/2018/10/halloween-jester.html",null,1539038997],
["11263096","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/10/best-witches.html",null,1539054062],
["11263124","Doreen","https://doreensdream.blogspot.com/2018/10/another-scenic-card.html",null,1539065746],
["11263125","Maya","https://mayas-hobbyblogg.blogspot.com/2018/10/god-julmerry-christmas_9.html",null,1539066333],
["11263132","Annemi","https://systeryster-annemi.blogspot.com/2018/10/new-challenge-starts-today-at-ttcrd.html",null,1539069339],
["11263148","Craftartista","https://craftartista.blogspot.com/2018/10/enjoy-rain.html",null,1539070370],
["11263173","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2018/10/passion-for-promarker-challenge-465.html",null,1539077208],
["11263217","Julie T","https://juliescraftyspot.blogspot.com/2018/10/purple-and-green-birthday-card.html",null,1539087992],
["11263254","Mindy Baxter","https://www.mycreativescoop.com/copic-marker-tutorial-for-pretty-pink-posh-10-copic-tutorials-for-fall/",null,1539093372],
["11263256","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/10/fangs-for-memories.html",null,1539093826],
["11263317","Sharon","https://frommycraftdesk.blogspot.com/2018/10/ultimate-qcas-thank-you.html",null,1539103291],
["11263333","Shamita","https://spiralcreativity.blogspot.com/2018/10/love-hugs.html",null,1539104610],
["11263397","MARLENE","https://cardsmadebymarlene.blogspot.com/2018/10/flowers-at-dream-valley.html",null,1539114867],
["11263409","AJ","https://ajcreativeenergy.blogspot.com/2018/10/halloween-hoot.html",null,1539117065],
["11263502","Patty Sue2","https://patty-inkitup.blogspot.com/2018/10/watch-lamb.html",null,1539141695],
["11263531","Jootje","https://jootjesscrapcards.blogspot.com/2018/10/celebration.html",null,1539150240],
["11263562","Craftartista","https://craftartista.blogspot.com/2018/10/make-time-for-coffee-and-cake.html",null,1539159376],
["11263574","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/10/eline-jarig.html",null,1539161592],
["11263575","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/10/baby-album-first-year.html",null,1539161989],
["11263618","Nish","http://creationspersonalised.com/2018/10/golden-tag.html",null,0],
["11263619","Nish","https://creationspersonalised.blogspot.com/2018/10/golden-tag.htm",null,0],
["11263621","Nish","https://creationspersonalised.blogspot.com/2018/10/golden-tag.html",null,1539171445],
["11263687","Kali","https://bastelgrotte.de/?p=11524",null,1539178656],
["11263793","Dreja","https://drejasbastelwelt.blogspot.com/2018/10/25-sweet-stampers.html",null,1539189942],
["11263807","Larissa","https://car-d-elicious.blogspot.com/2018/10/atc-coins-for-world-space-week-bloghop.html",null,1539191665],
["11263808","Patty Sue2","https://patty-inkitup.blogspot.com/2018/10/music-or-dance.html",null,1539191828],
["11263845","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/10/family-tree-birthday-card.html",null,1539205462],
["11263847","Judy McKay","http://insearchofmycreativeside.blogspot.com/2018/10/you-are-invited-to-party.html",null,1539205756],
["11263848","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/10/perfume-bottle-birthday-card.html",null,1539205867],
["11263910","Karthikha","https://loveforkrafts.blogspot.com/2018/10/wcmd-2018-be-unicorn.html",null,1539214235],
["11263922","Michelle M","https://chelleshocked2.blogspot.com/2018/10/conie-fong-dt-new-release-snowy-penguin.html",null,1539216308],
["11263943","Gloria Shirr ","https://purpleglocreations.blogspot.com/2018/10/christmas-card-using-conie-fong-snowy.html",null,1539223932],
["11263977","Hazel L","http://hazel-hazelshappyhouse.blogspot.com/2018/10/moving-along-with-times-male.html",null,1539247190],
["11263980","Craftartista","https://craftartista.blogspot.com/2018/10/witch-party.html",null,1539247777],
["11264018","Katrine ","https://katrinehspapirverden.blogspot.com/",null,1539267793],
["11264036","Steffi H.","https://www.flickr.com/photos/spinkymausi/45247765971/in/dateposted/",null,1539272521],
["11264079","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/10/fancy-folds.html",null,1539283328],
["11264096","Nish","https://creationspersonalised.blogspot.com/2018/10/baby-boy.html",null,1539286586],
["11264098","Nish","https://creationspersonalised.blogspot.com/2018/10/fall-autumn.html",null,1539286791],
["11264127","Sharon Hudson","https://craftyhugs.blogspot.com/2018/10/light-up-sparkly-chandelier.html?m=1",null,1539295407],
["11264128","Sharon Hudson","https://craftyhugs.blogspot.com/2018/10/twinkle-toes-house.html?m=1",null,1539295439],
["11264235","Craftartista","https://craftartista.blogspot.com/2018/10/love-rainy-days.html",null,1539331424],
["11264252","Dheepika Vasudhevan","https://creative2015minds.blogspot.com/2018/10/couple-in-heart.html",null,1539332577],
["11264386","Chandhini","https://thecreativetwins.blogspot.com/2018/10/festive-wall-hanging-diy-elephant-toran.html",null,1539354656],
["11264406","Scrappy","http://big-scrappy-world.blogspot.com/2018/10/october-11th-and-its-time-for-oldie-but.html",null,1539357939],
["11264576","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2018/10/cas-colours-sketches-europa-donna.html",null,1539412958],
["11264582","Diny","http://dinys-scrapkaarten.blogspot.com/2018/10/hartelijk-gefeliciteerd-met-jullie.html",null,1539414502],
["11264596","Scatty Jan","https://scrappyscatty.blogspot.com/2018/10/polkadoodles-meets-pink-gem-designs.html",null,1539419165],
["11264597","Aimeslee","https://paper-paisleys.blogspot.com/2018/10/thankful-for-autumn.html",null,1539419538],
["11264600","tina föcking","https://paperplotterlottas-craftchaos.blogspot.com/2018/10/oddball-creepy-cute-chronicles-22.html",null,1539421060],
["11264601","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/10/fijne-verjaardag_13.html",null,1539421057],
["11264733","Craftartista","https://craftartista.blogspot.com/2018/10/enjoy-your-special-day.html",null,1539444670],
["11264767","monique","http://moniqueschattefor.blogspot.com/2018/10/herfst-pluk-de-dag.html",null,1539454057],
["11264861","J. Atterbury Creations","http://jatterburycreations.blogspot.com/2018/10/scripture-series-bear-one-anothers.html",null,1539477023],
["11264862","J. Atterbury Creations","http://jatterburycreations.blogspot.com/2018/10/believe-in-today-center-step-card-join.html",null,1539477065],
["11264954","Lou","https://jemlouproductions.blogspot.com/2018/10/arctic-or-antarctic-animals-winter.html",null,1539505510],
["11264988","CreaNancy","https://creanancy.blogspot.com/2https://creanancy.blogspot.com/2018/10/catch-bug-stella-says-sketch-617.html018/10/van-harte-beterschap.html",null,0],
["11264989","CreaNancy","https://creanancy.blogspot.com/2018/10/catch-bug-stella-says-sketch-617.html",null,1539515141],
["11265018","Craftartista","https://craftartista.blogspot.com/2018/10/mr-mrs.html",null,1539521627],
["11265031","Hazel L","http://hazel-hazelshappyhouse.blogspot.com/2018/10/iaas-black-and-orange.html",null,1539523133],
["11265091","Einat","https://einat109.blogspot.com/2018/10/wedding-card.html",null,1539531912],
["11265096","mel-decorcraftdesign","https://decorcraftdesign.wordpress.com/2018/10/14/diy-geometric-gold-painted-bottle-for-fall-decoration/",null,0],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}