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("14Apr2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRhcHIyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("2 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Apr2018");
blenza_linkies("thumb","lozzy","14Apr2018","1663025783",3,
[
// MTRhcHIyMDE4
["11195744","jackie cornfield","https://getthejclook.blogspot.co.uk/2018/04/bright-colours.html",null,1523776439],
["11195769","Cathy Clowes","http://thiscraftymummy.blogspot.co.uk/2018/04/springtime-fawn-for-bubbly-funk.html?m=1",null,1523782536],
["11195779","Claudia","http://knutselmeisjes.blogspot.be/2018/04/congrats.html",null,1523785187],
["11195794","Sonika agarwal","https://albelacraftbysonika.blogspot.in/2018/04/shabby-chic-layering-card.html?m=1",null,1523788464],
["11195799","Grietje\\'s Kaartenhoekje","https://grietje78.blogspot.nl/2018/04/sketch-bij-kaartjes-inspiratie.html",null,1523789599],
["11195861","Jane Willis","http://onionsandpaper.blogspot.co.uk/2018/04/a-birthday-sketch-at-cd-sundays.html",null,1523796863],
["11195869","Jootje","http://jootjesscrapcards.blogspot.com/2018/04/voorjaarspringtime.html",null,1523797839],
["11195886","Diana","https://dianascreation.blogspot.nl/2018/04/file-folder-box.html",null,1523799995],
["11195905","My Other World","http://scrapsdamaryv.blogspot.pt/2018/04/creative-with-stamps-inspiracao-de-abril.html",null,1523801833],
["11195908","Caroline\\'s Creaties","https://caroline-creaties.blogspot.nl/2018/04/een-niewe-baan.html",null,1523802347],
["11195909","Vannessa","http://saffiresstamping.blogspot.co.uk/2018/04/whimsy-stamps-april-challenge-anything.html",null,1523802476],
["11195921","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com.au/2018/04/some-bunny-loves-you.html",null,1523803016],
["11195984","ingunn","https://ingunnsinekort.blogspot.no/2018/04/sommerkveld-pa-ei-myr.html",null,1523811833],
["11195994","tinyworks","https://tinyworks81.blogspot.it/2018/04/card-buona-pasqua-dt-storie-di-timbri.html",null,1523813192],
["11196063","elizabeth h","http://warmharted.blogspot.com/2018/04/best-day.html",null,1523824543],
["11196114","Craftartista","https://craftartista.blogspot.gr/2018/04/ladybugs.html",null,1523836445],
["11196134","Uma Didwania","https://craftinlife.blogspot.in/2018/04/bow-card.html?m=1",null,1523840603],
["11196154","Pam Sebring","http://psebring.blogspot.com/2018/04/cupcake-day.html",null,1523845522],
["11196198","Ans Gilbert","http://dekaartenvanonsmam.blogspot.nl/2018/04/happy-birthday.html",null,1523859950],
["11196208","Jackie T","https://tinyrosecr.blogspot.co.uk/2018/04/kinetic-easter-card.html",null,1523863138],
["11196211","julye","http://julyebs.blogspot.co.uk/2018/04/guest-designer-challenge-2-for-house.html",null,1523864084],
["11196214","Anna","http://nonsolocard.blogspot.it/2018/04/april-shower-at-sasayaki-glitter.html",null,1523864822],
["11196219","Helen H","http://helenscraftyshed.blogspot.co.uk/2018/04/special-times.html",null,1523866463],
["11196225","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/04/happy-bday.html",null,1523867272],
["11196239","Maxine D","http://kiwimeskreations.blogspot.co.nz/2018/04/essentially-black-and-white.html",null,1523871615],
["11196258","Monica","http://handmadecardswithlove.blogspot.sg/2018/04/blue-and-white-porcelein.html",null,1523875213],
["11196264","Kathyk","https://purpliciousprincessdiaries.blogspot.co.uk/2018/04/welcome-to-another-week.html",null,1523876022],
["11196289","basslady","http://bassladycreations.blogspot.de/2018/04/fruhlingshafte-karte-mit-vogel-motiv.html",null,1523878905],
["11196296","Julie T","http://juliescraftyspot.blogspot.com/2018/04/ruby-sweet.html",null,1523880329],
["11196311","sweetpea","https://sweetpea-janscraftyspot.blogspot.co.uk/2018/04/lady-in-flowers.html",null,1523882790],
["11196354","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/04/more-altered-tickets-bird-themed.html?m=0",null,1523886025],
["11196361","Mindy Baxter","https://www.mycreativescoop.com/monthly-coloring-class-featuring-power-poppy-digi-stamps/",null,1523886593],
["11196369","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2018/04/16/april-challenge-christmas-cards-facebook-group/",null,1523887408],
["11196376","Dawn S","https://cherrytreestudio.blogspot.co.uk/2018/04/black-and-white-with-or-without-splash.html",null,1523888568],
["11196414","Cristina","http://rutscht.blogspot.com/2018/04/a-gift-for-you.html",null,1523891571],
["11196449","Caroline\\\\\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/04/jij-kan-wel-een-opkikkertje-gebruiken.html",null,1523897326],
["11196503","Wies*","http://wiescreablog.blogspot.nl/2018/04/triangel-tipi-kaart.html",null,1523901360],
["11196530","Vannessa","https://saffiresstamping.blogspot.co.uk/2018/04/faery-ink-inspiration-post-demera.html",null,1523905135],
["11196571","Tracey","http://lalkygirl-my-creative-place.blogspot.co.uk/2018/04/baby-boy-tent-card.html",null,1523910919],
["11196586","Lou Sims","https://lulucardmaking.blogspot.co.uk/2018/04/creating-picture-frame-using-nuvo.html",null,1523914001],
["11196602","CarolG","https://creationsnz.blogspot.co.nz/2018/04/friends-stack.html",null,1523916899],
["11196646","Pam Sebring","http://psebring.blogspot.com/2018/04/molly.html",null,1523927734],
["11196651","Christine A","https://itsacarddaysnight.blogspot.ca/2018/04/lindys-magicals-through-stencil.html",null,1523930516],
["11196657","Darshana","https://tinaartcrarft.blogspot.com/2018/04/spring.html",null,1523932387],
["11196669","Aileen Ryan","https://colourandsparkle.blogspot.com.au/2018/04/its-sprinkle-sparkle-shaker-card.htmle-so-special.html",null,1523936418],
["11196675","Lovely Linda","https://lovelylindascraftcentral.blogspot.com.au/2018/04/butterfly-birthday.html",null,1523939522],
["11196679","cheiro urgia","https://cheirourgia.blogspot.si/2018/04/welcome-spring.html",null,1523940701],
["11196721","Maya","https://mayas-hobbyblogg.blogspot.no/2018/04/handlagethandmade.html",null,1523950971],
["11196732","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/04/parisian.html",null,1523953757],
["11196735","Kali","http://bastelgrotte.de/?p=9602",null,1523954682],
["11196736","Jolanda","https://jolandasblogs.blogspot.nl/2018/04/gebruik-kraftpapier.html",null,1523955779],
["11196756","Pippa","https://pippapblog.wordpress.com/2018/04/17/the-library-challenge/",null,1523961778],
["11196767","Pippa","https://pippapblog.wordpress.com/2018/04/16/dreamer/",null,1523963694],
["11196773","Pippa","https://pippapblog.wordpress.com/2018/04/17/new-release-at-bugaboo-5/",null,1523964752],
["11196780","Beatriz","http://beascrapbooking.blogspot.com.es/2018/04/hola-chicos-y-chicasno-tengo-excusa-mi.html",null,1523965962],
["11196797","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/04/ttcrd-sponsored-by-my-favorite-things.html?m=0",null,1523967932],
["11196832","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com.au/2018/04/slider-magic-with-through-craft-room.html",null,1523971313],
["11196915","tinyworks","https://tinyworks81.blogspot.it/2018/04/nuova-avvenuta-1-ispirazione-aprile-le.html",null,1523984503],
["11196954","Karen","https://craftykarenj.blogspot.co.uk/2018/04/buttons-andor-bows.html",null,1523993399],
["11196972","Tracey","http://lalkygirl-my-creative-place.blogspot.co.uk/2018/04/youre-awesome.html",null,1523995961],
["11197044","Darshana","https://tinaartcrarft.blogspot.com/2018/04/spring-season.html",null,1524009409],
["11197061","Donna R","https://indianainking.blogspot.com/2018/04/the-purr-fect-day.html",null,1524014615],
["11197064","Craftartista","https://craftartista.blogspot.gr/2018/04/poppies.html",null,1524015388],
["11197066","Angies Creations","http://angiescreationsblog.blogspot.com/2018/04/two-birthday-cards-done.html#links",null,1524015998],
["11197081","Rachelle Olaridge","http://scrapping247365.blogspot.com/2018/04/glimmer-shine-at-tuesday-throwdown.html",null,1524018048],
["11197138","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/04/beterschap.html",null,1524031385],
["11197182","Linda Mc Enery","https://lindamscreations.blogspot.com.au/2018/04/polkadoodles-ruby-frou-frou.html",null,1524037399],
["11197185","Julie P","https://julieprice3.wordpress.com/2018/04/18/paper-shelter-birthday/",null,1524038765],
["11197193","My Other World","http://scrapsdamaryv.blogspot.pt/2018/04/poppies-postal-de-aniversario-creative.html",null,1524040475],
["11197207","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/04/new-grandson-card.html",null,1524045849],
["11197219","Emma R","https://emgoescardmaking.blogspot.co.uk/2018/04/time-for-tea.html",null,1524047503],
["11197229","Birgit","https://cardsrfun.blogspot.se/2018/04/to-very-special-person.html",null,1524048734],
["11197316","Pat K","http://patkscards.blogspot.ca/2018/04/fabnfunky-fantasy.html",null,1524056819],
["11197541","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/04/roses-are-red.html",null,1524080073],
["11197562","Nancy Brown","https://inspiredbystamps.blogspot.com/2018/04/gold-gilding-flakes-cards.html",null,1524083186],
["11197597","Donna T","http://lakefrontstampingcreations.blogspot.com/2018/04/the-house-that-stamps-built-photo.html",null,1524090197],
["11197653","Pam Sebring","http://psebring.blogspot.com/2018/04/adubycycle-gal.html",null,1524101985],
["11197684","TracyM 6773 (3)","https://tracyscraftyadventures.blogspot.com.au/2018/04/fairies-flowers-andor-fantasy-with-team.html",null,1524115608],
["11197701","Rosina","http://rosina-scrapcards.blogspot.nl/2018/04/kerstkaart-week-16.html",null,1524123107],
["11197773","Shona Erlenborn","http://shonasstampingstage.blogspot.com/2018/04/calla-lilies-with-love.html",null,0],
["11197778","jenimc","http://jenicraftroom.blogspot.co.uk/2018/04/spring-wellies.html",null,1524143125],
["11197837","CarolG","https://creationsnz.blogspot.co.nz/2018/04/chicken-kite.html",null,1524155008],
["11197841","Jean","http://jeancrosby.blogspot.co.uk/2018/04/thinking-of-you.html",null,1524155264],
["11197844","Silke","http://kartenkram.blogspot.de/2018/04/sweet-smoothie.html",null,1524155722],
["11197855","Wies* (2)","http://wiescreablog.blogspot.nl/2018/04/een-onmogelijke-kaart-impossible-card.html",null,1524158731],
["11197919","Leona B","https://cardsbyleona.wordpress.com/2018/04/18/12002/",null,1524173478],
["11198024","Rijacki: Golden Journal","https://rijacki.blogspot.com/2018/04/golden-journal.html",null,1524192422],
["11198095","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/04/je-bent-jarig.html",null,1524209213],
["11198107","Carole J","https://cjcrafty.blogspot.co.uk/2018/04/vera-lane-studio-watercolour-fairy.html",null,1524213996],
["11198110","Silke","http://kartenkram.blogspot.de/2018/04/feiere-deinen-tag.html",null,1524214713],
["11198130","Sabina","http://artbysabina.blogspot.si/2018/04/lcc-136-through-window.html",null,1524220477],
["11198168","Dorothy S","https://cardsbydorothy.blogspot.com/2018/04/pink-flower-dt-card-for-qkr-stampede.htmlr-stampede.html",null,1524226361],
["11198305","MARLENE","https://cardsmadebymarlene.blogspot.co.uk/2018/04/new-home-job-baby.html",null,1524238370],
["11198318","Kym","https://kyms-crafty-cards.blogspot.co.uk/2018/04/ching-chou-kuiks-digital-stamps.html",null,1524239850],
["11198322","elizabeth h","http://warmharted.blogspot.com/2018/04/hippo-fun.html",null,1524240179],
["11198324","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/04/colour-crazy-challenge-blog-friday-20.html",null,1524240354],
["11198397","Caroline","http://caroline-creaties.blogspot.nl/2018/04/trouwkaart_20.html?m=0",null,1524251942],
["11198426","Teresa","http://redobsessioncards.blogspot.co.uk/2018/04/mothers-day.html",null,1524257830],
["11198551","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/04/chnc-challenge-382.html",null,1524303153],
["11198575","Grietje\\'s Kaartenhoekje 2","https://grietje78.blogspot.nl/2018/04/shine-bright-dream-big.html",null,1524307328],
["11198727","coops","https://coopsclutteredcorner.blogspot.co.uk/2018/04/special-birthday.html",null,1524333056],
["11198753","yvonne krijgsman","https://yvonne1965shamina.blogspot.nl/2018/04/mijn-herinneringskaart-voor-de.html",null,1524340737],
["11198792","Teresa","http://redobsessioncards.blogspot.co.uk/2018/04/baby-congrats.html",null,1524345960],
["11198925","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/04/voor-carla.html",null,1524386606],
["11198935","Marja ","http://marjaskaarten.blogspot.nl/2018/04/happy-bday-lars.html",null,1524389781],
["11198967","Teresa","http://redobsessioncards.blogspot.co.uk/2018/04/18-today.html",null,1524559454],
["11199118","Lizzie","https://lizziescraftingretreat.blogspot.co.at/2018/04/baby-card-with-cute-giraffe.html",null,1524428397],
["11199218","Diny","http://dinys-scrapkaarten.blogspot.nl/2018/04/hoera_23.html",null,1524460689],
["11199250","Ans Gilbert","https://dekaartenvanonsmam.blogspot.nl/2018/04/happy-birthday_23.html",null,1524465274],
["11199271","Carole J","https://cjcrafty.blogspot.co.uk/2018/04/vera-lane-studio-happy-birthday-mr.html",null,1524472697],
["11199335","Caroline's Creaties","http://caroline-creaties.blogspot.nl/2018/04/voor-carla.html",null,1524485963],
["11199412","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/04/cas-clean-and-simple.html",null,1524493853],
["11199713","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/04/chocolate-happiness.html",null,1524553752],
["11199727","Cicci with the Pen","http://ciccividpennan.blogspot.com/2018/04/new-atg-challenge-ttcrd-sponsorship-by.html",null,0],
["11199729","Ċ½eljka","https://creativemomanddaughter.blogspot.hr/2018/04/week-17-at-digi-choosday-challenge-blog.html",null,1524556288],
["11199735","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/04/new-atg-challenge-ttcrd-alicia-bel.html",null,1524557713],
["11199743","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2018/04/passion-for-promarkers-441-celebrations.html",null,1524560134],
["11199774","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/04/fantasy-night-sceen.html",null,1524564201],
["11199775","Maxine D","http://kiwimeskreations.blogspot.co.nz/2018/04/little-birdie-birthday.html",null,1524564414],
["11199785","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/04/lemon-shortbread-challenge-tuesday-24.html",null,1524567575],
["11199882","Dreja","https://drejasbastelwelt.blogspot.de/2018/04/3-geburtstagskarten-mit-ballonstempeln.html",null,1524577070],
["11199886","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2018/04/24/kleopatra-day/",null,1524577802],
["11199918","Julie T","http://juliescraftyspot.blogspot.com/2018/04/jump-for-joy.html",null,1524582260],
["11199937","Julie Reed","https://pumpkinbellycards.blogspot.co.uk/2018/04/paper-pieced-princess.html",null,1524584783],
["11200026","Sharon Hudson","https://craftyhugs.blogspot.co.uk/2018/04/black-and-white-exploding-box.html?m=1",null,1524598992],
["11200035","pinky","https://pinky-pinkysworld.blogspot.co.uk/2018/04/party-girl.html",null,1524599374],
["11200122","Rijacki: Magnets","https://rijacki.blogspot.com/2018/04/magnets-distress-oxides-on-photo-paper.html",null,1524624234],
["11200145","elizabeth h","http://warmharted.blogspot.com/2018/04/youre-bees-knees.html",null,1524632235],
["11200165","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2018/04/bluebell-sprite.html",null,1524636050],
["11200168","Rhiannon - age 9","https://creationsnz.blogspot.co.nz/2018/04/mousie-sugar-plum-rhi-age-9.html",null,1524636492],
["11200175","Diny","https://dinys-scrapkaarten.blogspot.nl/2018/04/hoera65.html",null,1524638008],
["11200209","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/04/lacy-sunshine-spring.html",null,1524644931],
["11200224","shellshearer","http://shellshearer.blogspot.co.uk/2018/04/you-slay-me.html",null,1524647839],
["11200249","jenimc","http://jenicraftroom.blogspot.co.uk/2018/04/girl-baby2.html",null,1524655315],
["11200378","Craftartista","https://craftartista.blogspot.gr/2018/04/painting-flowers.html",null,1524662156],
["11200398","Craftartista","https://craftartista.blogspot.gr/2018/04/friends.html",null,1524663601],
["11200423","Bridie","http://bgpaynecrafts.blogspot.co.uk/2018/04/playtime-scrapbook-layout.html",null,1524666900],
["11200436","Lilly","http://lillys-craftcorner.blogspot.co.uk/2018/04/steampunk-card.html",null,1524668219],
["11200601","Tracey","http://lalkygirl-my-creative-placeautiful-day.html",null,1524685747],
["11200648","Plony","http://plonysbloggie.blogspot.nl/2018/04/gewoon-lekker-creabea-bezig.html",null,1524695059],
["11200774","Rosina","http://rosina-scrapcards.blogspot.nl/2018/04/winter.html",null,1524746754],
["11200783","Desire Fourie","http://desiref.blogspot.co.za/2018/04/yesterday-february-2018-reminder.html",null,1524749180],
["11200835","Tracey","http://lalkygirl-my-creative-place.blogspot.co.uk/2018/04/crafters-companion-easel-die-card.html",null,1524760302],
["11200940","Craftartista","https://craftartista.blogspot.gr/2018/04/celebrating-hippo.html",null,1524777696],
["11201011","Monique","https://crealoetje.blogspot.nl/2018/04/balans-vinden.html",null,1524808293],
["11201037","basslady","http://bassladycreations.blogspot.de/2018/04/karte-mit-badender-kuh.html?m=0",null,1524817105],
["11201057","Lovely Linda","https://lovelylindascraftcentral.blogspot.com.au/2018/04/little-dude-layout.html",null,1524825057],
["11201080","TracyM 6773 (4)","https://tracyscraftyadventures.blogspot.com.au/2018/04/keeping-it-cas-with-crafty-catz.html",null,1524828327],
["11201087","TracyM 6773 (5)","https://tracyscraftyadventures.blogspot.com.au/2018/04/singing-snowmen-christmas-wishes-with.html",null,1524828689],
["11201090","TracyM 6773 (6)","https://tracyscraftyadventures.blogspot.com.au/2018/04/more-singing-snowmen-christmas-wishes.html",null,1524828833],
["11201093","TracyM 6773 (7)","https://tracyscraftyadventures.blogspot.com.au/2018/04/get-ready-for-christmas-with-crafting.html",null,1524828975],
["11201095","TracyM 6773 (8)","https://tracyscraftyadventures.blogspot.com.au/2018/04/more-christmas-wishes-at-crafting-by.html",null,1524829114],
["11201099","TracyM 6773 (9)","https://tracyscraftyadventures.blogspot.com.au/2018/04/pop-of-purple-with-crafty-catz.html",null,1524829286],
["11201404","Desire Fourie","http://desiref.blogspot.co.za/2018/04/happy-birthday-digistamps4joy-april.html",null,1524904919],
["11201412","Pippa","https://pippapblog.wordpress.com/2018/04/27/friday-freebie-at-bugaboo-digi-stamps/",null,1524909323],
["11201421","Pippa","https://pippapblog.wordpress.com/2018/04/28/progressive-challenge-at-gerda-steiner/",null,1524911287],
["11201442","Chris","https://andheresoneimadeearlier.blogspot.co.uk/2018/04/wish.html",null,1524913393],
["11201570","Desire Fourie","http://desiref.blogspot.co.za/2018/04/and-many-more-guest-designer-at.html",null,1524921565],
["11201705","Bernadet","https://cardsbybernadet.blogspot.nl/2018/04/tiddly-inks-patriot.html ",null,1524934604],
["11201740","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/04/chnc-challenge-383.html",null,1524942931],
["11201750","Ma-Mi","http://rilcekinkljuncek.blogspot.si/2018/04/verjemi-v-svoje-sanje.html",null,1524946407],
["11201752","Craftartista","https://craftartista.blogspot.gr/2018/04/two-friends-in-village.html",null,1524947962],
["11201922","Wendy Batchen","https://wenscreations.blogspot.co.uk/2018/04/scrappers-delights-special-deals_29.html",null,1524991971],
["11201942","AndreaBastelmaus","https://andreabastelmaus.blogspot.de/2018/04/zum-geburtstag.html",null,1524997186],
["11201953","Hazel L","http://hazel-hazelshappyhouse.blogspot.co.uk/2018/04/iaas-interactive.html",null,1524999765],
["11202088","Pippa","https://pippapblog.wordpress.com/2018/04/29/scrappers-delights-freebie-fun/",null,1525017075],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}