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("14Oct2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRvY3QyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("4.5 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Oct2019");
blenza_linkies("thumb","lozzy","14Oct2019","1980295677",3,
[
// MTRvY3QyMDE5
["11396506","tinyworks","https://tinyworks81.blogspot.com/2019/10/cappello-da-trega-designer-team.html",null,1571134611],
["11396524","Kym","http://kyms-crafty-cards.blogspot.com/2019/10/happy-birthday.html",null,1571141413],
["11396528","Karen C","http://busyinspirations.blogspot.com/2019/10/happy-turkey-day.html",null,1571142026],
["11396567","Jolanda","https://jolandasblogs.blogspot.com/2019/10/world-wide-open-design-team-challenge-10.html",null,1571151906],
["11396625","CarolG NZ","https://creationsnz.blogspot.com/2019/10/abuzzin.html",null,1571159929],
["11396631","jenimc","https://jenicraftroom.blogspot.com/2019/10/baby-bunny.html",null,1571161729],
["11396632","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/10/sparkles-monthly-challenges-ch-121-dt.html",null,1571161817],
["11396641","Monica C.","https://www.sunshinecreativity.com/2019/10/the-pupil.html",null,1571165021],
["11396735","Donna R","https://indianainking.blogspot.com/2019/10/here-comes-santa.html",null,1571183539],
["11396737","Joy Wilson","http://www.joyfullystamps.com/2019/10/scandi-christmas.html",null,1571183540],
["11396757","Mary Marsh","https://thecharmedlife-maryr917.blogspot.com/2019/10/put-on-your-party-hat.html",null,1571189857],
["11396803","Tip Top","http://tiptoptoppers.blogspot.com/2019/10/100-watt-birthday.html",null,1571202824],
["11396830","Craftartista","https://craftartista.blogspot.com/2019/10/boundless.html",null,1571211503],
["11396839","Desire Fourie","https://desiref.blogspot.com/2019/10/all-best-reminder-project-october-2019.html",null,1571213424],
["11396879","Linda Mc Enery","http://lindamscreations.blogspot.com/2019/10/pennys-paper-crafty-challenge-452.html",null,1571223806],
["11396884","ria","http://purpleliciouskingdom.blogspot.com/2019/10/have-beautifull-day.html",null,1571224452],
["11396921","Karen C","http://busyinspirations.blogspot.com/2019/10/happy-boss-day.html",null,1571228973],
["11396969","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/10/per-il-compleanno-di-un-piccolo-grande.html",null,1571236366],
["11396984","Julie T","https://juliescraftyspot.blogspot.com/2019/10/nature-lover-polkadoodles.html",null,1571238703],
["11396993","Rutscht","https://rutscht.blogspot.com/2019/10/happy-haunting.html",null,1571241076],
["11397031","My Other World","https://scrapsdamaryv.blogspot.com/2019/10/pennys-challenges-452.html",null,1571253592],
["11397166","Granne","https://aavamaki.blogspot.com/2019/10/gdt-at-craft-challenge-532-box-or-bag.html",null,1571287052],
["11397181","bianca's scrapcards","https://biancasscrapcards.blogspot.com/2019/10/broomstick-mice.html",null,1571297464],
["11397202","Suzi Mac","https://wwwsuzies.blogspot.com/2019/10/crafteezee-dt-all-dressed-up-what-to.html",null,1571307072],
["11397216","Debbie M","https://secretstamper.com/2019/10/good-morning-magnolia-canvas/",null,1571313584],
["11397219","*Vicki*","https://stampedsmiles.com/2019/10/17/spots-and-dots-for-cute-card-thursday-2/",null,1571315814],
["11397242","Lisa Bird","https://craftycard-designs.co.uk/where-wild-roses-grow-especially-for-you/",null,1571322377],
["11397264","NanaConnie","https://mygrammysattic.blogspot.com/2019/10/fright-night.html",null,1571323775],
["11397266","Teresa","https://redobsessioncards.blogspot.com/2019/10/lets-dance.html?m=1",null,1571324747],
["11397271","Carla","https://carla-writes.blogspot.com/2019/10/thanks-to-special-nurse.html",null,1571327060],
["11397309","Judy V","https://jvzcreations.blogspot.com/2019/10/musical-happy-birthday-card.html",null,1571342144],
["11397315","Liliane Carvalho","http://scrapchosdalilica.blogspot.com/2019/10/boa-tarde-arteiras-hoje-venho-trazer.html",null,1571346375],
["11397431","Kym","http://kyms-crafty-cards.blogspot.com/2019/10/ching-chou-kuiks-digital-stamps_18.html",null,1571378331],
["11397465","Debra Shaw","https://debs-eternity-cards.blogspot.com/2019/10/kitsune-sprite-and-hepaticia-sprite.html",null,1571390780],
["11397497","monique","http://moniqueschattefor.blogspot.com/2019/10/panda-roos.html",null,1571393397],
["11397530","Karen C","http://busyinspirations.blogspot.com/2019/10/over-hill.html",null,1571398716],
["11397531","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/10/music-makers-and-dreamers-of-dreams.html",null,1571398779],
["11397568","Claudia","https://knutselmeisjes.blogspot.com/2019/10/tag-along-november-herfst.html",null,1571405382],
["11397586","Chriss R.","https://chrissandlou.blogspot.com/2019/10/moonlight-clock.html",null,1571408139],
["11397597","Teresa","https://redobsessioncards.blogspot.com/2019/10/birthday-dragonfly.html?m=1",null,1571410483],
["11397616","Shona Hamill","https://handmadebyhamill.blogspot.com/2019/10/holly-ivy-christmas-challenge-58.html",null,1571413967],
["11397623","Fiona Whitehead","https://craftystamping.blogspot.com/2019/10/one-corner-cas-card.html",null,1571415745],
["11397624","Shona Hamill","http://handmadebyhamill.blogspot.com/2019/10/anything-goes-as-long-as-its-cute-with.html",null,1571415812],
["11397643","Gloria Shirr","https://purpleglocreations.blogspot.com/2019/10/conie-fong-purrfect-christmas-using.html",null,1571419049],
["11397650","caroline's creaties","https://caroline-creaties.blogspot.com/2019/10/jeans.html",null,1571419956],
["11397713","Judy V","https://jvzcreations.blogspot.com/2019/10/stand-out.html",null,1571433033],
["11397771","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2019/10/the-creative-crafters-challenge-21.html",null,1571459779],
["11397777","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2019/10/ching-chou-kuik-inspiration.html",null,1571461986],
["11397809","Teresa","https://redobsessioncards.blogspot.com/2019/10/christmas-stockings.html?m=1",null,1571474626],
["11397886","Karen C","http://busyinspirations.blogspot.com/2019/10/with-thanks-deer.html",null,1571488702],
["11397952","Cathy(kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/10/abstract-tulip.html",null,1571502531],
["11397996","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2019/10/princess.html",null,1571519928],
["11398059","Ruth Lopez","https://www.myhobbymyart.com/2019/10/christmas-card-and-tag.html",null,1571549806],
["11398096","Crealientje","https://isocrealientje.blogspot.com/2019/10/n-jaartje-erbij.html",null,1571562529],
["11398099","Teresa","http://redobsessioncards.blogspot.com/2019/10/pumpkin-mice.html?m=1",null,1571562932],
["11398114","Fleur","https://fleurapassionforcraft.blogspot.com/2019/10/christmas-gift-set.html",null,1571566621],
["11398219","Judy V","https://jvzcreations.blogspot.com/2019/10/cowgirl-up.html?m=0",null,1571581963],
["11398233","Teresa","http://redobsessioncards.blogspot.com/2019/10/autumn-fox.html?m=1",null,1571583457],
["11398239","Made By Mandy","https://amandacruxton2.blogspot.com/2019/10/winnie-wednesday-bat-dog.html",null,1571585340],
["11398278","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/10/aubergine-taupe-en-grijs.html",null,1571594138],
["11398324","Donna R","https://indianainking.blogspot.com/2019/10/fall-birthday.html",null,1571601888],
["11398330","Varsha from India","https://cartsandcrafts.blogspot.com/2019/10/happy-halloween-mixed-media-canvas.html?m=1",null,1571605731],
["11398539","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/10/ik-heb-vandaag-een-kaart-gemaakt-in-de.html",null,1571663831],
["11398547","yvonne krijgsman","https://yvonne1965shamina.blogspot.comhttps://yvonne1965shamina.blogspot.com/2019/10/mijn-herinneringskaart-voor-de.html",null,0],
["11398549","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/10/mijn-herinneringskaart-voor-de.html",null,0],
["11398560","Maryann Scrapbooking","https://maryann-scrap.blogspot.com/2019/10/joyeux-halloween-little-witch.html",null,1571669547],
["11398568","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/10/una-explosion-box-dei-sogni.html",null,1571671652],
["11398583","monique","https://moniqueschattefor.blogspot.com/2019/10/hooien.html",null,1571674785],
["11398688","Craftartista","https://craftartista.blogspot.com/2019/10/halloween-mood.html",null,1571698543],
["11398747","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/10/van-harte.html",null,1571730473],
["11398754","Hazel","https://craftyhazelnut.blogspot.com/2019/10/chnc-challenge-460.html",null,1571731053],
["11398759","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/10/la-quatrieme-affiche.html",null,1571732061],
["11398797","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/10/midway-through-courage.html",null,1571744930],
["11398808","caroline's creaties","https://caroline-creaties.blogspot.com/2019/10/steampunk.html",null,1571748075],
["11398831","jenimc","https://jenicraftroom.blogspot.com/2019/10/gold-and-silver-shades.html",null,1571753655],
["11398836","Shona Hamill","http://handmadebyhamill.blogspot.com/2019/10/focus-on-good.html",null,1571754839],
["11398850","Carol","https://carol-paperplay-carol.blogspot.com/2019/10/bokeh-technique.html",null,1571758499],
["11398852","Carol","https://carol-paperplay-carol.blogspot.com/2019/10/bokeh-page-2.html",null,1571758580],
["11398874","Judy V","https://jvzcreations.blogspot.com/2019/10/bringing-gifts.html",null,1571764637],
["11398881","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/10/herfsttafereeltje.html",null,1571768144],
["11398922","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/10/so-girl-and-her-cat-go-trick-or-treating.html",null,1571779565],
["11398947","Liliane Carvalho","http://scrapchosdalilica.blogspot.com/2019/10/novo-cartao.html",null,1571786919],
["11398975","Leslie Turner","http://lovetoscrap2.com/2019/10/22/christmas-memories-mini-album",null,1571796326],
["11398984","Chaitali ","https://www.instagram.com/p/B3aAaD6gaIh/?igshid=5812iqfrffmd",null,1571801446],
["11399113","Creative Em","https://www.creative-em.com/2019/10/another-bird-in-flight.html",null,1571831534],
["11399131","Lou Sims","https://lulucardmaking.blogspot.com/2019/10/bullet-journal-using-new-live-every.html",null,1571835502],
["11399132","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/10/progressive-challenge-27-leanns-world_19.html",null,1571835611],
["11399149","ValeryAnne","https://itsanalienlife.blogspot.com/2019/10/never-ending-love.html",null,1571837426],
["11399293","JanR","https://huhsothisisablog.blogspot.com/2019/10/dont-forget-about-me-little-red-wagon.html",null,1571882448],
["11399356","Dreja","https://drejasbastelwelt.blogspot.com/2019/10/3x-weihnachten-1x-geburtstag.html",null,1571904003],
["11399360","Loopyloo","https://loopyloocards.com/2019/10/24/blingy-star/",null,1571905231],
["11399366","Maxine D .","https://kiwimeskreations.blogspot.com/2019/10/outer-space-and-magic-window.html",null,1571906974],
["11399373","Craftartista","https://craftartista.blogspot.com/2019/10/vintage-dreamers.html",null,1571912794],
["11399397","Lori Podolsky","https://loripodolsky.blogspot.com/2019/10/pick-pumpkin-by-ching-chou-kuik.html",null,1571922480],
["11399421","Judy V","https://jvzcreations.blogspot.com/2019/10/forever-wedding-card.html",null,1571930934],
["11399443","Steffi H.","https://www.flickr.com/photos/spinkymausi/48953358378/in/dateposted/",null,1571942046],
["11399450","Tip Top","http://tiptoptoppers.blogspot.com/2019/10/i-love-promarkers-challenge-395-knitty.html",null,1571944331],
["11399459","Debra","https://debs-eternity-cards.blogspot.com/2019/10/robo-christmas.html",null,1571947253],
["11399481","Helen","https://craftinghelen.blogspot.com/2019/10/new-sheepski-designs-facebook-challenge.html",null,1571953742],
["11399485","Helen","https://craftinghelen.blogspot.com/2019/10/new-through-craft-room-door-challenge_22.html",null,1571954662],
["11399555","Gloria Shirr","https://purpleglocreations.blogspot.com/2019/10/halloween-card-using-ctmh-fa-boo-lous.html",null,1571983250],
["11399566","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/10/babykaart.html#comment-form",null,1571986050],
["11399592","Dawn S","https://dawnscraftybits.blogspot.com/2019/10/colour-crazy-challenge-big-pumpkin.html",null,1571993416],
["11399646","cheiro urgia","https://cheirourgia.blogspot.com/2019/10/kiwi-love.html",null,1572003192],
["11399667","Gerie","https://scraptastisch.blogspot.com/2019/10/herfst.html",null,1572005086],
["11399683","Debbie","https://debbie-thedolphins.blogspot.com/2019/10/winnie-heartfelt-wishes.html",null,1572007254],
["11399686","Judy V","https://jvzcreations.blogspot.com/2019/10/mosaic-background-card.html",null,1572007494],
["11399698","Chriss R.","https://chrissandlou.blogspot.com/2019/10/a-halloweenthanksgiving-tray.html",null,1572009408],
["11399708","monique","https://moniqueschattefor.blogspot.com/2019/10/witch-queen.html",null,1572011720],
["11399813","Jennifer Scull","https://justcoffeepleasestampsribbonspaper.blogspot.com/2019/10/sending-love-and-hugs-two-cats-tag-card.html",null,1572036052],
["11399842","Liliane Carvalho","http://scrapchosdalilica.blogspot.com/2019/10/boa-noite-arteiras-outubro-esta.html",null,1572048114],
["11399897","Shelly Schmidt","https://shellymc2.blogspot.com/2019/10/splat-splat.html",null,1572072784],
["11399925","Hazel","https://craftyhazelnut.blogspot.com/2019/10/chnc-challenge-461.html",null,1572081617],
["11399934","Cinderella 1","https://cinderellasdreamcardsblog.blogspot.com/2019/10/holly-jolly-christmas.html",null,1572084807],
["11399991","elizabeth","https://worldofelizabeth.blogspot.com/2019/10/love-life.html",null,1572093316],
["11400090","Mary Marsh","https://thecharmedlife-maryr917.blogspot.com/2019/10/santas-workshop.html",null,1572105736],
["11400108","caroline's creaties","https://caroline-creaties.blogspot.com/2019/10/eigen-achtergrond.html",null,1572111366],
["11400189","Leslie Turner","http://lovetoscrap2.com/2019/10/24/boo",null,1572129148],
["11400193","Leslie Turner","http://lovetoscrap2.com/2019/10/26/youre-cool",null,1572132244],
["11400196","Leslie Turner","http://lovetoscrap2.com/2019/10/25/meow-2",null,1572132349],
["11400197","Leslie Turner","http://lovetoscrap2.com/2019/10/23/sorry-for-the-loss-of-your-furry-friend-2",null,1572132422],
["11400198","Leslie Turner","http://lovetoscrap2.com/2019/10/22/pssst",null,1572132483],
["11400199","Leslie Turner","http://lovetoscrap2.com/2019/10/21/santa-is-watching",null,1572132536],
["11400328","Melanie","https://creative-world-of-melanie.blogspot.com/2019/10/big-christmas-hug.html",null,1572169055],
["11400330","Melanie","https://creative-world-of-melanie.blogspot.com/2019/10/viel-gluck.html",null,1572169322],
["11400350","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/10/winterse-kaart.html",null,1572173964],
["11400363","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/10/youre-purrr-fect.html",null,1572177732],
["11400404","Ċ½eljka","https://creativemomanddaughter.blogspot.com/2019/10/week-21-gem-of-challenge.html",null,1572182049],
["11400484","Judy V","https://jvzcreations.blogspot.com/2019/10/heartfelt-festive-wishes.html",null,1572193230],
["11400560","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2019/10/scorpio-anime-vip-bundle-scrappers.html?showComment=1572186730118",null,1572209598],
["11400585","Suze","https://craftysuze.blogspot.com/2019/10/love-peace-joy.html",null,1572220797],
["11400656","pinky","https://pinkysworldsuprojects.blogspot.com/2019/10/on-to-adventure-colour-challenge.html",null,1572257579],
["11400677","Leslie Turner","http://lovetoscrap2.com/2019/10/23/pair-of-creepy-coffins",null,1572260752],
["11400720","caroline's creaties","https://caroline-creaties.blogspot.com/2019/10/sara-geboren.html",null,1572270285],
["11400740","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/10/ik-heb-een-romantische-kaart-gemaakt.html",null,1572276396],
["11400779","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/10/we-zijn-weer-met-een-nieuwe-wedstrijd_28.html",null,1572292358],
["11400798","Koraliki Beaty","https://koralikibeaty.blogspot.com/2019/10/halloween-idzie-czyli-torebka-na-cukry.html",null,1572296866],
["11400831","Donna R","https://indianainking.blogspot.com/2019/10/magic-birthday-card.html",null,1572310412],
["11400900","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/10/50-jaar-getrouwd.html",null,1572333280],
["11400904","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/10/fotografije-s-potovanj.html",null,1572334867],
["11400941","earl-lea-riser.","https://earl-lea-riser.blogspot.com/2019/10/happy-fall-2019.html",null,1572347264],
["11400943","Dawn S","https://dawnscraftybits.blogspot.com/2019/10/a-purplicious-birthday-card.html",null,1572347387],
["11400944","earl-lea-riser.","https://earl-lea-riser.blogspot.com/2019/10/so-nuts.html",null,1572347470],
["11400988","Karthikha","https://loveforkrafts.blogspot.com/2019/10/home-decor-diy-flower-vase-from-salt.html",null,1572360151],
["11400995","Rijacki Ledum","https://rijacki.blogspot.com/2019/10/poppies-ttcrd.html",null,1572361491],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}