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("30Sep2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzBzZXAyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("5 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("30Sep2019");
blenza_linkies("thumb","lozzy","30Sep2019","1631103739",3,
[
// MzBzZXAyMDE5
["11391769","Ċ½eljka","https://creativemomanddaughter.blogspot.com/2019/10/trick-or-treat-with-polkadoodles.html",null,1569916196],
["11391793","Dawn S","https://dawnscraftybits.blogspot.com/2019/10/a-pretty-autumn-birthday-card.html",null,1569924785],
["11391815","Linda Mc Enery","http://lindamscreations.blogspot.com/2019/10/digi-doodle-studios-october-challenge.html",null,1569931552],
["11391820","Carla","https://carla-writes.blogspot.com/2019/09/halloween-card-2.html",null,1569932546],
["11391821","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/10/challenge-34-bei-do-all-kreatives.html",null,1569932691],
["11391888","Granne","https://aavamaki.blogspot.com/2019/10/sheepski-designs-autumn.html",null,1569945126],
["11391902","Kym","https://kyms-crafty-cards.blogspot.com/2019/10/ching-chou-kuik-digital-stamps-october.html",null,1569950445],
["11391921","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/10/courage-is-being-scared-to-death-but.html",null,1569954438],
["11392035","Carole J","https://cjcrafty.blogspot.com/2019/10/gecko-galz-gypsy-fortunes.html",null,1569976067],
["11392038","Anet","https://anetscrafting.blogspot.com/2019/10/christmas-wishes-layout-couture.html",null,1569976584],
["11392205","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2019/10/holly-pond-hill.html",null,1570003533],
["11392210","Wendy F","http://crazy4flowerscards.blogspot.com/2019/10/autumn-coloursat-fabnfunky-challenges.html?m=0",null,1570004428],
["11392223","jenimc","https://jenicraftroom.blogspot.com/2019/10/colours-flowers.html",null,1570008250],
["11392257","Rutscht","https://rutscht.blogspot.com/2019/10/happy.html",null,1570015878],
["11392265","Julie T","https://juliescraftyspot.blogspot.com/2019/10/little-elf-pipa-mos-digital-pencil.html",null,1570018064],
["11392268","Anet","https://anetscrafting.blogspot.com/2019/10/give-me-kiss-paper-shelter-challenge.html",null,1570018354],
["11392299","Craftartista","https://craftartista.blogspot.com/2019/10/gorgeous-for-gecko-galz.html",null,1570024575],
["11392312","Carole J","https://cjcrafty.blogspot.com/2019/10/crafts-galore-encore-zetti-art.html",null,1570028112],
["11392337","My Other World","https://scrapsdamaryv.blogspot.com/2019/10/pennys-challenges-450.html",null,1570030796],
["11392341","Monica C.","https://www.sunshinecreativity.com/2019/10/cuppa-mouse.html",null,1570031561],
["11392359","Chriss R.","https://chrissandlou.blogspot.com/2019/10/halloween-clock.html",null,1570035126],
["11392403","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/10/i-love-you-to-moon-and-back.html",null,1570043923],
["11392527","Karen C","http://busyinspirations.blogspot.com/2019/10/still-hot.html",null,1570075867],
["11392551","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/10/share-your-smile.html",null,1570083066],
["11392569","Desire Fourie","https://desiref.blogspot.com/2019/10/many-more-design-team-project-october.html",null,1570085908],
["11392574","Linda Mc Enery","https://lindamscreations.blogspot.com/2019/10/imagine-that-creative-playground.html",null,1570088355],
["11392575","Larissa","https://car-d-elicious.blogspot.com/2019/10/gerda-steiner-designs-too-cute-to-spook.html",null,1570088385],
["11392576","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/10/rustic-souls-youtube-hop.html",null,1570088601],
["11392578","Larissa","https://car-d-elicious.blogspot.com/2019/10/la-pareja-creative-hallo-tag.html",null,1570088899],
["11392592","Kym","http://kyms-crafty-cards.blogspot.com/2019/10/happy-5th-anniversary-to-ching-chou.html",null,1570093701],
["11392597","Doreen","https://doreensdream.blogspot.com/2019/10/aud-sentiments-237.html",null,1570095609],
["11392608","Craftartista","https://craftartista.blogspot.com/2019/10/use-your-wings.html",null,1570099793],
["11392612","*Vicki*","https://stampedsmiles.com/2019/10/03/anything-goes-for-cute-card-thursday-7/",null,1570100391],
["11392614","corry","https://corryscreart.blogspot.com/2019/10/kerstkaart-blue.html",null,1570101027],
["11392619","Birgit","https://cardsrstillfun.blogspot.com/2019/10/christmas-greetings.html",null,1570102333],
["11392643","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/10/we-zijn-weer-met-een-nieuwe-wedstrijd.html",null,1570107494],
["11392710","Claudia","https://knutselmeisjes.blogspot.com/2019/10/hoera-jarig.html",null,1570120881],
["11392713","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/10/as-long-as-everything-aud-sentiments.html",null,1570123444],
["11392717","jenimc","https://jenicraftroom.blogspot.com/2019/10/wedding-couple.html",null,1570126119],
["11392719","Cards By MI","https://kompis-kort-by-mi.blogspot.com/2019/10/lets-celebrate-over-at-paper-shelter.html",null,1570127398],
["11392737","Tip Top","http://tiptoptoppers.blogspot.com/2019/10/sundae-in-autumn.html",null,1570129768],
["11392739","Suze","https://craftysuze.blogspot.com/2019/10/sing.html",null,1570130104],
["11392757","AJ","https://ajcreativeenergy.blogspot.com/2019/10/vampires-halloween.html",null,1570134060],
["11392773","Lou Sims","https://lulucardmaking.blogspot.com/2019/10/travellers-journal-using-tonic-studios.html",null,1570139174],
["11392776","Lola","https://littlecardmaker.blogspot.com/2019/09/knot-that-old-pretzel-tag.html",null,1570139982],
["11392834","Kym","http://kyms-crafty-cards.blogspot.com/2019/10/colour-crazy-challenge-blog-friday-4.html",null,1570168761],
["11392845","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/10/merit-is-jarig.html",null,1570172412],
["11392928","NanaConnie","https://mygrammysattic.blogspot.com/2019/10/gathering-nuts.html",null,1570195313],
["11392957","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/10/voor-merit.html",null,1570203261],
["11392983","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2019/10/holly-mouse.html",null,1570205998],
["11393041","Dori ","http://www.perfectlycreatedchaos.com/2019/10/watercolor-autumn-trees.html",null,1570219921],
["11393059","AJ","https://ajcreativeenergy.blogspot.com/2019/10/merry-christmoose.html",null,1570229781],
["11393089","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/10/gear-up-steampunk-birthday.html",null,1570234455],
["11393206","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/10/chibi-new-release-day-at-scrappers.html",null,1570273643],
["11393252","Sabina","https://artbysabina.blogspot.com/2019/10/lcc-152-colors-of-fall.html",null,1570280763],
["11393270","Sladjana Perisic","http://creativepixiedesigns.com/lawnfawnbutterflykisses/",null,1570283716],
["11393271","Cathy","https://kraftykoolkat.blogspot.com/2019/10/poppy-love.html",null,1570283960],
["11393301","Gale K","https://galesstampingcorner.blogspot.com/2019/10/child-of-halloween.html",null,1570289655],
["11393305","Sherry G","http://loosestitchesandunraveledthreads.blogspot.com/2019/09/ching-chou-kuik-5th-anniversary.html",null,1570289971],
["11393315","Sherry G","http://loosestitchesandunraveledthreads.blogspot.com/2019/09/ching-chou-kuik-challenge.html",null,1570290561],
["11393425","Larissa","https://car-d-elicious.blogspot.com/2019/10/dis-digi-designs-challenge-add-pumpkin.html",null,1570312094],
["11393439","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/10/flying-by-with-halloween-hi.html",null,1570318445],
["11393440","Gloria Shirr","https://purpleglocreations.blogspot.com/2019/10/birthday-card-for-male-using-ctmh.html",null,1570319340],
["11393443","Shylaa","https://adhiraacreations.blogspot.com/2019/10/just-for-you.html",null,1570320029],
["11393447","Donna R","https://indianainking.blogspot.com/2019/10/happy-birthday.html",null,1570321282],
["11393468","Angie's Creations","http://angiescreationsblog.blogspot.com/2019/10/a-few-cards-done-for-several-challenges.html#links",null,1570335262],
["11393512","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/10/het-is-jouw-verjaardag.html",null,1570347010],
["11393531","Jasmina","https://handmadebyjasmina.blogspot.com/2019/10/fb-papirckarice-40izziv-tag.html",null,1570353953],
["11393532","Ruth Lopez","https://www.myhobbymyart.com/2019/10/halloween-scratch-off-card.html",null,1570354006],
["11393752","Karen C","http://busyinspirations.blogspot.com/2019/10/fall-birthday.html",null,1570392062],
["11393761","AJ","https://ajcreativeenergy.blogspot.com/2019/10/chanel-shadow-box-card.html",null,1570394126],
["11393767","Leslie Turner","http://lovetoscrap2.com/2019/10/01/home-sweet-home-mini-album",null,1570397433],
["11393771","Leslie Turner","http://lovetoscrap2.com/2019/10/01/thinking-of-you-3",null,1570398538],
["11393774","Leslie Turner","http://lovetoscrap2.com/2019/10/01/merry-christmas-gift-box",null,1570399391],
["11393775","Leslie Turner","http://lovetoscrap2.com/2019/10/01/polkadot-flower-gift-bags",null,1570399623],
["11393777","Leslie Turner","http://lovetoscrap2.com/2019/10/01/tissue-box-holder",null,1570399875],
["11393778","Leslie Turner","http://lovetoscrap2.com/2019/10/01/best-day-ever",null,1570400002],
["11393825","Cass","https://casscreatingnow.blogspot.com/2019/10/a-bit-of-halloween.html",null,1570419059],
["11393906","Kleido","https://kleidosbastelstueble.wordpress.com/2019/10/07/lila-weihnachten/",null,1570446506],
["11393962","Karthikha","https://loveforkrafts.blogspot.com/2019/10/pregnancy-motivation-card.html",null,1570461326],
["11393988","monique","http://moniqueschattefor.blogspot.com/2019/10/winter-warm-up.html",null,1570468221],
["11394001","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/10/een-kerstkaart-met-op-de-achtergrond.html",null,1570471621],
["11394004","Sabina","https://artbysabina.blogspot.com/2019/10/little-monsters.html",null,1570472555],
["11394165","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/10/thank-you-card-using-ctmh-multi-square.html",null,1570511759],
["11394201","AuntySue","https://auntysuescraftcavern.blogspot.com/2019/10/colours-of-autumn-passion-for-promarkers.html",null,1570531597],
["11394215","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/10/path-of-positivity-new-challenge-have.html",null,1570536002],
["11394225","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/10/met-pensioen.html",null,1570538246],
["11394316","Dreja","https://drejasbastelwelt.blogspot.com/2019/10/tannenbaum-von-create-smile.html",null,1570550137],
["11394366","cheiro urgia","https://cheirourgia.blogspot.com/2019/09/vintage-autumn.html",null,0],
["11394367","cheiro urgia","https://cheirourgia.blogspot.com/2019/10/black-magic.html",null,1570565616],
["11394455","Barbara Bruder","http://artandsoulcreations.blogspot.com/2019/10/october-stamp-club-challenge-card.html",null,1570595366],
["11394501","Craftartista","https://craftartista.blogspot.com/2019/10/destination.html",null,1570607039],
["11394514","Shirley AC1","https://nannieflash.blogspot.com/2019/10/challenge-401-music-and-dance-paper.html",null,1570610756],
["11394519","Scatty Jan","https://scrappyscatty.blogspot.com/2019/10/may-all-your-dreams-come-true.html",null,1570611867],
["11394520","Teresa","http://redobsessioncards.blogspot.com/2019/10/magical-autumn.html?m=1",null,1570611930],
["11394561","Saphron","https://www.lemonbiscuit.blog/crafts/pennys-paper-crafty-challenge-451/",null,1570618998],
["11394588","Creative Em","https://www.creative-em.com/2019/10/hummer-in-flight.html",null,1570622983],
["11394616","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/10/nuovo-challenge-di-simply-magnolia.html",null,1570628076],
["11394618","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/10/nuovo-challenge-di-magnolia-forever.html",null,1570628367],
["11394636","Helen","https://helenscrafthaven.blogspot.com/2019/10/angel-cat.html",null,1570631331],
["11394665","CarolG NZ","https://creationsnz.blogspot.com/2019/10/tickle-tickle.html",null,1570637070],
["11394827","Steffi H.","https://www.flickr.com/photos/spinkymausi/48873312907/in/dateposted/",null,1570672193],
["11394846","Rosina","https://rosina-scrapcards.blogspot.com/2019/10/de-beste-wensen.html",null,0],
["11394881","Ans Gilbert","https://lovetocraftchallengeblog.blogspot.com/2019/10/ltccb-39-october-anything-goes.html",null,1570695884],
["11394889","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/10/boo-to-you.html",null,1570702070],
["11394909","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/10/een-kerstkaart-in-blauw-met-witte.html",null,1570712008],
["11394939","Leslie Turner","http://lovetoscrap2.com/2019/10/08/a-little-note-to-say",null,1570717677],
["11394940","Leslie Turner","http://lovetoscrap2.com/2019/10/09/gather-together-give-thanks",null,1570717721],
["11394957","Glittertastic","https://glittertastic.blogspot.com/2019/10/kenny-k-golf-boy.html",null,1570719512],
["11394973","Bisse","https://vasemmalkadella.blogspot.com/2019/10/olet-ajatuksissani.html",null,1570725385],
["11394988","Loopyloo","https://loopyloocards.com/2019/10/10/shades-of-brown/",null,1570729666],
["11395024","janja- finart","https://myfinart.blogspot.com/2019/10/tag.html",null,1570738242],
["11395027","Teresa","http://redobsessioncards.blogspot.com/2019/10/the-woodland-owl.html?m=1",null,1570739107],
["11395031","CarolG NZ","https://creationsnz.blogspot.com/2019/10/thanks-pink.html",null,1570740109],
["11395103","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/10/hugs-kisses.html",null,1570771350],
["11395126","jenimc","https://jenicraftroom.blogspot.com/2019/10/no-more-please.html",null,1570782864],
["11395180","basslady","https://bassladycreations.blogspot.com/2019/10/karte-celebrate-mit-marmor-look.html?m=0",null,1570796919],
["11395207","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/10/ik-was-een-winner-bij-artdiva-en-was.html",null,1570799404],
["11395252","Cinderella 1","https://cinderellasdreamcardsblog.blogspot.com/2019/10/always-believe.html",null,1570807835],
["11395284","Nicky","https://stiggyscrafts.blogspot.com/2019/10/a-friends-birthday.html",null,1570810582],
["11395355","Hazel","https://craftyhazelnut.blogspot.com/2019/10/craftyhazelnuts-patterned-paper-october.html",null,1570825830],
["11395367","Hazel","https://craftyhazelnut.blogspot.com/2019/10/chnc-challenge-458.html",null,1570826744],
["11395368","Teresa","http://redobsessioncards.blogspot.com/2019/10/blue-music.html?m=1",null,1570827127],
["11395377","ValeryAnne","https://itsanalienlife.blogspot.com/2019/10/botanical-garden.html",null,1570830118],
["11395425","Liliane Carvalho","http://scrapchosdalilica.blogspot.com/2019/10/embalagem-craft-customizada-com-tecnica.html",null,1570846850],
["11395451","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/10/feeling-sketchy-skrivnost-modrih-globin.html",null,1570860215],
["11395459","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/10/monochrome.html",null,1570867131],
["11395466","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/10/ghouls-night-out-concept-card.html",null,1570870386],
["11395471","Hazel","https://craftyhazelnut.blogspot.com/2019/10/chnc-challenge-459.html",null,1570871697],
["11395473","Zora","https://lofquisten.blogspot.com/2019/10/this-weeks-challenge-at-crafty-catz-is.html",null,1570872402],
["11395520","Dawn S","https://dawnscraftybits.blogspot.com/2019/10/all-things-halloween-at-ching-chou-kuik.html",null,1570884254],
["11395528","Karen C","http://busyinspirations.blogspot.com/2019/10/fall-elephant.html",null,1570886250],
["11395541","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/10/octobers-progressive-challenge-at.html",null,1570890023],
["11395555","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/10/journalist-in-spe-en-meer.html",null,1570892066],
["11395593","Dawn Frost","http://stamp-n-play.blogspot.com/2019/10/bugaboo-autumn-kidz-001.html",null,1570895751],
["11395731","Sue Kment","https://suesstampingstuff.blogspot.com/2019/10/my-scrap-chick-cauldron-box-card.html",null,1570936602],
["11395776","Teresa","https://redobsessioncards.blogspot.com/2019/10/christmas-unicorn.html?m=1",null,1570953524],
["11395787","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/10/hittin-boos-again.html",null,1570956468],
["11395814","Craftartista","https://craftartista.blogspot.com/2019/10/mandala-free-image-8.html",null,1570963506],
["11395835","Teresa","https://redobsessioncards.blogspot.com/2019/10/blooms-of-friendship.html?m=1",null,1570966964],
["11395920","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/10/92-jaar.html",null,1570981171],
["11396106","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/10/liefs.html",null,1571034352],
["11396132","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/10/des-photos-et-un-rappel-d-un-defi-en-cours.html",null,1571042847],
["11396133","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/10/fijne-verjaardag.html",null,1571043199],
["11396171","Debbie M","https://secretstamper.com/2019/10/harvest-hellos-all-occasion-card-for-make-my-monday/",null,1571055691],
["11396368","Karthikha","https://loveforkrafts.blogspot.com/2019/10/frienship-is-like-rainbow.html",null,0],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}