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("31May2018a", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzFtYXkyMDE4YQ==", "1");
blenza_setcolor("default");
blenza_setExpires("2 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("31May2018a");
blenza_linkies("thumb","lozzy","31May2018a","80733084",3,
[
// MzFtYXkyMDE4YQ==
["11216167","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/06/inizia-oggi-una-nuova-avventura.html",null,1527841254],
["11216173","Hazel","http://craftyhazelnut.blogspot.com/2018/06/craftyhazelnuts-patterned-paper-june.html",null,1527842684],
["11216178","Nicolette","https://nicoletteskaarten.blogspot.com/2018/06/voor-jeanet.html",null,1527843491],
["11216184","Desire Fourie","http://desiref.blogspot.com/2018/06/and-many-more-digistamps4joy-june-2018.html",null,1527845910],
["11216199","Jackie T","https://tinyrosecr.blogspot.com/2018/06/crafts-galore-encore-june-challenge.html",null,1527848058],
["11216210","Desire Fourie","http://desiref.blogspot.com/2018/06/you-are-awesome-color-it-creat-it-show.html",null,1527849383],
["11216227","tinyworks","https://tinyworks81.blogspot.com/2018/06/card-violet-dt-simply-magnolia.html",null,1527852549],
["11216273","Dreja","https://drejasbastelwelt.blogspot.com/2018/06/44sketa-hz-202-sonne-hz-63-af.html",null,1527858765],
["11216276","cheiro urgia","https://cheirourgia.blogspot.com/2018/06/baby-blue.html",null,1527859223],
["11216300","sue","https://sue-hickey.blogspot.com/2018/06/may-new-release.html",null,0],
["11216336","Rocky","http://rockycraft.blogspot.com/2018/06/powertex-dark-materials.html",null,1527865167],
["11216379","Donna Barrow","http://www.dbscraftpassion.com/2018/06/a-simple-hello.html?m=1",null,1527872119],
["11216403","Cristina","http://rutscht.blogspot.com/2018/06/happy-birthday.html",null,1527876878],
["11216406","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/06/memories-last-forever.html",null,1527876937],
["11216581","paperplotterlotta","https://paperplotterlottas-craftchaos.blogspot.com/2018/06/all-dressed-up-fb-challenge-inspiration.html",null,1527927368],
["11216604","Andree","http://acecardsandree.blogspot.com/2018/06/crafts-galore-encore-june-2018.html",null,1527933843],
["11216685","Claudia","http://knutselmeisjes.blogspot.com/2018/06/10-vingertjes-10-teentjes.html",null,1527945302],
["11216695","Gale K","http://galesstampingcorner.blogspot.com/2018/06/intense-red.html",null,1527946696],
["11216735","Mary Marsh","https://thecharmedlife-maryr917.blogspot.com/2018/06/celebrate-with-breakfast-in-bed.html",null,1527951605],
["11216757","Hazel","http://craftyhazelnut.blogspot.com/2018/06/chnc-challenge-388.html",null,1527956273],
["11216771","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/06/demention-forth-lady.html",null,1527959936],
["11216780","Debra","https://debs-eternity-cards.blogspot.com/2018/06/super-hero-dad-25-off.html",null,1527964781],
["11216806","Judy Mckay","http://insearchofmycreativeside.blogspot.com/2018/06/canvas-collage.html",null,1527970909],
["11216809","Paperesse","http://www.paperesse.com/2018/06/beach-kitten-birthday-card.html",null,1527971203],
["11216825","Hazel","http://craftyhazelnut.blogspot.com/2018/06/male-birthday.html",null,1527977663],
["11216836","Hazel","http://craftyhazelnut.blogspot.com/2018/06/happy-birthday-to-special-sister.html",null,1527981212],
["11216844","Hazel","http://craftyhazelnut.blogspot.com/2018/06/ruby-wedding-anniversary.html",null,1527982831],
["11216857","Judy Mckay","http://insearchofmycreativeside.blogspot.com/2018/06/life-is-not-matter-of.html",null,1527988882],
["11216866","Pam Sebring","http://psebring.blogspot.com/2018/06/pink-birthday.html",null,1527992864],
["11216913","Judy Mckay","http://insearchofmycreativeside.blogspot.com/2018/06/the-best-journeys.html",null,1528005516],
["11216929","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2018/06/traditional-girl.html",null,1528008934],
["11216937","Terry","https://cardscreativity.blogspot.com/2018/06/we-love-to-create-challenge-9-anything.html",null,1528011390],
["11216943","Dreja","https://drejasbastelwelt.blogspot.com/2018/06/gute-besserung-kaktus.html",null,1528011900],
["11216944","Anna","http://nonsolocard.blogspot.com/2018/06/nuova-avventura-paper-nest-dolls.html",null,1528012618],
["11216979","Hazel","http://craftyhazelnut.blogspot.com/2018/06/in-garden.html",null,1528023956],
["11216986","Crealientje","https://isocrealientje.blogspot.com/2018/06/maritiem-borduurkaartje.html",null,1528025225],
["11216988","Helen","http://helenscrafthaven.blogspot.com/2018/06/pile-it-on-challenge-holidays.html",null,1528025812],
["11217007","Hazel","http://craftyhazelnut.blogspot.com/2018/06/glitz-and-glamour.html",null,1528028817],
["11217018","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/06/house-mouse-tag.html?m=0",null,1528029549],
["11217044","Sheryl Hare","https://marchharecards.blogspot.com/2018/06/buttons-and-bows.html",null,1528032706],
["11217047","Jane Willis","http://onionsandpaper.blogspot.com/2018/06/shabby-chic-shoes.html",null,1528033132],
["11217065","Nicolette","https://nicoletteskaarten.blogspot.com/2018/06/beach-mail.html",null,1528035460],
["11217077","Zoe Sanderson","https://zoechaos.blogspot.com/2018/06/black-and-blue-with-notes-of-white-and.html",null,1528036634],
["11217101","elizabeth h","http://warmharted.blogspot.com/2018/06/tiger-lilies-in-bloom.html",null,1528040806],
["11217113","Marciava","https://theuniquescrapper.blogspot.com/2018/03/birthday-card-fun.html",null,0],
["11217115","Marciava","https://theuniquescrapper.blogspot.com/2018/06/getting-started-early.html",null,1528043544],
["11217169","elizabeth h","http://warmharted.blogspot.com/2018/06/celebrate.html",null,1528055010],
["11217190","Hazel","http://craftyhazelnut.blogspot.com/2018/06/happy-birthday-deer-daughter.html",null,1528060477],
["11217210","Ginny B","http://homespuncards.blogspot.com/2018/06/military-card-2.html",null,1528065664],
["11217214","Hazel","http://craftyhazelnut.blogspot.com/2018/06/lazy-summer-birthday.html",null,1528066674],
["11217277","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/06/happy-birthday.html",null,1528093552],
["11217289","Lilian B","http://lillyb46.blogspot.com/2018/06/monday.html",null,1528096641],
["11217293","Angela","http://mijnhobbyhonk.blogspot.com/2018/06/speciaal-voor-jou.html",null,1528097447],
["11217296","Tip Top","http://tiptoptoppers.blogspot.com/2018/06/daring-cardmakers-challenge-june.html",null,1528098068],
["11217304","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/06/una-wreat-building-stampig-card.html",null,1528102059],
["11217317","Hazel","http://craftyhazelnut.blogspot.com/2018/06/seaside-birthday.html",null,1528105676],
["11217329","Monica","http://handmadecardswithlove.blogspot.com/2018/06/hello.html",null,1528108745],
["11217337","Sharon Hudson","https://craftyhugs.blogspot.com/2018/06/pop-up-box-card.html?m=1",null,1528109969],
["11217364","Larissa","https://car-d-elicious.blogspot.com/2018/06/dis-digi-stamps-ahoy-matey.html",null,1528114634],
["11217388","Cass","https://casscreatingnow.blogspot.com/2018/06/the-crafters-cafe-challenge-197-tic-tac.html",null,1528116857],
["11217411","Donna Mundinger","https://donnamundinger-popsicletoes.blogspot.com/2018/06/another-joyous-occasion-for-aurora-wings.html",null,1528119342],
["11217428","Mindy Baxter","https://www.mycreativescoop.com/fishing-scene-copic-marker-color-combo/",null,1528120762],
["11217446","Hazel","http://craftyhazelnut.blogspot.com/2018/06/christmas-angel.html",null,1528123064],
["11217470","Granne","http://aavamaki.blogspot.com/2018/06/midsummer-dreams.html",null,1528126731],
["11217479","jenimc","http://jenicraftroom.blogspot.com/2018/06/santa.html",null,1528129232],
["11217482","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/06/barrow-of-presents.html",null,1528130424],
["11217495","sue","https://sue-hickey.blogspot.com/2018/06/whoopsi-daisy-coloured-by-hand.html",null,1528132614],
["11217500","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/06/een-feest-van-lichtjes-warmte-en.html",null,1528134124],
["11217513","Hazel","https://craftyhazelnut.blogspot.com/2018/06/wishing-you-happy-birthday.html",null,1528137754],
["11217522","Lizzie","https://lizziescraftingretreat.blogspot.com/2018/06/hearts-all-over-baby.html",null,1528139041],
["11217528","Laine","https://dreamlaine.blogspot.com/2018/06/a-joyous-occasion.html",null,1528139247],
["11217566","Hazel","http://craftyhazelnut.blogspot.com/2018/06/a-simple-card-made-with-kanban-supplies.html",null,1528144792],
["11217586","Hazel","http://craftyhazelnut.blogspot.com/2018/06/have-fantastic-birthday.html",null,1528147013],
["11217594","America","https://cardsbyamerica.blogspot.com/2018/05/a-soldiers-tribute.html",null,1528148508],
["11217600","Hazel","http://craftyhazelnut.blogspot.com/2018/06/for-sister.html",null,1528152506],
["11217639","Craftartista","https://craftartista.blogspot.com/2018/06/seagulls.html",null,1528165841],
["11217641","Pam Sebring","http://psebring.blogspot.com/2018/06/sunflower.html",null,1528167237],
["11217643","Angies Creations","http://angiescreationsblog.blogspot.com/2018/06/another-card-done.html#links",null,1528167672],
["11217703","Maya","https://mayas-hobbyblogg.blogspot.com/2018/06/dapbaptism.html",null,1528182714],
["11217712","Marja","http://marjaskaarten.blogspot.com/2018/06/criss-cross-kaart.html",null,1528186116],
["11217713","Elena","https://creativele.blogspot.com/2018/06/strass-andor-pearl-at-crafty-sentiments.html",null,1528186285],
["11217717","CarolG","https://creationsnz.blogspot.com/2018/06/wind-in-my-hair.html",null,1528187384],
["11217719","paperplotterlotta","https://paperplotterlottas-craftchaos.blogspot.com/2018/06/all-dressed-up-fb-challenge-reminder.html",null,1528188176],
["11217722","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/06/guest-book.html",null,1528188564],
["11217726","Kym","https://kyms-crafty-cards.blogspot.com/2018/06/lemon-shortbread-challenge-tuesday-5.html",null,1528188917],
["11217734","Hazel","http://craftyhazelnut.blogspot.com/2018/06/best-wishes.html",null,1528191205],
["11217753","Lisa Bird","https://craftycard-designs.co.uk/sunflower-song/",null,1528196532],
["11217759","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/06/its-challenge-day-at-through-craft-room.html?m=0",null,1528197743],
["11217809","Judy V","http://jvzcreations.blogspot.com/2018/06/gdt-at-digi-doodle-studios.html",null,1528203297],
["11217840","Marja","http://marjaskaarten.blogspot.com/2018/06/princces-mask.html",null,1528207076],
["11217869","Create.365~Kathy K","http://create365coach.blogspot.com/2018/06/wish-big.html",null,1528210035],
["11217871","MARLENE","https://cardsmadebymarlene.blogspot.com/2018/06/phone-case-inspiration-at-incy-wincy.html",null,1528210567],
["11217888","Hazel","http://craftyhazelnut.blogspot.com/2018/06/pink-and-green-birthday.html",null,1528214090],
["11217910","JEAN","http://jeancrosby.blogspot.com/2018/06/no-1-teacher.html",null,1528218413],
["11217915","JEAN","http://jeancrosby.blogspot.com/2018/06/serenity.html",null,1528219752],
["11217919","Hazel","http://craftyhazelnut.blogspot.com/2018/06/for-teacher.html",null,1528221377],
["11217927","Laine","https://dreamlaine.blogspot.com/2018/06/ice-cream-break.html",null,1528222413],
["11217931","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/06/wedding-table-number.html",null,1528223109],
["11217946","Jootje","http://jootjesscrapcards.blogspot.com/2018/06/shine-light.html",null,1528226202],
["11217991","Hazel","http://craftyhazelnut.blogspot.com/2018/06/peace-love-and-joy.html",null,1528230415],
["11218000","Bridie","http://bgpaynecrafts.blogspot.com/2018/06/polkadoodles-libby-cardmaking-project.html",null,1528231627],
["11218086","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/06/masculine.html",null,1528251554],
["11218107","Pam Sebring","http://psebring.blogspot.com/2018/06/blessings.html",null,1528257722],
["11218233","Nicolette","https://nicoletteskaarten.blogspot.com/2018/06/bruidspaar-van-harte.html",null,1528282245],
["11218251","Hazel","http://craftyhazelnut.blogspot.com/2018/06/simply-roses.html",null,1528285834],
["11218297","Hazel","http://craftyhazelnut.blogspot.com/2018/06/rose-with-lace.html",null,1528290949],
["11218323","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/06/peter-rabbit-paper-clips-for-my-junk.html?m=0",null,1528293854],
["11218471","Hazel","http://craftyhazelnut.blogspot.com/2018/06/hope-you-have-purrfect-birthday.html",null,1528303852],
["11218484","Hazel","http://craftyhazelnut.blogspot.com/2018/06/this-is-simple-card-using-piece-of.html",null,1528306393],
["11218498","Michelle","https://michelledees.blogspot.com/2018/06/games.html",null,1528308672],
["11218523","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/06/box-for-wedding-cards.html",null,1528313546],
["11218562","Pippa","https://pippapblog.wordpress.com/2018/06/04/the-neutral-path/",null,1528318206],
["11218589","Hazel","http://craftyhazelnut.blogspot.com/2018/06/too-good-to-waste.html",null,1528324151],
["11218591","Hazel","http://craftyhazelnut.blogspot.com/2018/06/another-card-with-upcycled-bits.html",null,1528325345],
["11218597","Rijacki: Mermaid Kelp","https://rijacki.blogspot.com/2018/06/mermaid-kelp.html",null,1528328546],
["11218600","Craftartista","https://craftartista.blogspot.com/2018/06/bride-and-groom.html",null,1528330054],
["11218617","Dawn Frost","http://stamp-n-play.blogspot.com/2018/06/bugaboo-kidz-jack-birthday-balloons.html",null,0],
["11218618","Dawn Frost","http://stamp-n-play.blogspot.com/2018/06/bugaboo-fashion-girlz-001.html",null,1528339853],
["11218623","elizabeth h","http://warmharted.blogspot.com/2018/06/tea-party-favors.html",null,1528344934],
["11218653","Hazel","http://craftyhazelnut.blogspot.com/2018/06/another-hot-pink-and-black-card.html",null,1528357470],
["11218659","Hazel","http://craftyhazelnut.blogspot.com/2018/06/lilac-birthday.html",null,1528359553],
["11218665","Birgit","https://cardsrfun.blogspot.com/2018/06/summertime.html",null,1528361553],
["11218668","Hazel","http://craftyhazelnut.blogspot.com/2018/06/birthday-butterfly.html",null,1528361822],
["11218679","cheiro urgia","https://cheirourgia.blogspot.com/2018/06/christmas-in-turquoise.html",null,1528369001],
["11218681","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/06/say-it-with-flowers.html",null,1528371032],
["11218685","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/06/japanese-girl.html",null,1528371255],
["11218734","Craftartista","https://craftartista.blogspot.com/2018/06/inspired-by-spring.html",null,1528389699],
["11218738","America","https://cardsbyamerica.blogspot.com/2018/06/celebrate-dru-inspirational-blog-card.html",null,1528390619],
["11218743","Gerie","http://scraptastisch.blogspot.com/2018/06/vintage.html",null,1528391908],
["11218827","Teresa","http://redobsessioncards.blogspot.com/2018/06/a-golden-wedding.html",null,1528414258],
["11218926","Hazel","http://craftyhazelnut.blogspot.com/2018/06/happy-anniversary.html",null,1528447711],
["11218929","Hazel","https://craftyhazelnut.blogspot.com/2018/06/happy-anniversary-love-birds.html",null,1528448170],
["11218931","Hazel","http://craftyhazelnut.blogspot.com/2018/06/sending-birthday-wishes-to-friend.html",null,1528449756],
["11218945","Hazel","http://craftyhazelnut.blogspot.com/2018/05/joy-with-twine.html",null,1528453546],
["11218963","Hazel","http://craftyhazelnut.blogspot.com/2018/06/have-fabulous-birthday.html",null,1528456017],
["11218969","Dorothy S","http://cardsbydorothy.blogspot.com/2018/06/design-team-card-for-qkr-stampede.html",null,1528456616],
["11218982","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2018/06/little-miss-moo.html",null,1528459148],
["11219051","Kym","http://kyms-crafty-cards.blogspot.com/2018/06/ching-chou-kuiks-digital-stamps.html",null,1528468525],
["11219054","Norma","http://creatingandsharingit.blogspot.com/2018/02/polkadoodles-everything-goes.html",null,1528468640],
["11219155","DebiB","http://thatmightlookgoodonacard.blogspot.com/2018/06/double-trouble-challenge-2.html",null,1528492141],
["11219167","Hazel","http://craftyhazelnut.blogspot.com/2018/06/commissioned-96th-birthday.html",null,1528497393],
["11219186","Helene","https://lescreationsdhelene.blogspot.com/2018/06/une-carte.html",null,1528508555],
["11219196","Linda Mc Enery","https://lindamscreations.blogspot.com/2018/06/oliver-texting.html",null,1528511748],
["11219250","Hazel","https://craftyhazelnut.blogspot.com/2018/06/chnc-challenge-389.html",null,1528531771],
["11219259","Viv","http://vivsvisuals.blogspot.com/2018/06/home-sweet-home.html",null,1528535450],
["11219261","Hazel","http://craftyhazelnut.blogspot.com/2018/06/seaside-birthday_9.html",null,1528535568],
["11219282","Dreja","https://drejasbastelwelt.blogspot.com/2018/06/kirschhase-und-turschild.html",null,1528540499],
["11219302","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/06/more-peter-rabbit-index-cards-for-my.html?m=0",null,1528547961],
["11219327","Cath","https://katykrunch.blogspot.com/2018/06/inspired-by-friends.html",null,1528550660],
["11219329","NanaConnie","http://mygrammysattic.blogspot.com/2018/06/not-carmen-miranda.html",null,1528551037],
["11219410","Debra Shaw","https://debs-eternity-cards.blogspot.com/2018/06/dad-day-chunky-monkey.html",null,1528565881],
["11219418","Pippa","https://pippaphttps://pippapblog.wordpress.com/2018/06/09/time-for-tea/",null,0],
["11219419","Pippa","https://pippapblog.wordpress.com/2018/06/09/time-for-tea/",null,1528567084],
["11219431","tinyworks","https://tinyworks81.blogspot.com/2018/06/card-knowing-you-makes-me-happy.html",null,1528569020],
["11219458","Hazel","https://craftyhazelnut.blogspot.com/2018/06/fathers-day.html",null,1528582189],
["11219461","Hazel","http://craftyhazelnut.blogspot.com/2018/06/another-commissioned-fathers-day-card.html",null,1528582799],
["11219466","Hazel","http://craftyhazelnut.blogspot.com/2018/06/commissioned-card.html",null,1528586334],
["11219469","Hazel","http://craftyhazelnut.blogspot.com/2018/06/another-commissioned-card.html",null,1528586853],
["11219564","Lisa Walsh","https://papercraftbusiness.com/bright-sunny-day-card/",null,1528616660],
["11219567","Granne","http://aavamaki.blogspot.com/2018/06/hey-there.html",null,1528617189],
["11219610","Monica","http://handmadecardswithlove.blogspot.com/2018/06/water-colour-leaf.html",null,1528627956],
["11219655","Jootje","http://jootjesscrapcards.blogspot.com/2018/06/summerfeelings.html",null,0],
["11219656","Jootje","http://jootjesscrapcards.blogspot.com/2018/06/summer-is-coming.html",null,1528635401],
["11219737","cheiro urgia","https://cheirourgia.blogspot.com/2018/06/summer-in-box.html",null,1528645263],
["11219757","Vannessa","http://saffiresstamping.blogspot.com/2018/06/the-paper-shelter-challenge-342-letters.html",null,1528649898],
["11219758","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/06/daisy-daisy-give-me-your-answer-do.html",null,1528649946],
["11219771","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/06/een-nieuwe-huis.html",null,1528651980],
["11219781","Ginny B","http://homespuncards.blogspot.com/2018/06/sympathy-card.html",null,1528653216],
["11219789","Lilly","http://lillys-craftcorner.blogspot.com/2018/06/new-home.html",null,1528655341],
["11219812","Hazel","http://craftyhazelnut.blogspot.com/2018/06/ladies-night-out.html",null,1528664323],
["11219822","Craftartista","https://craftartista.blogspot.com/2018/06/pretty-mandala.html",null,1528668839],
["11219838","Steffi H.","https://www.flickr.com/photos/spinkymausi/41996777244/in/dateposted/",null,1528675471],
["11219868","Creative Smiles","http://creativesmiles2.blogspot.com/2018/06/fairy-sweet-sparkle-n-sprinkle.html",null,1528685060],
["11219914","Nicolette","https://nicoletteskaarten.blogspot.com/2018/06/voor-ans.html",null,1528701944],
["11219926","tinyworks","http://tinyworks81.blogspot.com/2018/06/card-thanks-for-man-design-team.html",null,1528706477],
["11219932","Sabina","http://artbysabina.blogspot.com/2018/06/ttph-145-at-beach.html",null,1528709875],
["11219969","Rosina","http://rosina-scrapcards.blogspot.com/2018/06/happy-birthday.html",null,1528717778],
["11220022","Pat K","http://patkscards.blogspot.com/2018/06/124-cutie-pie-challenge.html",null,1528726075],
["11220091","Larissa","https://car-d-elicious.blogspot.com/2018/06/a-little-birthday-box.html",null,1528738592],
["11220102","Twisted Witch - Lin","http://twisted-witch.blogspot.com/2018/06/dv-181-add-some-bling.html",null,1528742476],
["11220112","Hazel","https://craftyhazelnut.blogspot.com/2018/06/happy-birthday_11.html",null,1528744225],
["11220167","Hazel","http://craftyhazelnut.blogspot.com/2018/06/for-surprise-challenge-28.html",null,1528754926],
["11220178","Craftartista","https://craftartista.blogspot.com/2018/06/vintage-scenery.html",null,1528757357],
["11220272","Maritza Rios","http://arteconpapelmaderaehilos.blogspot.com/2018/06/new-challenge-digi-choosday-challenge.html",null,1528787193],
["11220294","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/06/brides-lucky-sixpence.html",null,1528789992],
["11220297","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/06/personalised-wedding-hangers.html",null,1528790061],
["11220298","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/06/sweet-cones.html",null,1528790131],
["11220303","Scatty Jan","https://scrappyscatty.blogspot.com/2018/06/helga-hippo.html",null,1528790935],
["11220311","tinyworks","https://tinyworks81.blogspot.com/2018/06/shadow-box-serenity-stardust-gdt.html",null,1528793074],
["11220343","Gerie","http://scraptastisch.blogspot.com/2018/06/criss-cross-kaartsummer-feeling.html",null,1528801334],
["11220369","Nancy Brown","https://inspiredbystamps.blogspot.com/2018/06/good-karma.html",null,1528806293],
["11220372","ScrappyHorses","http://scrappyhorses.blogspot.com/2018/06/shapes.htmlhttp://scrappyhorses.blogspot.com/2018/06/shapes.html",null,0],
["11220373","ScrappyHorses","http://scrappyhorses.blogspot.com/2018/06/shapes.html",null,1528806379],
["11220376","Carla","https://carla-writes.blogspot.com/2018/06/milady-rose-memorydex-card.html",null,1528807119],
["11220434","Hazel","http://craftyhazelnut.blogspot.com/2018/06/girl-about-town.html",null,1528815452],
["11220457","Teresa","http://redobsessioncards.blogspot.com/2018/06/purple-funky-flowers.html",null,1528819041],
["11220483","Bridie","http://bgpaynecrafts.blogspot.com/2018/06/wedding-bus-scrapbook-project.html",null,1528825431],
["11220694","Michelle","https://michelledees.blogspot.com/2018/06/zeemeermin-mermaid.html",null,1528879936],
["11220705","Teresa","http://redobsessioncards.blogspot.com/2018/06/peach-poinsettias.html",null,1528884274],
["11220723","Cathymac","https://goldeninkspirations.blogspot.com/2018/06/two-for-tuesday-by-sea.html",null,1528887057],
["11220831","Angela","https://mijnhobbyhonk.blogspot.com/2018/06/gdt-cheerful-sketches.html",null,1528897771],
["11220869","Mindy Baxter","https://www.mycreativescoop.com/simon-says-stamp-frame-it-challenge-using-memory-box/",null,1528902603],
["11220949","Ma-Mi","http://rilcekinkljuncek.blogspot.com/2018/06/voscilnica-z-uro.html",null,1528911193],
["11221006","J. Atterbury Creations","http://jatterburycreations.blogspot.com/2018/06/funhumor-series-go-together-double.html",null,1528922439],
["11221008","J. Atterbury Creations","http://jatterburycreations.blogspot.com/2018/06/scripture-series-blessed-is-man.html",null,1528922496],
["11221026","Hazel","https://craftyhazelnut.blogspot.com/2018/06/santoro-birthday.html",null,1528925486],
["11221046","Teresa","http://redobsessioncards.blogspot.com/2018/06/baby-love.html",null,1528931640],
["11221116","Hazel","http://craftyhazelnut.blogspot.com/2018/06/envelope-card.html",null,1528962157],
["11221194","Donna Mundinger","http://donnamundinger-popsicletoes.blogspot.com/2018/06/introducing-four-new-sprites-from.html",null,1528984660],
["11221195","Donna Mundinger","http://donnamundinger-popsicletoes.blogspot.com/2018/06/four-new-sprites-at-aurora-wings.html",null,1528984704],
["11221196","Donna Mundinger","http://donnamundinger-popsicletoes.blogspot.com/2018/06/another-new-sprite-from-aurorawings.html",null,1528984750],
["11221204","Zora","https://lofquisten.blogspot.com/2018/06/blommigt-grattis.html",null,1528988950],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}