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("29Apr2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MjlhcHIyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("2 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("29Apr2018");
blenza_linkies("thumb","lozzy","29Apr2018","1209420763",3,
[
// MjlhcHIyMDE4
["11202767","CreaNancy","https://creanancy.blogspot.com/2018/05/elines-diertjes-dinsdag-3.html",null,1525163873],
["11202792","Kym","https://kyms-crafty-cards.blogspot.co.uk/2018/05/ching-chou-kuik-digital-stamps-may.html",null,1525168939],
["11202797","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/05/gardening-card.html",null,1525169619],
["11202798","Jackie T","https://tinyrosecr.blogspot.co.uk/2018/05/crafts-galore-encore-anything-goes.html",null,1525169684],
["11202842","Carla","https://carla-writes.blogspot.com/2018/05/spring-chick-2-card.html",null,1525179318],
["11202861","Pippa","https://pippapblog.wordpress.com/2018/05/01/ikes-fairy/",null,1525181095],
["11202864","Carla","https://carla-writes.blogspot.com/2018/05/daylily-mothers-day-card.html",null,1525181317],
["11202900","Cath","https://katykrunch.blogspot.co.uk/2018/05/happy-may-day.html",null,1525185663],
["11202925","yvonne krijgsman","https://yvonne1965shamina.blogspot.nl/2018/05/ik-heb-een-kerstkaart-gemaakt-van-een.html",null,1525189815],
["11202930","Karen","https://craftykarenj.blogspot.co.uk/2018/05/embossing-challenge.html",null,1525190344],
["11202933","tinyworks","http://tinyworks81.blogspot.it/2018/05/avventura-sul-blog-digi-choosday-guest.html",null,1525190740],
["11202949","Marja","http://marjaskaarten.blogspot.nl/2018/05/distress-oxide.html",null,1525194226],
["11202951","Caroline's Creaties","http://caroline-creaties.blogspot.nl/2018/05/three-of-kind-bij-2sistersontheblog.html",null,1525194449],
["11202972","Rijacki: Flamenco","http://rijacki.blogspot.ca/2018/05/flamenco-sheepski-designs.html",null,1525198000],
["11202983","Tracey","http://lalkygirl-my-creative-place.blogspot.co.uk/2018/05/fill-your-life-with-adventures.html",null,1525200358],
["11203008","Carole J","https://cjcrafty.blogspot.co.uk/2018/05/gecko-galz-asian-beauties.html",null,1525202295],
["11203013","Carole J","https://cjcrafty.blogspot.co.uk/2018/05/crafts-galore-encore-floral-corner.html",null,1525202649],
["11203079","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/05/craftyhazelnuts-patterned-paper-may.html",null,1525209337],
["11203085","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2018/05/time-for-tea-may-challenge-i-do-two.html",null,1525210328],
["11203131","Craftartista","https://craftartista.blogspot.gr/2018/05/dinner-together.html",null,1525220830],
["11203270","PaperPlotterLotta","http://paperplotterlottas-craftchaos.blogspot.de/2018/05/oddball-challenge-may-18.html",null,1525245688],
["11203275","Željka","https://creativemomanddaughter.blogspot.hr/2018/05/atsm-photo-inspiration-week.html",null,1525247004],
["11203276","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/05/sweet-little-girl.html",null,1525247038],
["11203293","lynsey mccord","https://lynseymccord.blogspot.com.au/2018/05/the-paper-nest-dolls-rainy-day-emma.html",null,1525247916],
["11203295","Jane Willis","http://onionsandpaper.blogspot.co.uk/2018/05/use-cd-at-back-to-basics.html",null,1525248093],
["11203297","Tina Föcking","https://paperplotterlottas-craftchaos.blogspot.de/2018/05/all-dressed-up-challenge-inspiration.html",null,1525248419],
["11203299","My Other World","http://scrapsdamaryv.blogspot.pt/2018/05/moms-day-caixa-para-colar-creative.html",null,1525248723],
["11203316","le idee di penelope ","https://ideedipenelope.blogspot.it/2018/05/una-card-per-una-pensione.html",null,1525251799],
["11203353","Bridie","http://bgpaynecrafts.blogspot.co.uk/2018/05/polkadoodles-skater-card.html",null,1525257118],
["11203357","Lovely Linda","https://lovelylindascraftcentral.blogspot.com.au/2018/05/wine-collection-congrats.html",null,1525257990],
["11203368","Julie P","https://julieprice3.wordpress.com/2018/05/02/love-is-in-the-air-5/",null,1525259505],
["11203369","Jane","https://mistybluescreations.blogspot.com/2018/05/stop-monkeying-around.html",null,1525259538],
["11203379","My Other World","http://scrapsdamaryv.blogspot.pt/2018/05/birthday-cake-porta-talheres-pennys.html",null,1525260127],
["11203414","Inga Betenshi","http://betenshi.blogspot.com.es/2018/05/love.html",null,1525263245],
["11203516","Helen","http://helenscrafthaven.blogspot.co.uk/2018/05/abc-christmas-challenge-j-k-are-for.html",null,1525272835],
["11203523","Zora","http://lofquisten.blogspot.se/2018/05/en-grund-flera-tillfallen.htmll",null,0],
["11203524","Zora","http://lofquisten.blogspot.se/2018/05/en-grund-flera-tillfallen.html",null,1525273745],
["11203534","Anesha","https://skippereva.blogspot.co.uk/2018/05/back-to-basic-and-beyond-challenge-2.html",null,1525274809],
["11203547","Plony","http://plonysbloggie.blogspot.nl/2018/05/hearts.html",null,1525275573],
["11203567","AJ","https://ajcreativeenergy.blogspot.com/2018/05/merry-in-monochromatic.html",null,1525278291],
["11203669","Kerri-Ann","http://www.mywhirlwindworld.co.uk/2018/05/crafts-galore-encore-may-2018-challenge.html?m=1",null,1525291505],
["11203672","Tip Top","http://tiptoptoppers.blogspot.co.uk/2018/05/retirement-part-1.html",null,1525292015],
["11203698","Donna T","http://lakefrontstampingcreations.blogspot.com/2018/04/the-house-that-stamps-built-photo.html",null,1525297832],
["11203699","Wendy Batchen","https://wenscreations.blogspot.co.uk/2018/05/jodie.html",null,1525298291],
["11203733","Christine Ingram","https://christineingram55.blogspot.co.uk/2018/05/sasayaki-glitter-new-release-day.html",null,1525313105],
["11203745","Meighan Wheller","https://meighanwheller.blogspot.com.au/2018/05/sg-retro.html",null,1525323400],
["11203763","Diny","http://dinys-scrapkaarten.blogspot.nl/2018/05/fijne-feestdagen.html",null,1525329088],
["11203769","Ans Gilbert","http://dekaartenvanonsmam.blogspot.nl/2018/05/merry-christmas.html",null,1525331397],
["11203790","Birgit","https://cardsrfun.blogspot.se/2018/05/happy-birthday.html",null,1525337479],
["11203792","Melanie Gee","https://melgeecrafts.com/2018/05/02/challenge-for-creative-moments-02-05-2018/",null,1525338024],
["11203793","Melanie Gee 1","https://melgeecrafts.com/2018/05/02/challenge-for-crafting-by-designs-02-05-2018/",null,1525338044],
["11203822","Beatriz","https://beascrapbooking.blogspot.com.es/2018/05/letra-decorada-reto-crafty-sentiments.html",null,1525345526],
["11203851","Michelle Lancaster","https://laughingducks2012.blogspot.co.uk/2018/05/pennys-paper-crafty-challenge-378.html",null,1525353724],
["11203853","NanaConnie","http://mygrammysattic.blogspot.com/2018/05/thanks-to-our-veterans.html",null,1525354211],
["11203861","yvonne krijgsman","https://yvonne1965shamina.blogspot.nl/2018/05/we-zijn-weer-gestart-met-een-nieuwe.html",null,1525355927],
["11203868","Željka","https://creativemomanddaughter.blogspot.hr/2018/05/new-polkadoodles-release-little-dude.html",null,1525357499],
["11203876","Jodi - Kaboo Designs","http://kaboodesigns.blogspot.com/2018/05/o-fish-ally-awesome.html",null,1525360673],
["11203902","AJ","https://ajcreativeenergy.blogspot.com/2018/05/friend-remember.html",null,1525372929],
["11203926","America","https://cardsbyamerica.blogspot.com/2018/05/best-wishes-city-skyline.html",null,1525377035],
["11203936","Sheryl Hare","http://marchharecards.blogspot.co.uk/2018/05/colour-challenge-at-craft.html",null,1525380517],
["11203939","jenimc","http://jenicraftroom.blogspot.co.uk/2018/05/get-well-flowers.html",null,1525380824],
["11204033","Kathyk","https://purpliciousprincessdiaries.blogspot.co.uk/2018/05/welcome-to-official-start-of-weekend.html",null,1525418652],
["11204042","Linda Mc Enery ","https://lindamscreations.blogspot.com.au/2018/05/polkadoodles-little-dudes-student.html",null,1525420604],
["11204046","Lilly","http://lillys-craftcorner.blogspot.co.uk/2018/05/crafty-catz-challenge-add-flowers.html",null,1525422332],
["11204122","Pam's Pearls","https://pamspearls4u.blogspot.com/2018/05/mothers-day-flower-for-you.html",null,1525433057],
["11204144","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/05/yes-im-still-playing-with-my-alcohol.html?m=0",null,1525437320],
["11204177","Jean","http://jeancrosby.blogspot.co.uk/2018/05/thank-you.html",null,1525440446],
["11204195","Mindy Baxter","https://www.mycreativescoop.com/pretty-pink-posh-sneak-peek-how-to-color-a-dalmatian-using-copic-markers/",null,1525443853],
["11204212","elizabeth h","http://warmharted.blogspot.com/2018/05/need-umbrella.html",null,1525447527],
["11204235","elizabeth h","http://warmharted.blogspot.com/2018/05/black-eyed-susans.html",null,1525449761],
["11204252","AJ","https://ajcreativeenergy.blogspot.com/2018/05/water-lily-thanks.html",null,1525453150],
["11204279","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/05/colour-crazy-challenge-blog-friday-4.html",null,1525458746],
["11204304","Claudia","http://knutselmeisjes.blogspot.be/2018/05/blog-post.html",null,1525466928],
["11204339","America","https://cardsbyamerica.blogspot.com/2018/05/a-golden-happily-ever-after.html",null,1525478091],
["11204376","lynsey mccord","https://lynseymccord.blogspot.com.au/2018/05/all-dressed-up-looking-gorgeous-this.html",null,1525497348],
["11204406","carol gill","https://crafty-stamper.blogspot.co.uk/2018/05/enforced-kitty-fun.html",null,1525503543],
["11204431","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/05/chnc-challenge-384.html",null,1525509615],
["11204519","Jane Willis","http://onionsandpaper.blogspot.co.uk/2018/05/sisterhood-of-snarky-stampers-challenge.html",null,1525526482],
["11204591","cheiro urgia","https://cheirourgia.blogspot.si/2018/05/welcome-baby.html",null,1525537827],
["11204723","Kraftyscot (Donna)","http://kraftyscot.blogspot.co.uk/2018/05/ribbons-and-pearls.html",null,1525573555],
["11204793","Marja","http://marjaskaarten.blogspot.nl/2018/05/schattig.html",null,1525595121],
["11204806","Ursula Uphof","https://ursulauphof.blogspot.co.za/2018/05/may-challenge-at-lets-craft-and-create.html",null,1525597007],
["11204811","Grietje's Kaartenhoekje","https://grietje78.blogspot.nl/2018/05/pocket-kaart-voor-kic.html",null,1525600414],
["11204819","carol gill","https://crafty-stamper.blogspot.co.uk/2018/05/cas-and-one-layer.html",null,1525602946],
["11204947","Valérie","http://lescrapdevava.blogspot.ch/2018/05/pile-it-on-142-sportshobbies.html",null,1525616178],
["11204948","Epie","https://cards-by-epie.blogspot.nl/2018/05/happy-birthday-mom.html",null,1525616298],
["11204953","Željka","https://creativemomanddaughter.blogspot.hr/2018/05/little-dudes-party.html",null,1525616831],
["11204995","Renate","https://renatekaarten.blogspot.nl/2018/05/forever-yours.html",null,1525620371],
["11205072","Tracey","http://lalkygirl-my-creative-place.blogspot.co.uk/2018/05/thank-you-card-for-in2craft-dt.html",null,1525631003],
["11205074","elizabeth h","http://warmharted.blogspot.com/2018/05/garden-girl.html",null,1525631573],
["11205104","Vannessa","http://saffiresstamping.blogspot.co.uk/2018/05/delicious-doodles-may-challenge-flowers.html",null,1525637729],
["11205114","sweetpea","https://sweetpea-janscraftyspot.blogspot.co.uk/2018/05/littlest-hoibo.html",null,1525640382],
["11205126","Craftartista","https://craftartista.blogspot.gr/2018/05/lets-take-bath.html",null,1525647662],
["11205213","Ans Gilbert","http://dekaartenvanonsmam.blogspot.nl/2018/05/happy-birthday.html",null,1525677248],
["11205250","Teresa","http://redobsessioncards.blogspot.co.uk/2018/05/my-little-pony.html",null,1525688213],
["11205253","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/05/fijne-verjaardag.html",null,1525688743],
["11205259","Pippa","https://pippapblog.wordpress.com/2018/05/07/limited-runs-challenge/",null,1525689636],
["11205308","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/05/and-still-another-mothers-day-card.html?m=0",null,1525697829],
["11205378","RoRa","http://roraaurelia.blogspot.co.id/2018/05/lil-patch-of-crafty-friends-challenge-81.html",null,1525706408],
["11205384","RoRa","http://roraaurelia.blogspot.co.id/2018/05/aurora-wings-challenge-66-mid-challenge.html",null,1525707585],
["11205417","Caroline's Creaties","http://caroline-creaties.blogspot.nl/2018/05/gastdesignerskaartje-bij-cheerful.html",null,1525712688],
["11205444","Tracey","https://lalkygirl-my-creative-place.blogspot.co.uk/2018/05/1-technique-2-looks.html",null,1525716079],
["11205445","yvonne krijgsman","https://yvonne1965shamina.blogspot.nl/2018/05/ik-heb-een-kaart-gemaakt-van-een-tuin.html",null,1525716818],
["11205609","Tee Hall","https://thealteredpaper.blogspot.com/2018/05/regal-birds-atcs-envelopes.html",null,1525739724],
["11205662","Judy Mckay","https://insearchofmycreativeside.blogspot.ca/2018/05/sew-much-fun.html",null,1525759972],
["11205685","Tanvi","https://tanvispaperfantasees.blogspot.com/2018/05/reverse-decoupage-mixed-media-altered.html",null,1525764943],
["11205697","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/05/ttcrd-may-july-mermaid-whimsy-stamps.html",null,1525769489],
["11205698","Cicci with the Pen","http://ciccividpennan.blogspot.com/2018/05/lacy-sunshine-and-water-in-blog-lily.html",null,1525769529],
["11205703","Pippa","https://pippapblog.wordpress.com/2018/05/07/favourite-colours-on-the-path-of-positivity/",null,1525772316],
["11205705","Rosina","http://rosina-scrapcards.blogspot.nl/2018/05/veel-liefs.html",null,1525772410],
["11205708","shellshearer","http://shellshearer.blogspot.co.uk/2018/05/garden-bonnet.html",null,1525774566],
["11205728","Helen H","https://helenscraftyshed.blogspot.co.uk/2018/05/cupcake-honey.html",null,1525779615],
["11205741","Margreet","https://margreets-scrapcards.blogspot.nl/2018/05/embrace-imperfection.html",null,1525781877],
["11205751","Tip Top","http://tiptoptoppers.blogspot.co.uk/2018/05/retirement-part-2.html",null,1525783506],
["11205768","le idee di penelope ","https://ideedipenelope.blogspot.it/2018/05/una-nuova-lollipop.html",null,1525786522],
["11205802","Steffi H.","https://www.flickr.com/photos/spinkymausi/41075764835/in/dateposted/",null,1525790329],
["11205835","Lesli","https://vintagescrapscanada.blogspot.ca/2018/05/more-mothers-day-cards-shocker-i-know.html",null,1525793209],
["11205860","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/05/cardz-4-guyz-ch-194.html",null,1525794833],
["11205973","Jan Thompson","http://janlovetocraft.blogspot.co.uk/2018/05/shed.html",null,1525803279],
["11206046","Cards by MI","https://kompis-kort-by-mi.blogspot.se/2018/05/photoinspiration-over-at-pfp.html",null,1525814349],
["11206124","Kraftyscot (Donna)","http://kraftyscot.blogspot.co.uk/2018/05/keira-freebie.html",null,1525824690],
["11206224","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/05/football-coach-thank-you-card.html",null,1525845416],
["11206226","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/05/auntie-birthday-card.html",null,1525845524],
["11206229","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/05/daughter-birthday-card.html",null,1525845670],
["11206230","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2018/05/calla-lily.html",null,1525845748],
["11206270","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/05/wedding-card-for-mum-dad.html",null,1525851861],
["11206499","Tina Föcking","https://paperplotterlottas-craftchaos.blogspot.de/2018/05/oddball-mothers-day-card-tutorial.html",null,1525875602],
["11206503","Mindy Baxter","https://www.mycreativescoop.com/simon-says-stamp-wednesday-challenge-for-the-boys/",null,1525875978],
["11206687","AJ","https://ajcreativeenergy.blogspot.com/2018/05/birdbrain-belated-birthday.html",null,1525891909],
["11206696","coops","https://coopsclutteredcorner.blogspot.co.uk/2018/05/passion-for-promarkers-photo-inspiration.html",null,1525894589],
["11206723","Suetarby","https://craftingwithloveandfairydust.blogspot.co.uk/2018/05/stamperia-lilac-box.html",null,1525900338],
["11206739","Teresa","http://redobsessioncards.blogspot.co.uk/2018/05/mum.html",null,1525902649],
["11206746","Craftartista","https://craftartista.blogspot.gr/2018/05/beautiful-fairy.html",null,1525903825],
["11206754","Sharon Hudson","https://craftyhugs.blogspot.co.uk/2018/05/totally-out-of-my-comfort-zone-lol.html?m=1",null,1525905518],
["11206893","Ans Gilbert","http://dekaartenvanonsmam.blogspot.nl/2018/05/wishes-for.html",null,1525938653],
["11206905","Teresa","https://redobsessioncards.blogspot.co.uk/2018/05/motherhood.html",null,1525942310],
["11206945","AUNTY SUE","https://auntysuescraftcavern.blogspot.co.uk/2018/05/time-for-tea-sneaky-peep.html",null,1525956720],
["11206966","Jolanda","https://jolandasblogs.blogspot.nl/2018/05/art-journal-deel-1.html",null,1525962341],
["11207021","Altered Fairy Tales","https://alteredfairytales.blogspot.com/2018/05/project-share-rain-song.html",null,1525969275],
["11207028","DebiB","http://thatmightlookgoodonacard.blogspot.com/2018/05/joyful-stars-close-to-my-heart-may-blog.html",null,1525971982],
["11207053","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/05/lemon-shortbread-challenge-tuesday-8.html",null,1525977347],
["11207054","Grietje's Kaartenhoekje 2","https://grietje78.blogspot.nl/2018/05/geregistreerd-partnerschap-kaartje.html",null,1525977980],
["11207090","AJ","https://ajcreativeenergy.blogspot.com/2018/05/panda-balloon.html",null,1525979797],
["11207128","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/05/sister-birthday-card.html",null,1525986382],
["11207183","Craftartista","https://craftartista.blogspot.gr/2018/05/a-little-help-please.html",null,1525996780],
["11207320","Caroline's Creaties","http://caroline-creaties.blogspot.nl/2018/05/mijn-vader-is-80-jaar.html",null,1526030604],
["11207324","Neha Goyal","https://www.ngcreatives.com/2018/05/how-to-make-shadow-box-frame.html",null,1526030956],
["11207375","Dorothy S","http://cardsbydorothy.blogspot.com/2018/05/dt-card-for-qkr-stampede-challenge-295.html",null,1526038908],
["11207397","America","https://cardsbyamerica.blogspot.com/2018/05/congratulations-graduate.html",null,1526041943],
["11207589","Wies*","https://wiescreablog.blogspot.nl/2018/05/een-dag-tegelijk-one-day-at-time.html",null,1526064851],
["11207618","Tracey","http://lalkygirl-my-creative-place.blogspot.co.uk/2018/05/a-nautical-set-for-in2craft.html",null,1526068140],
["11207646","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/05/rsvp.html",null,1526076145],
["11207680","AJ","https://ajcreativeenergy.blogspot.com/2018/05/kates-halloween.html",null,1526085374],
["11207686","AnnChuangCrafts","https://anncard.blogspot.tw/2018/05/love.html",null,1526089993],
["11207695","Meeta Bhalotia ","http://thequillmillcrafts.blogspot.in/2018/05/18th-birthday-album.html",null,1526094771],
["11207739","Hazel","https://craftyhazelnut.blogspot.co.uk/2018/05/chnc-challenge-385.html",null,1526113234],
["11207768","Majda","http://majdinustvarjalninemir.blogspot.si/2018/05/tridelna-voscilnica-s-knjiznim-kazalom.html",null,1526122511],
["11207817","Carla","https://carla-writes.blogspot.com/2018/05/blooming-garden-dex-card.html",null,1526129795],
["11207828","Dorothy S","https://cardsbydorothy.blogspot.com/2018/05/birds-and-bow.html",null,1526131500],
["11207851","Cicci With The Pen","https://ciccividpennan.blogspot.com/2018/05/lacy-sunshine-lily-moon.html",null,1526136586],
["11207863","Ellie","http://livelaughstamp.blogspot.com/2018/05/pink-magnolia.html",null,1526138389],
["11208040","Wendy Batchen","https://wenscreations.blogspot.co.uk/2018/05/scrappers-delights-new-release.html",null,1526200199],
["11208045","Wendy Batchen","https://wenscreations.blogspot.co.uk/2018/05/scrappers-delights-special-deals.html",null,1526200618],
["11208049","Teresa","https://redobsessioncards.blogspot.co.uk/2018/05/the-fox.html",null,1526202349],
["11208196","Tracey","http://lalkygirl-my-creative-place.blogspot.co.uk/2018/05/lighthouse-card.html",null,1526231057],
["11208204","Caroline's Creaties","https://caroline-creaties.blogspot.nl/2018/05/pocketcard.html",null,1526232012],
["11208334","Rijacki: Dreams","https://rijacki.blogspot.com/2018/05/dreams.html",null,1526275969],
["11208358","Ans Gilbert","http://dekaartenvanonsmam.blogspot.nl/2018/05/happiness-is.html",null,1526279411],
["11208362","Nicolette","http://nicoletteskaarten.blogspot.co.uk/2018/05/voor-mijn-vader.html",null,1526281317],
["11208389","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/05/een-zoon.html",null,1526285727],
["11208408","Sue T","https://suescraftycorner-sue.blogspot.co.uk/2018/05/in-pink.html",null,1526291150],
["11208480","Mindy Baxter","https://www.mycreativescoop.com/my-creative-scoop-monthly-coloring-class-featuring-whimsy-stamps/",null,1526306200],
["11208532","Ma-Mi","http://rilcekinkljuncek.blogspot.si/2018/05/dnevnik-cas-si-je-treba-vzeti.html",null,1526313306],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}