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("30Mar2018a", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzBtYXIyMDE4YQ==", "1");
blenza_setcolor("default");
blenza_setExpires("2 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("30Mar2018a");
blenza_linkies("thumb","lozzy","30Mar2018a","1086858619",3,
[
// MzBtYXIyMDE4YQ==
["11189590","Carole J","https://cjcrafty.blogspot.co.uk/2018/04/crafts-galore-encore-kimono-girl.html",null,1522573069],
["11189633","Helen","http://helenscrafthaven.blogspot.co.uk/2018/04/pile-it-on-challenge-think-small.html",null,1522580881],
["11189634","Cristina","http://rutscht.blogspot.com/2018/04/friends.html",null,1522580942],
["11189636","Michelle Lancaster","https://laughingducks2012.blogspot.co.uk/2018/03/digi-stamp-boutique-fairy.html",null,0],
["11189637","Michelle Lancaster","https://laughingducks2012.blogspot.co.uk/2018/04/hoppy-easter.html",null,1522581094],
["11189702","Valerie","http://lescrapdevava.blogspot.ch/2018/04/pile-it-on-141-think-small.html",null,1522589324],
["11189705","Jan Thompson","http://janlovetocraft.blogspot.co.uk/2018/04/happy-easter.html",null,1522589799],
["11189714","Margaret A (Granmargaret)","https://granmargaret.blogspot.com.au/2018/03/tiddly-inks-challenge-211-molly-month.html",null,0],
["11189735","Hester","https://hesterskaarten.blogspot.nl/2018/04/whimsy-stamps-new-release-1-teacher.html",null,1522592925],
["11189750","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/04/love-locket-card.html",null,1522595584],
["11189778","elizabeth h","http://warmharted.blogspot.com/2018/04/rose-bunny.html",null,1522599818],
["11189787","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/04/always-happy-birthday-april-challenge.html",null,1522677735],
["11189802","Janis Lewis","http://abitmoretimetocraft.blogspot.com/",null,0],
["11189814","Paperesse","http://www.paperesse.com/2018/04/happy-easter-card-featuring-pretty-cute.html",null,1522620684],
["11189859","Donna R","https://indianainking.blogspot.com/2018/04/new-challenge-at-12-months-of-christmas.html",null,1522632598],
["11189904","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2018/04/dreams-come-true.html",null,1522649030],
["11189945","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/04/60-jaar.html",null,1522660837],
["11189962","julye","http://julyebs.blogspot.co.uk/2018/04/house-mouse-challenge.html",null,1522662934],
["11189990","Beatriz","http://beascrapbooking.blogspot.com.es/2018/04/bolsa-decorada-como-disenadora-invitada.html",null,1522666937],
["11190001","Jan Thompson","http://janlovetocraft.blogspot.co.uk/2018/04/new-challenge-at-whoopsie-daisy.html",null,1522668180],
["11190067","NanaConnie","http://mygrammysattic.blogspot.com/2018/04/daddys-boots.html",null,1522677956],
["11190089","PaperPlotterLotta","http://paperplotterlottas-craftchaos.blogspot.de/2018/04/oddball-new-release-brainwashing.html",null,1522679770],
["11190123","Cath","https://katykrunch.blogspot.co.uk/2018/04/wingsand-bit-more-b.html",null,1522684307],
["11190135","CarolG NZ","https://creationsnz.blogspot.co.nz/2018/04/natural-beauty.html",null,0],
["11190136","CarolG NZ","https://creationsnz.blogspot.co.nz/2018/04/birthday-croc.html",null,1522685751],
["11190137","Jenna","http://jennagallery.blogspot.cz/2018/04/my-creative-easter-weekend.html",null,1522686070],
["11190163","Silke","http://kartenkram.blogspot.de/2018/04/90-geburtstag.html",null,1522690769],
["11190235","Tracey","http://lalkygirl-my-creative-place.blogspot.co.uk/2018/04/a-new-baby-card.html",null,1522702260],
["11190249","Carole J","https://cjcrafty.blogspot.co.uk/2018/04/vera-lane-studio-roses.html",null,1522705817],
["11190260","Ginny B","http://homespuncards.blogspot.com/2018/04/spring-flowers.html",null,1522707495],
["11190287","Nancy Edwards","https://pinkpanoply.blogspot.com/2017/11/o-holy-night-christmas-lori-whitlock.html",null,1522714103],
["11190320","Craftartista","https://craftartista.blogspot.gr/2018/04/thank-you.html",null,1522726282],
["11190346","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/04/for-you.html",null,1522734736],
["11190367","Karen","https://craftykarenj.blogspot.co.uk/2018/04/animals.html",null,1522743213],
["11190382","Hazel","http://craftyhazelnut.blogspot.com/2018/04/craftyhazelnuts-patterned-paper-april.html",null,1522748184],
["11190383","Hazel","http://craftyhazelnut.blogspot.com/2018/04/love-to-craft-challenge-21-april.html",null,1522748246],
["11190416","America","http://cardsbyamerica.blogspot.com/2018/04/multiple-images-house-mouse-giveaways.html",null,1522756692],
["11190421","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/04/babygirl.html",null,1522757575],
["11190445","Ginny B","http://homespuncards.blogspot.com/2018/04/a-calm-and-blessed-christmas.html",null,1522760970],
["11190454","Kali","http://bastelgrotte.de/?p=10128",null,1522763196],
["11190461","Kraftyscot (Donna)","https://kraftyscot.blogspot.co.uk/2018/04/my-first-post-as-gd-for-digi-doodle.html",null,1522764363],
["11190469","Pippa","https://pippapblog.wordpress.com/2018/04/01/april-at-love-to-craft/",null,1522765264],
["11190485","Pippa","https://pippapblog.wordpress.com/2018/04/01/hopping-to-the-middle-with-scribbles-designs/",null,1522766125],
["11190492","Pippa","https://pippapblog.wordpress.com/2018/04/02/path-of-positivity-pastels-challenge/",null,1522767497],
["11190601","Angies Creations","http://angiescreationsblog.blogspot.com/2018/04/im-back-already.html#links",null,1522783272],
["11190615","Wies*","http://wiescreablog.blogspot.nl/2018/04/vlinders.html",null,1522786295],
["11190617","Jootje","http://jootjesscrapcards.blogspot.com/2018/04/hearts.html",null,1522786931],
["11190631","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/there-is-nothing-like-dream-bugaboo-new.html",null,1522788569],
["11190669","Craftartista","https://craftartista.blogspot.gr/2018/04/pretty-zen-easter-bunny.html",null,1522796705],
["11190832","My Other World","http://scrapsdamaryv.blogspot.pt/2018/04/storytime-ellie-marcador-de-livros.html",null,1522831619],
["11190834","Julie P","https://julieprice3.wordpress.com/2018/04/04/the-glamorous-girls/",null,1522831834],
["11190956","Kraftyscot","https://kraftyscot.blogspot.co.uk/2018/04/thanks-bunch.html",null,1522846685],
["11190967","My Other World","http://scrapsdamaryv.blogspot.pt/2018/04/rorys-lucky-clover-pennys-challenges-374.html",null,1522847563],
["11190978","Pat K","http://patkscards.blogspot.ca/2018/04/fabnfunky-challenge.html",null,1522848361],
["11191006","SewPaperPaint","https://sewpaperpaint.blogspot.com/2018/04/darkroom-door-tim-holtz-masculine-card.html",null,1522851400],
["11191011","AUNTY SUE","https://auntysuescraftcavern.blogspot.co.uk/2018/04/time-for-tea-easter-treats.html",null,1522851645],
["11191037","Claudia","http://knutselmeisjes.blogspot.be/2018/04/schattig.htmll",null,0],
["11191038","Claudia","http://knutselmeisjes.blogspot.be/2018/04/schattig.html",null,1522853839],
["11191144","Imke","https://mycraftyplace.wordpress.com/2018/04/04/little-red-wagon-440-old-mcdonald/",null,1522863334],
["11191166","Grietje\\'s Kaartenhoekje","https://grietje78.blogspot.nl/2018/04/mixed-media.html",null,1522866207],
["11191185","Teresa","http://redobsessioncards.blogspot.co.uk/2018/04/molly-spring.html",null,1522870065],
["11191186","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/hip-hippo-hooray-happy-birthday-pause.html",null,1522870086],
["11191189","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/so-glad-youre-one-of-my-peeps-sunny-day.html",null,1522870573],
["11191193","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/happy-birthday-craftaholics-r-us-14.html",null,1522871350],
["11191247","Gloria Shirr","https://purpleglocreations.blogspot.com/2018/04/thank-you-card.html",null,1522880219],
["11191280","Sharon Hudson","http://craftyhugs.blogspot.co.uk/2018/04/new-challenge-over-at-creative-moments.html?m=1",null,1522889739],
["11191301","AndreaBastelmaus","https://andreabastelmaus.blogspot.de/2018/04/singing-in-rain.html",null,1522899714],
["11191327","Jane Willis","http://onionsandpaper.blogspot.co.uk/2018/04/no-patterned-paper-at-cd-sundays.html",null,1522908689],
["11191337","Ann Chuang","https://anncard.blogspot.tw/2018/04/trio-of-atcs.html",null,1522912236],
["11191339","le idee di penelope ","https://ideedipenelope.blogspot.it/2018/04/tanti-auguri-mirco.html",null,1522912255],
["11191354","Lovely Linda AUS","https://lovelylindascraftcentral.blogspot.com.au/2018/04/masculine-enjoy-your-day-card.html",null,1522916893],
["11191355","Rosina","http://rosina-scrapcards.blogspot.nl/2018/04/december-groetjes.html",null,1522917217],
["11191368","J. Atterbury Creations","https://jatterburycreations.blogspot.com/2018/04/especially-made-happy-birthday-monkey.html",null,1522922733],
["11191384","Birgit","https://cardsrfun.blogspot.se/2018/04/so-loved-from-first-moment.html",null,1522925365],
["11191440","Yvonne Krijgsman","https://yvonne1965shamina.blogspot.nl/2018/04/een-nieuw-kaartje-gemaakt-en-weer-met.html",null,1522934855],
["11191536","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/im-over-moon-for-you.html",null,1522952192],
["11191572","Jean","http://jeancrosby.blogspot.co.uk/2018/04/may-all-your-dreams-come-true.html",null,1522956377],
["11191631","Rhiannon - age 9","https://creationsnz.blogspot.co.nz/2018/04/rhiannons-post-squeal.html",null,1522966359],
["11191689","Gloria Shirr ","https://purpleglocreations.blogspot.com/2018/04/fairy-card-using-conie-fong-sitting.html",null,1522977604],
["11191697","Priya Satish","https://creativemotif.blogspot.in/2018/04/happy-car-day.html",null,1522980973],
["11191706","Craftartista","https://craftartista.blogspot.gr/2018/04/spring-flowers.html",null,1522984392],
["11191708","Pam Sebring","http://psebring.blogspot.com/2018/04/2-little-monkeys.html",null,1522985100],
["11191710","Pam Sebring","http://psebring.blogspot.com/2018/04/bee-happy.html",null,1522986844],
["11191722","elizabeth h","http://warmharted.blogspot.com/2018/04/spring-ducklings.html",null,1522988465],
["11191770","le idee di penelope ","https://ideedipenelope.blogspot.it/2018/04/polkadoodles-una-graditissima-scoperta.html",null,1523001980],
["11191795","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com.au/2018/04/monstrously-cute-mistletoe-kisses.html",null,1523007134],
["11191796","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com.au/2018/04/the-colours-of-spring-with-crafty-catz.html",null,1523007167],
["11191799","Julie P","https://julieprice3.wordpress.com/2018/04/06/lets-add-a-sentiment/",null,1523007840],
["11191879","Marie Flayer","https://njstampingqueen.blogspot.com/2018/04/color-dare-285-blossom-bashful-and.html",null,1523017165],
["11191927","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/04/ching-chou-kuiks-digital-stamps_6.html",null,1523022503],
["11191934","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/04/colour-crazy-challenge-blog-friday-6.html",null,1523023076],
["11192016","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/04/first-holy-communion-card-and-box.html",null,1523034087],
["11192031","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/life-is-better-bugaboo-free-friday.html",null,1523036054],
["11192035","Vickytovar ","https://vickyscrappingpassion.blogspot.co.uk/2018/04/dt-craftwell-truly-best-day-ever.html",null,1523036455],
["11192036","Wies*","http://wiescreablog.blogspot.nl/2018/04/bloemen-in-het-spotlicht.html",null,1523036492],
["11192055","corta e cola","https://carimbarpapel.blogspot.de/2018/04/amizade.html",null,1523039693],
["11192097","Craftartista","https://craftartista.blogspot.gr/2018/04/my-easter-bunny.html",null,1523048387],
["11192099","sweetpea","https://sweetpea-janscraftyspot.blogspot.co.uk/2018/04/sunflower.html",null,1523048736],
["11192105","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/04/son-car-birthday-card.html",null,1523050040],
["11192148","Teresa","http://redobsessioncards.blogspot.co.uk/2018/04/fairy-dust.html",null,1523057722],
["11192158","Julie P","https://julieprice3.wordpress.com/2018/04/07/fairie-dust-album/",null,1523060820],
["11192246","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/04/chnc-challenge-380.html",null,1523091060],
["11192351","Craftartista","https://craftartista.blogspot.gr/2018/04/easter-chick.html",null,1523104814],
["11192394","shellshearer","http://shellshearer.blogspot.co.uk/2018/04/a-gorjuss-box.html",null,1523107875],
["11192438","Ellie","http://livelaughstamp.blogspot.com/2018/04/allsorts-challenge-papercrafters-linky.html",null,1523112813],
["11192449","Maria Giselle B.","https://ienjoywhatido.blogspot.com/2018/04/foiled-watercolored-kit-and-clowder-card.html",null,1523113686],
["11192503","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/just-wanted-to-say-happy-easter.html",null,1523121908],
["11192531","Craftartista","https://craftartista.blogspot.gr/2018/04/a-very-happy-easter-to-all.html",null,1523128328],
["11192754","Carla","https://carla-writes.blogspot.com/2018/04/treasure-chest-card.html",null,1523191088],
["11192811","Teresa","http://redobsessioncards.blogspot.co.uk/2018/04/friends-and-flowers.html",null,1523196698],
["11192857","Pippa","https://pippapblog.wordpress.com/2018/04/07/anything-goes-at-catch-the-bug/",null,1523205163],
["11192922","Jean","http://jeancrosby.blogspot.co.uk/2018/04/friendly-cuddles.html",null,1523213709],
["11193048","Seemaa","https://icraftpaper.blogspot.com/2018/04/travel-diary.html",null,1523255815],
["11193052","Dreja","https://drejasbastelwelt.blogspot.de/2018/04/ostern-geburtstag-baby.html",null,1523256920],
["11193067","Lou Sims","https://lulucardmaking.blogspot.co.uk/2018/04/inspire-mixed-media-tag-with-nuvo.html",null,1523261051],
["11193100","Beatriz","http://beascrapbooking.blogspot.com.es/2018/04/reto-crafty-sentiments-designs-anything.html",null,1523270324],
["11193219","yvonne krijgsman","https://yvonne1965shamina.blogspot.nl/2018/04/hoewel-het-inmiddels-voorjaar-is-heb-ik.html",null,1523282319],
["11193259","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/04/7-jaar-getrouwd-en-een-leuk-weekend.html",null,1523286134],
["11193266","Mary Marsh","https://thecharmedlife-maryr917.blogspot.com/2018/04/llama-birthday.html",null,1523287352],
["11193277","Julie T","http://juliescraftyspot.blogspot.com/2018/04/you-were-born-to-sparkle.html",null,1523288090],
["11193293","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/04/its-going-to-bee-okay.htmlhttps://pausedreamenjoy.blogspot.com/2018/04/spring-scrapbook-layout.html",null,0],
["11193294","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/04/spring-scrapbook-layout.html",null,1523289383],
["11193299","Kandis","https://kandy-s.blogspot.co.uk/2018/04/martini-cocktail.html",null,1523289867],
["11193302","America","https://cardsbyamerica.blogspot.com/2018/04/be-best-version-of-yourself-house-mouse.html",null,1523290622],
["11193335","Craftartista","https://craftartista.blogspot.gr/2018/04/welcome-spring.html",null,1523293366],
["11193374","Cath","https://katykrunch.blogspot.co.uk/2018/04/one-for-older-girls.html",null,1523298837],
["11193375","sue","https://sue-hickey.blogspot.com/2018/04/scrappers-delights.html",null,1523298886],
["11193380","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/this-little-piggy-loves-you.html",null,1523300588],
["11193496","Donna R","https://indianainking.blogspot.com/2018/04/furever-friends.html",null,1523321962],
["11193512","Jootje","http://jootjesscrapcards.blogspot.com/2018/04/vintage-wedding.html",null,1523327823],
["11193514","Pam Sebring","http://psebring.blogspot.com/2018/04/flower-can-get-well.html",null,1523328655],
["11193519","Dorothy S","https://cardsbydorothy.blogspot.com/2018/04/tea-party-mmtpt506-for-libby.html",null,1523329589],
["11193524","Gloria Shirr","https://purpleglocreations.blogspot.com/2018/04/birthday-card-using-aurora-wings-lilac.html",null,1523331435],
["11193541","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2018/04/birthday-greetings.html",null,1523339872],
["11193555","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/04/vera-jarig.html",null,1523344802],
["11193586","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/04/lemon-shortbread-challenge-tuesday-10.html",null,1523351681],
["11193588","Maxine D","http://kiwimeskreations.blogspot.co.nz/2018/04/gold-baptismal-card.html",null,1523352064],
["11193630","Marja","http://marjaskaarten.blogspot.nl/2018/04/meeting-friends.html",null,1523360574],
["11193634","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/04/alcohol-inking-so-much-fun.html?m=0",null,1523361448],
["11193635","Bridie","http://bgpaynecrafts.blogspot.co.uk/2018/04/polkadoodles-sleigh-christmas-card.html",null,1523361747],
["11193687","Ramya","https://shilpakari.blogspot.com/2018/04/spring-bloom-altered-matchbox.html",null,1523369884],
["11193718","DebiB","http://thatmightlookgoodonacard.blogspot.com/2018/04/joyful-stars-close-to-my-heart-april.html",null,1523373704],
["11193743","Larissa","https://car-d-elicious.blogspot.nl/2018/04/fairytale-challenge-april-weather-its.html",null,1523378417],
["11193765","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/happy-mothers-day-bugaboo-new-release.html",null,1523382527],
["11193812","Rachael E","https://allthingspurpleandsparkly.blogspot.co.uk/2018/04/little-soldier.html",null,1523389673],
["11193846","Laine","https://dreamlaine.blogspot.co.uk/2018/04/sunshine-on-rainy-day.html",null,1523396797],
["11193882","Cass","https://casscreatingnow.blogspot.com.au/2018/04/shgeepskis-virgo-cat.html",null,1523401582],
["11193885","Craftartista","https://craftartista.blogspot.gr/2018/04/admire-flowers.html",null,1523403200],
["11193887","Teresa","http://redobsessioncards.blogspot.co.uk/2018/04/april-showers.html",null,1523403279],
["11193944","Priya Satish","https://creativemotif.blogspot.in/2018/04/oh-butterflybutterfly.html",null,1523417123],
["11193974","Barbara Bruder","http://artandsoulcreations.blogspot.com/2018/04/happy-birthday.html",null,1523425259],
["11194045","Cicci with the Pen","http://ciccividpennan.blogspot.com/2018/04/new-atg-challenge-ttcrd-sponsorship-by.html",null,1523435580],
["11194099","Monika Reeck","https://creativewithmonika.blogspot.de/2018/04/astm-287-birthday-card-with-lady-in-red.html",null,1523447254],
["11194223","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/04/watercolored-red-roses.html?m=0",null,1523458659],
["11194368","Andrea Norris","https://sheepskidesigns.blogspot.co.uk/2018/04/mini-tree.html",null,1523472661],
["11194406","Teresa","http://redobsessioncards.blogspot.co.uk/2018/04/spring-has-sprung.html",null,1523480880],
["11194423","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/youre-some-bunny-special-sunny-day.html",null,1523486611],
["11194434","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/welcome-christmas-merry-christmas.html",null,1523488959],
["11194440","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/friends-forever-inspiration-destination.html",null,1523489677],
["11194526","Rijacki: Garden Gate","https://rijacki.blogspot.com/2018/04/garden-gate.html",null,1523505356],
["11194544","Sheryl Hare","https://marchharecards.blogspot.co.uk/2018/04/christmas-in-april.html",null,1523518383],
["11194549","le idee di penelope ","https://ideedipenelope.blogspot.it/2018/04/la-mia-prima-lollipop-card.html",null,1523519112],
["11194557","Scatty Jan","https://scrappyscatty.blogspot.co.uk/2018/04/inspiration-week-little-miss-muffet.html",null,1523523555],
["11194600","Emma R","https://emgoescardmaking.blogspot.co.uk/2018/04/doggy-walkies.html",null,1523534808],
["11194615","Julie Reed","http://pumpkinbellycards.blogspot.co.uk/2018/04/marisol-mermaid.html",null,1523541065],
["11194648","Pippa","https://pippapblog.wordpress.com/2018/04/12/why-did-the-chicken/",null,1523549419],
["11194668","Larissa","https://car-d-elicious.blogspot.nl/2018/04/as-you-like-it-challenge-128-your.html",null,1523553161],
["11194689","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/04/girlfriend-birthday-card.html",null,1523555926],
["11194694","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/to-my-wonderful-friend-aud-sentiments.html",null,1523556907],
["11194711","Carole J","https://cjcrafty.blogspot.co.uk/2018/04/gecko-galz-garden-bliss-2.html",null,1523560470],
["11194798","Craftartista","https://craftartista.blogspot.gr/2018/04/flower-doodles.html",null,1523577411],
["11194889","Anna","http://nonsolocard.blogspot.it/2018/04/confezioniamo-i-biscotti.html",null,1523606857],
["11194890","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com.au/2018/04/my-favourite-colour-combo-with-crafty.html",null,1523606954],
["11194906","Lilly","http://lillys-craftcorner.blogspot.com.es/2018/04/crafty-catz-challenge-use-favourite.html?m=1",null,1523611874],
["11194954","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/04/watercolored-pencils-and-iris.html?m=0",null,1523621403],
["11194956","Dorothy S","https://cardsbydorothy.blogspot.com/2018/04/dt-card-for-atg-at-qkr-stampede-gone.html",null,1523621476],
["11194957","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/04/biertje.html",null,1523621801],
["11194979","Ginny B","http://homespuncards.blogspot.com/2018/04/multi-colored-thinking-of-you.htmlhttp://homespuncards.blogspot.com/2018/04/multi-colored-thinking-of-you.html",null,0],
["11194980","Ginny B","http://homespuncards.blogspot.com/2018/04/multi-colored-thinking-of-you.html",null,1523624112],
["11195010","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/04/shore-do-love-you.html",null,1523627876],
["11195128","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/04/youre-in-my-thoughts-bugaboo-free-friday.html",null,1523643558],
["11195317","Zora","http://lofquisten.blogspot.se/2018/04/post-it-lapp-med-motiv.html",null,1523691575],
["11195336","Neha Gpyal","https://ngcreatives.blogspot.in/2018/04/baby-theme-money-envelopes.html",null,0],
["11195337","Neha Goyal","https://ngcreatives.blogspot.in/2018/04/baby-theme-money-envelopes.html",null,1523697028],
["11195360","Hazel","https://craftyhazelnut.blogspot.co.uk/2018/04/chnc-challenge-381.html",null,1523699053],
["11195362","Ma-Mi","http://rilcekinkljuncek.blogspot.si/2018/04/pomladno-cvetje.html",null,1523699266],
["11195404","Desire Fourie","http://desiref.blogspot.co.za/2018/04/use-your-voice-color-it-create-it-show.html",null,1523707055],
["11195417","Caroline\\\\\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/04/5-jaar.html",null,1523708470],
["11195431","coops","https://coopsclutteredcorner.blogspot.co.uk/2018/04/floral-heart.html",null,1523709664],
["11195446","lalkhamt@yahoo.co.uk","https://lalkygirl-my-creative-place.blogspot.co.uk/2018/04/you-brighten-my-day.html",null,1523710933],
["11195527","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/04/new-beginings.html",null,1523719307],
["11195535","Diny","https://dinys-scrapkaarten.blogspot.nl/2018/04/tipi-kaart-en-2-tipi-tentjes.html",null,1523719917],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}