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("14Oct2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRvY3QyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("16 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Oct2018");
blenza_linkies("thumb","lozzy","14Oct2018","960511161",3,
[
// MTRvY3QyMDE4
["11265287","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/10/een-echte-uitdaging.html",null,1539587734],
["11265304","Anna","https://nonsolocard.blogspot.com/2018/10/scatoline-autunnali.html",null,1539590424],
["11265314","Rutscht","https://rutscht.blogspot.com/2018/10/ghosts.html",null,1539591365],
["11265360","Carole Jones","https://cjcrafty.blogspot.com/2018/10/vera-lane-studio-collage-scraps.html",null,1539598069],
["11265408","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/10/sparkles-monthly-challenge.html",null,1539604577],
["11265409","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/10/creations-in-pink-ch-3.html",null,1539604603],
["11265431","Jackie T","http://tinyrosecr.blogspot.com/2018/10/nuthatch-christmas-card.html",null,1539606768],
["11265435","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2018/10/15/digistamps4joy-october-challenge-153-option-use-our-free-digistamp/",null,1539607715],
["11265508","Pam Sebring","http://psebring.blogspot.com/2018/10/fancy-fold-coral-butterfly.html",null,1539618134],
["11265516","Pam Sebring","http://psebring.blogspot.com/2018/10/just-for-you-gold.html",null,1539618884],
["11265525","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/10/sparkles-monthly-challenges-ch109-dt.html",null,1539620103],
["11265530","Birgit","https://cardsrfun.blogspot.com/2018/10/congratulations.html",null,1539621322],
["11265546","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/10/happy-birthday.html",null,1539624876],
["11265677","Craftartista","https://craftartista.blogspot.com/2018/10/queen-nefertiti.html",null,1539646903],
["11265702","Shamita","https://spiralcreativity.blogspot.com/2018/10/ruby-oo-la-la.html",null,1539652470],
["11265753","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/10/congratulations.html",null,1539671112],
["11265754","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2018/10/the-creative-crafters-challenge-9.html",null,1539671491],
["11265766","Bharati Nayudu","https://bharatinayudu.com/2018/10/14/1348/",null,1539675639],
["11265774","Michelle Lancaster","https://laughingducks2012.blogspot.com/2018/10/santas-letter.html",null,1539677025],
["11265782","Elena V","https://0-nubesdeazucar-0.blogspot.com/2018/10/wish-big.html",null,1539678373],
["11265834","Pippa","https://pippapblog.wordpress.com/2018/10/15/shades-of-purple-on-the-path-of-positivity/",null,1539686426],
["11265842","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/10/new-atg-challenge-ttcrd-sponsor-oddball.html",null,1539687328],
["11265874","Rachael E","https://allthingspurpleandsparkly.blogspot.com/2018/10/strawberry-kisses.html",null,1539694137],
["11265900","jenimc","https://jenicraftroom.blogspot.com/2018/10/christmas-rose-wreath.html",null,1539696256],
["11265918","monique","https://moniqueschattefor.blogspot.com/2018/10/proost.html",null,1539698969],
["11265922","Craftartista","https://craftartista.blogspot.com/2018/10/cool.html",null,1539699730],
["11265933","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/10/guus-is-geboren.html",null,1539702446],
["11265945","Crea Valerie","https://creavalerie.blogspot.com/2018/10/kersthond.html",null,1539705417],
["11265968","cheiro urgia","https://cheirourgia.blogspot.com/2018/10/red-white.html",null,1539710556],
["11265977","Carole J","https://cjcrafty.blogspot.com/2018/10/vera-lane-studio-monster-mash-atcs.html",null,1539713037],
["11265987","Larissa","https://car-d-elicious.blogspot.com/2018/10/a-merry-monday-on-tuesday.html",null,1539715713],
["11265993","Rijacki: Thoughts","https://rijacki.blogspot.com/2018/10/thoughts.html",null,1539716370],
["11265994","AJ","https://ajcreativeenergy.blogspot.com/2018/10/misteri-mermaid.html",null,1539716371],
["11266027","Glittertastic","https://glittertastic.blogspot.com/2018/10/gingerbread-couple.html",null,1539721760],
["11266078","Marie Flayer","https://njstampingqueen.blogspot.com/2018/10/mercury-glass-wedding-cards-with-case.html",null,1539736074],
["11266090","Pam Sebring","http://psebring.blogspot.com/2018/10/piano-man.html",null,1539739184],
["11266132","Marie-louise","http://mirrescrap.blogspot.com/2018/10/grrrattis.html",null,1539753010],
["11266161","Eemeli","http://eemelike.blogspot.com/2018/10/vauvansukkaruusut.html",null,1539760507],
["11266170","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/10/per-il-compleanno-di-un-giovane-cestista.html",null,1539762613],
["11266172","Craftartista","https://craftartista.blogspot.com/2018/10/a-new-day.html",null,1539763093],
["11266187","Jane Willis","https://onionsandpaper.blogspot.com/2018/10/stencils-or-masks-at-back-to-basics.html",null,1539764948],
["11266207","tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/10/happy-birthday-to-my-sis.html",null,1539771809],
["11266220","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/10/friends-forever.html",null,1539773692],
["11266314","Claudia Martins","https://1pandaideiascriativas.blogspot.com/2018/10/projeto-dt-rabisco-challenge.html",null,1539782000],
["11266356","Ellie","https://www.ellibellescorner.com/2018/10/ellibelles-crafty-wednesday-midmonth.html",null,1539786564],
["11266387","Mindy Baxter","https://www.mycreativescoop.com/simon-says-stamp-animal-antics-challenge/",null,1539790300],
["11266456","Craftartista","https://craftartista.blogspot.com/2018/10/give-me-star.html",null,1539801298],
["11266462","ValeryAnne","https://itsanalienlife.blogspot.com/2018/10/blossoms.html",null,1539802755],
["11266494","Vannessa","https://saffiresstamping.blogspot.com/2018/10/the-paper-shelter-challenge-358-digital.html",null,1539809644],
["11266597","Nish","http://creationspersonalised.blogspot.com/2018/10/blog-post_16.html",null,1539835504],
["11266631","Maxine D","https://kiwimeskreations.blogspot.com/2018/10/purple-and-brusho-encouragement.html",null,1539849885],
["11266656","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/10/kerst-week-42.html",null,1539863697],
["11266709","Wies","https://wiescreablog.blogspot.com/2018/10/kerstkaarten-2018-40-twist-pop-up-kaart.html",null,1539880291],
["11266730","Nicola Gold","https://amethystlilydesigns.blogspot.com/2018/10/mason-jar-dragonflies-at-ching-chou-kuik.html",null,1539885588],
["11266740","Sheryl Hare","https://marchharecards.blogspot.com/2018/10/birthday-challenge-at-craft.html",null,1539886519],
["11266783","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2018/10/time-to-post.html",null,1539895681],
["11266801","Julie O","http://muddypawsinkyfingers.blogspot.com/2018/10/ive-got-your-back-for-sasayaki-glitter.html",null,1539901048],
["11266821","Pam Sebring","http://psebring.blogspot.com/2018/10/welcome-fall.html",null,1539912446],
["11266868","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2018/10/floral-birthday.html",null,1539928629],
["11266893","Larissa","https://car-d-elicious.blogspot.com/2018/10/gerda-steiner-designs-hello-friend.html",null,1539935283],
["11266917","Katrine","https://katrinehspapirverden.blogspot.com/",null,1539940273],
["11266921","Craftartista","https://craftartista.blogspot.com/2018/10/happy-birthday.html",null,1539940654],
["11266939","Michelle Lancaster","https://laughingducks2012.blogspot.com/2018/10/elegant-christmas-card-using-some.html",null,1539946550],
["11266943","Laine","http://abitmoretimetocraft.blogspot.com/2018/10/a-bit-more-time-to-craft-challenge-78.html",null,1539947658],
["11266951","Hazel","https://craftyhazelnut.blogspot.com/2018/10/halloween-birthday.html",null,1539948262],
["11266959","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/10/art-journal-you-really-measure-up.html",null,1539949045],
["11266985","Hazel","https://craftyhazelnut.blogspot.com/2018/10/second-halloween-birthday-card.html",null,1539953639],
["11266997","Kym","https://kyms-crafty-cards.blogspot.com/2018/10/ching-chou-kuiks-digital-stamps_19.html",null,1539956367],
["11267011","Pat K","https://patkscards.blogspot.com/2018/10/wings-at-fussy-and-fancyfriday.html",null,1539957079],
["11267014","Kym","http://kyms-crafty-cards.blogspot.com/2018/10/colour-crazy-challenge-blog-friday-19.html",null,1539957083],
["11267145","niki1","https://www.splitcoaststampers.com/gallery/photo/2896205?&cat=500&ppuser=205884",null,1539979969],
["11267146","niki1","https://www.splitcoaststampers.com/gallery/photo/2896212?&cat=500&ppuser=205884",null,1539980003],
["11267174","Cathymac","http://goldeninkspirations.blogspot.com/2018/10/looking-back-at-odbd-october-2018.html",null,1539988114],
["11267263","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/10/julia-spiri-new-realise.html",null,1540018632],
["11267302","jackie cornfield","http://getthejclook.blogspot.com/2018/10/shaped-card.html",null,1540030016],
["11267317","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/10/little-birdie-crafts-birthday-blossoms.html",null,1540033551],
["11267326","Craftartista","https://craftartista.blogspot.com/2018/10/autumn-days.html",null,1540035294],
["11267395","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/10/halloween-coffee-tags.html",null,1540039554],
["11267459","nnalorac","https://somethinggonemissing.blogspot.com/2018/10/dis-digi-designs-challenge-blog-cute-or.html",null,1540045151],
["11267537","Chrissyxx","https://trulychrissyxx.blogspot.com/2018/10/bugkidzaisy.html",null,1540053454],
["11267541","AJ","https://ajcreativeenergy.blogspot.com/2018/10/christmas-couple.html",null,1540054531],
["11267549","america","https://cardsbyamerica.blogspot.com/2018/10/feel-bteer-soon-dru-dt-card.html",null,1540056277],
["11267575","america","https://cardsbyamerica.blogspot.com/2018/10/celebrate-card-with-ribbons-flowers.html",null,1540059658],
["11267602","Nicky","https://stiggyscrafts.blogspot.com/2018/10/spa-voucher.html",null,1540062942],
["11267680","Nish creations","http://creationspersonalised.blogspot.com/2018/10/blog-post_20.html",null,0],
["11267686","Nish creations","http://creationspersonalised.blogspot.com/2018/10/bltml",null,0],
["11267687","Nish creations","http://creationspersonalised.blogspot.com/2018/10/snowy-love.hltml",null,0],
["11267688","Nish creations","http://creationspersonalised.blogspot.com/2018/10/snowy-love.html",null,1540075964],
["11267814","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/10/6-jaar-getrouwd.html",null,1540107566],
["11267839","Hazel","https://craftyhazelnut.blogspot.com/2018/10/i-was-commissioned-to-make-card-for.html",null,1540111342],
["11267866","Craftartista","https://craftartista.blogspot.com/2018/10/be-sunshine.html",null,1540118796],
["11267949","Hazel","https://craftyhazelnut.blogspot.com/2018/10/the-london-palladium.html",null,1540130364],
["11267970","Priya Mishra","https://quillingbypriya.blogspot.com/2018/10/mixed-media-panel-for-expressions-craft.html",null,1540133598],
["11268077","Monika Reeck","https://creativewithmonika.blogspot.com/2018/10/atsm-challenge-314-cas-card-two-cups-of.html",null,1540154594],
["11268081","Hazel","https://craftyhazelnut.blogspot.com/2018/10/its-most-wonderful-time-of-year.html",null,1540156772],
["11268084","Hazel","https://craftyhazelnut.blogspot.com/2018/10/wishing-you-very-merry-christmas.html",null,1540157826],
["11268086","Helene ","https://lescreationsdhelene.blogspot.com/2018/10/une-carte_21.html",null,1540158261],
["11268088","Karthikha","https://loveforkrafts.blogspot.com/2018/10/inside-tunnel-card-bhuvis-first-card.html",null,1540158378],
["11268090","Hazel","https://craftyhazelnut.blogspot.com/2018/10/christmas-blessings.html",null,1540158536],
["11268165","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/10/time-for-tea.html",null,1540191800],
["11268190","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/10/due-card-un-po-diverse.html",null,1540194715],
["11268201","monique","https://moniqueschattefor.blogspot.com/2018/10/halloween.html",null,1540197065],
["11268209","shellshearer","https://shellshearer.blogspot.com/2018/10/one-of-kind.html",null,1540198605],
["11268213","Rosina","https://rosina-scrapcards.blogspot.com/2018/10/van-harrte-gefeliciteerd.html",null,1540198798],
["11268217","Scatty Jan","https://scrappyscatty.blogspot.com/2018/10/do-you-wanna-build-snowman-pink-gem-way.html",null,1540199031],
["11268224","Craftartista","https://craftartista.blogspot.com/2018/10/zen-owl.html",null,1540199361],
["11268252","Anna","https://nonsolocard.blogspot.com/2018/10/mini-christmas-tag.html",null,1540209543],
["11268253","Lia","https://liadesignandso.blogspot.com/2018/10/kleine-vogelverschrikker.html",null,1540209555],
["11268258","Meighan Wheller","https://meighanwheller.blogspot.com/2018/10/bb-in-spotlight.html",null,1540209909],
["11268296","Hazel","https://craftyhazelnut.blogspot.com/2018/10/thinking-of-you-at-christmas.html",null,1540212138],
["11268330","Desire Fourie","https://desiref.blogspot.com/2018/10/love-your-life-digistamps4joy-october.html",null,1540217046],
["11268344","tina föcking","https://paperplotterlottas-craftchaos.blogspot.com/2018/10/oddball-new-release-witch-legs-and-broom.html",null,1540218392],
["11268410","Wies","https://wiescreablog.blogspot.com/2018/10/kat.html",null,1540231658],
["11268414","Michelle Lancaster","https://laughingducks2012.blogspot.com/2018/10/jars-of-treats.html",null,1540231944],
["11268434","Donna R","https://indianainking.blogspot.com/2018/10/big-birthday-wishes.html",null,1540236688],
["11268520","Junebug Creations","https://junebugcreations.wordpress.com/2018/10/22/su-holiday-card-swap-4",null,1540252067],
["11268571","Maxine D","https://kiwimeskreations.blogspot.com/2018/10/pencils-parrot-and-sequins.html",null,1540271317],
["11268590","Craftartista","https://craftartista.blogspot.com/2018/10/proud-to-be-greek.html",null,1540280862],
["11268597","Linda Mc Enery","https://lindamscreations.blogspot.com/2018/10/passion-for-promarkers-challenge-467.html",null,1540281743],
["11268601","tinyworks","https://tinyworks81.blogspot.com/2018/10/card-happy-birthday-dt-digi-choosday.html",null,1540282852],
["11268622","Monika Reeck","https://creativewithmonika.blogspot.com/2018/10/sunday-stamps-190-manly-birthday-card.html",null,1540287308],
["11268626","corry","https://corryscreart.blogspot.com/",null,1540288675],
["11268655","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/10/bone-chilling.html",null,1540297674],
["11268661","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2018/10/nan-birthday-exploding-box.html",null,1540298466],
["11268662","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2018/10/train-christmas-card.html",null,1540298523],
["11268780","Granne","https://aavamaki.blogspot.com/2018/10/with-love-butterfly-hair.html",null,1540313341],
["11268991","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/10/proost.html",null,1540368995],
["11269006","Hazel","https://craftyhazelnut.blogspot.com/2018/10/a-very-merry-holly-jolly-christmas.html",null,1540371979],
["11269012","Craftartista","https://craftartista.blogspot.com/2018/10/learn-to-rest.html",null,1540374575],
["11269122","Teresa","http://redobsessioncards.blogspot.com/2018/10/autumn-trees.html",null,1540386112],
["11269152","Altered Fairy Tales","https://alteredfairytales.blogspot.com/2018/10/design-team-project-share-for-crafty.html",null,1540391016],
["11269206","elizabeth h","http://warmharted.blogspot.com/2018/10/autumn-days.html",null,1540398336],
["11269249","Teresa","http://redobsessioncards.blogspot.com/2018/10/boo.html",null,1540403707],
["11269386","Rosina","http://rosina-scrapcards.blogspot.com/2018/10/fijne-kerst.html",null,1540450867],
["11269396","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/10/la-cartolina-che-ha-dato-origine-alla.html",null,1540455341],
["11269423","Teresa","http://redobsessioncards.blogspot.com/2018/10/the-birthday-cake.html",null,1540459871],
["11269429","Craftartista","https://craftartista.blogspot.com/2018/10/wow.html",null,1540462919],
["11269464","Teresa","http://redobsessioncards.blogspot.com/2018/10/pretty-pink-butterflies.html",null,1540478500],
["11269483","niki1","https://www.splitcoaststampers.com/gallery/photo/2897136?&cat=500&ppuser=205884",null,1540482587],
["11269484","Chris","https://andheresoneimadeearlier.blogspot.com/2018/10/oldie-but-goodie-at-catch-bug.html",null,1540482740],
["11269485","Sheryl Hare","https://marchharecards.blogspot.com/2018/10/monochrome-at-craft.html",null,1540484245],
["11269553","Steffi H.","https://www.flickr.com/photos/spinkymausi/44832232054/in/dateposted/",null,1540504761],
["11269638","Lia","https://liadesignandso.blogspot.com/2018/10/hang-in-there.html",null,1540537358],
["11269645","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/10/la-card-per-katya.html",null,1540539581],
["11269659","Lou","https://jemlouproductions.blogspot.com/2018/10/happy-purr-day-colour-crazy-challenge.html",null,1540544190],
["11269696","Teresa","http://redobsessioncards.blogspot.com/2018/10/red-christmas-flowers.html",null,1540552557],
["11269755","Kym","http://kyms-crafty-cards.blogspot.com/2018/10/happy-halloween.html",null,1540562227],
["11269803","Julie Reed","https://pumpkinbellycards.blogspot.com/2018/10/thank-you.html",null,1540569535],
["11269920","CG","https://cg-says.blogspot.com/2018/10/rainbow-neighborhood-thankful-at.html",null,1540593953],
["11270002","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/10/hartelijk-gefeliciteerd.html",null,1540631995],
["11270014","Aimeslee","https://paper-paisleys.blogspot.com/2018/10/celebrating-poe.html",null,1540634370],
["11270035","Wendy Batchen","https://wenscreations.blogspot.com/2018/10/scrappers-delights-new-release-27th.html",null,1540640496],
["11270059","Hazel","https://craftyhazelnut.blogspot.com/2018/10/chnc-challenge-409.html",null,1540646913],
["11270145","Željka","https://creativemomanddaughter.blogspot.com/2018/10/anything-goes-crafting-challenge-229-at.html",null,1540660040],
["11270151","Alysha","http://simply-angelic-crafts.blogspot.com/2018/10/a-little-wish-colourific-floral-stamps.html",null,1540661622],
["11270162","marleen v wetten rongen","http://marleenvanwetten.blogspot.com/2018/10/the-halloween-witch.html",null,1540663057],
["11270524","Craftartista","https://craftartista.blogspot.com/2018/10/you-are-amazing.html",null,1540750113],
["11270546","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2018/10/dnevnik-po-svetu-in-doma.html",null,1540757951],
["11270652","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/10/happy-birthday_29.html",null,1540797695],
["11270682","Greeshma","https://gpexplosionbox.blogspot.com/2018/10/5-layered-anniversary-explosion-box.html",null,1540806062],
["11270688","Greeshma","https://gpexplosionbox.blogspot.com/2018/10/mini-album-with-suitcase-and-drawer.html",null,1540807906],
["11270711","basslady","https://bassladycreations.blogspot.com/2018/10/spruch-karte-mit-stencil-technik.html?m=0",null,1540810038],
["11270738","Victoria R","http://victorias-crafting-creations.blogspot.com/2018/10/sd-twins-unicorn-pegasus-shaker-cards.html?m=1",null,1540815472],
["11270752","Carla","https://carla-writes.blogspot.com/2018/10/party-time-birthday-card.html",null,1540817676],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}