document.write('\n');
document.write('\n');
var blenza_opt_namemax = 80;
var blenza_opt_linkmax = 152;
var bzloc_youfirst = "You're first";
var bzloc_younext = "You're next";
var bzloc_ifparticip = "If you are participating in";
var bzloc_toaddlink = "To add your entry to the list";
var bzloc_enter = "Enter";
var bzloc_next = "Next";
var bzloc_siteusing2a = "fill in the form below and press ";
var bzloc_siteusing2 = bzloc_siteusing2a + bzloc_enter + ".";
var bzloc_thumb2a = " to add your thumbnail.";
var bzloc_thumb2 = bzloc_siteusing2a + bzloc_next + bzloc_thumb2a;
var bzloc_siteusing3 = "click here and fill in the form that pops up";
var bzloc_yourname = "Your name";
var bzloc_yoururl = "Your URL";
var bzloc_comment = "Please leave a comment after linking... Thank you!";
var bzloc_checkname = "Please enter your name.";
var bzloc_namelength = "The length of your name must be less than or equal to";
var bzloc_checkurl = "Please enter your link URL.";
var bzloc_urllength = "The length of your URL must be less than or equal to";
var bzloc_urlprefix = "Link URL must begin with 'http://'";
var bzloc_sharedmeme = "Shared Meme - Click to Subscribe";
var bzloc_clicktodisp = "Click here to display the links for this post";
var bzloc_upgrademult = "You may upgrade to display more than one Linky at a time";
var bzloc_owner = "Blog Owner";
var bzloc_export = "If you wish to export this list to HTML, click here";
var bzloc_disablemsg = "Click here to disable this message";
var bzloc_whatthis = "What is this?";
var bzloc_expiry = "Linky Widget expiration";
var bzloc_winner = "Winning entry";
var bzloc_caching = "Caching system in use... links may take a minute to post";
var bzloc_thumbnext = "Click here to add your thumbnail if the pop-up does not appear.";
var bzloc_cktool = "Click here for Mister Linky's name/URL cookie removal tool.";
var bzloc_nopopwin = "Unable to open the thumbnail popup window. Check your browser settings.";
var bzloc_maint = "Please read about the upcoming system maintenance";
var bzloc_bugcheck = "An internal error has occurred. Please report this at http://www.misterlinky.net/helpdesk/";
var bzloc_dashboard = "Dashboard";
var bzloc_clickdisp = "Click to display the links and settings for this widget";
var bzloc_policy = "Check to accept use/privacy policy (click to read)";
var bzloc_nopolicy = "You must accept the use/privacy policy to use this widget.\n\nClick the link below to read the policy and check the box to accept.\n\nThen press Enter again to add your link to the list.\n\nNOTE: If you like, you can click a button on the policy page\nto save a cookie and remember you've accepted the policy.";
blenza_ifr = null;
var blenza_newwin = 1;
function getIEVersion(){
var agent = navigator.userAgent;
var reg = /MSIE\s?(\d+)(?:\.(\d+))?/i;
var matches = agent.match(reg);
if (matches != null) {
return { major: matches[1], minor: matches[2] };
}
return { major: "-1", minor: "-1" };
}
var ie_version = getIEVersion();
var is_ie10 = ie_version.major == 10;
var is_ie9e = ie_version.major > 0 && ie_version.major <= 9;
if (!blenza_inited) {
var blenza_whoName = null;
var blenza_whoEmail = null;
var blenza_whoURL = null;
var blenza_user = null;
var blenza_xurl = null;
var blenza_showredx = true;
var blenza_color = null;
var blenza_thumbGetter = null;
var blenza_thumbExternal = null;
var blenza_thumbRoot = new Array();
var blenza_thumbApprove = null;
var blenza_border = "#000";
var blenza_gray = "#888";
var blenza_meme_unset = new Array();
var blenza_meme_id = new Array();
var blenza_meme_name = new Array();
var blenza_meme_text = new Array();
var blenza_meme_shared = new Array();
var blenza_nourl = new Array();
var blenza_hideurl = new Array();
var blenza_ord = 0;
var blenza_expiration = null;
var blenza_memelinks = true;
var blenza_winnerName = null;
var blenza_winnerUrl = null;
var blenza_bycol = 1;
var blenza_fliplinks = 0;
var blenza_alphasort = 0;
blenza_dynamic = false;
var metas = document.getElementsByTagName("meta");
for (var i = 0; i < metas.length; i++) {
if (metas[i].name == "blogger-template")
blenza_dynamic = metas[i].content == "dynamic";
}
}
var blenza_ntu = new Array();
function blenza_xhr()
{
if (window.XMLHttpRequest) return new XMLHttpRequest();
else if (window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP");
else return null;
}
function blenza_xml(text)
{
if (text.message != null) text = text.message;
var xml;
if (text.length >= 5 && text.substring(0, 5) == "request-error" + text + "";
return blenza_parse(xml);
}
function blenza_parse(xml)
{
var doc;
if (window.DOMParser) {
var p = new DOMParser();
doc = p.parseFromString(xml,"text/xml");
}
else {
doc = new ActiveXObject("Microsoft.XMLDOM");
doc.async = false;
doc.loadXML(xml);
}
return doc;
}
function blenza_send(url, data, postid, cb)
{
// hack: if it's IE9 or earlier, just do a get and be done with it
if (is_ie9e) {
var img = document.getElementById("status-" + postid);
if (img != null) {
var now = new Date().getTime();
img.src = url + "?" + data + "&iehack=true&ts=" + now;
}
cb(blenza_xml("success"));
return;
}
try {
var method = data ? "POST" : "GET";
var req = blenza_xhr();
req.open(method, url, true);
if ("withCredentials" in req) {
req.withCredentials = true;
}
if (method == "POST")
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");
req.onreadystatechange = function() {
if (req.readyState !== 4) return;
if (req.status != 200) {
cb(blenza_xml("Unexpected request status " + req.status));
}
else if (req.responseXML != null) {
cb(req.responseXML);
}
else {
cb(blenza_xml(req.responseText));
}
};
req.send(data);
}
catch (e) {
msg = e.message;
if (msg == null || msg.length == 0) msg = "Unknown error";
cb(blenza_xml(msg));
}
}
function blenza_getValue(ele, name)
{
if (ele == null) return null;
var elems = ele.getElementsByTagName(name);
if (elems == null) return null;
var one = elems.item(0);
if (one == null || one.firstChild == null) return null;
if (one.firstChild.data != null) return one.firstChild.data;
else return null;
}
function blenza_checkStatus(ele)
{
if (ele == null) {
alert("Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: could not check status");
return false;
}
var sts = blenza_getValue(ele, "status");
if (sts == "success")
return true;
var err = blenza_getValue(ele, "error");
if (sts == "request-error")
msg = "An error occurred while processing the request:\n" + err + "\nPlease try your request again later";
else if (sts == "internal-error")
msg = "Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: " + err;
else if (err == "Duplicate entry")
msg = "That entry has already been added to the list";
else
msg = "Error: " + err;
alert(msg);
return false;
}
function blenza_doInsert(form, xurl, postid, cb)
{
var data = "";
for (i = 0; i < form.elements.length; i++) {
var ele = form.elements[i];
var name = ele.name;
if (name.length < 3 || name.substring(0,3) != "ml_") continue;
if (data.length > 0) data += "&";
data += name.substring(3) + "=";
var val;
if (ele.type == "checkbox") {
if (ele.checked) val = ele.value;
else val = "";
}
else val = ele.value;
data += escape(val);
}
blenza_send(xurl + "/entry_api.php", data, postid, cb);
}
function blenza_switcheroo(off, on)
{
var ele1 = blenza_elem(off);
ele1.style.display = "none";
var ele2 = blenza_elem(on);
ele2.style.display = "block";
}
function blenza_setNextone(pi, name, url)
{
var nx = blenza_elem("nextone-" + pi);
if (nx != null) {
nx.innerHTML = '' + name + '';
}
}
function blenza_reThumb(a, pi)
{
var form = document.getElementById("blenza_" + pi);
if (form == null) {
alert("Cannot locate form, please report internal error to Mister Linky");
return false;
}
form.action = blenza_xurl + "/thumbwin.php";
var name;
if (form.ml_name) name = form.ml_name.value;
else name = form.name.value;
if (! blenza_checkName(name)) return false;
var url;
if (form.ml_url) url = form.ml_url.value;
else url = form.url.value;
if (! blenza_checkUrl(pi, url)) return false;
a.href = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + escape(name) + "&url=" + escape(url);
return true;
}
function blenza_policyCheck(id)
{
var chk = document.getElementById("policy" + id);
if (chk) chk.checked = true;
}
// new and improved!
function blenza_doEnter(form) // false on error
{
if (!form) return;
try {
var name = null;
if (form.ml_name && form.ml_name.value) name = form.ml_name.value;
var url = null;
if (form.ml_url && form.ml_url.value) url = form.ml_url.value;
var pi = form.ml_postid.value;
var xurl = form.ml_xurl.value;
if (! blenza_checkName(name)) return false;
if (pi == null || xurl == null) {
alert(bzloc_bugcheck);
return false;
}
if (!form.policy.checked) {
alert(bzloc_nopolicy);
return false;
}
if (! blenza_checkUrl(pi, url)) return false;
if (form.ml_src.value != "thumb") {
var cb = function(doc) {
if (! blenza_checkStatus(doc)) return;
blenza_setNextone(pi, name, url);
blenza_switcheroo("theform-" + pi, "theform2-" + pi);
}
blenza_doInsert(form, xurl, pi, cb);
}
else {
var popurl = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + name + "&url=" + escape(url);
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin == null) alert(bzloc_nopopwin);
}
}
catch (e) {
alert("Uncaught error: " + e.message + "\n" + e.stack);
}
return false;
}
function blenza_checkName(name)
{
if (name.length == 0) {
alert(bzloc_checkname);
return false;
}
if (name.length > blenza_opt_namemax) {
alert(bzloc_namelength + " " + blenza_opt_namemax);
return false;
}
return true;
}
function bz_starts(str, pre)
{ return (str.substring(0, pre.length) == pre); }
function blenza_checkUrl(pi, url)
{
if (blenza_nourl[pi] > 0) return true;
if (url.length == 0) {
alert(bzloc_checkurl);
return false;
}
if (url.length > blenza_opt_linkmax) {
alert(bzloc_urllength + " " + blenza_opt_linkmax);
return false;
}
if (!bz_starts(url, "http://") && !bz_starts(url, "https://")) {
alert(bzloc_urlprefix);
return false;
}
if (url == "http://www.") {
alert(bzloc_checkurl);
return false;
}
return true;
}
function blenza_elem(id)
{
return document.getElementById(id);
}
function blenza_display(xurl, owner, pi)
{
var popwin = window.open(xurl + "/display.php?owner=" + owner + "&postid=" + pi, "blenza_linkypop", "height=360,width=400,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null) {
return;
}
}
function blenza_getthumb(owner, pi, secret)
{
var popurl = blenza_thumbGetter + "getthumb.php?owner=" + owner + "&postid=" + pi + "&secret=" + secret + "&init=true";
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null)
setTimeout(function(){ blenza_getthumb2(popwin, popurl); }, 3000);
}
function blenza_getthumb2(popwin, popurl)
{
try {
if (popwin == null) return;
if (popwin.innerHeight != null) return;
}
catch (err) {
return;
}
}
function blenza_setwho(n, e, u)
{
blenza_whoName = n;
blenza_whoEmail = e;
blenza_whoURL = u;
}
function blenza_setuser(v)
{
blenza_user = v;
}
function blenza_setredx(v)
{
blenza_showredx = v;
}
function blenza_setxurl(v)
{
blenza_xurl = v;
}
function blenza_setcolor(v)
{
blenza_color = v;
}
function blenza_setthumbs(pi, g, e, r, a)
{
blenza_thumbGetter = g;
blenza_thumbExternal = e;
blenza_thumbRoot[pi] = r;
blenza_thumbApprove = (a > 0);
}
function blenza_setmeme(pi, id, name, text, shared)
{
blenza_meme_unset[pi] = false;
blenza_meme_id[pi] = id;
blenza_meme_name[pi] = name;
blenza_meme_text[pi] = text;
blenza_meme_shared[pi] = shared;
}
function blenza_unsetmeme(pi)
{
blenza_meme_unset[pi] = true;
blenza_meme_id[pi] = null;
blenza_meme_name[pi] = null;
blenza_meme_text[pi] = null;
blenza_meme_shared[pi] = null;
}
function blenza_setYourUrl(pi, nourl, hideurl)
{
blenza_nourl[pi] = nourl;
blenza_hideurl[pi] = hideurl;
}
function blenza_setExpires(str)
{
blenza_expiration = str;
}
function blenza_setMemelinks(v)
{
blenza_memelinks = v;
}
function blenza_setWinner(name, url)
{
blenza_winnerName = name;
blenza_winnerUrl = url;
}
function blenza_setFliplinks(n)
{
blenza_fliplinks = n;
}
function blenza_setAlphasort(n)
{
blenza_alphasort = n;
}
function blenza_setBycol(n)
{
blenza_bycol = n;
}
function blenza_dispExpires()
{
if (blenza_expiration == null) return;
document.write("
" + bzloc_expiry + ": " + blenza_expiration + ".
");
if (blenza_winnerName == null) return;
document.write("' + afterComment + spanCktool);
if (is_ie9e) document.write('
');
if ((src != "easy") && (src != "thumb")) {
document.write("
" + bzloc_caching);
}
document.write('');
blenza_linkies_fini(src, owner, pi, secret, cols, data);
}
function blenza_linkies(src, owner, pi, secret, cols, data)
{
if (pi == "^Preview") data = previewData;
blenza_linkies_wrap1();
blenza_linkies_list(src, owner, pi, secret, cols, data);
if ((src == 'comm') || (src == 'disp')) return;
if (src == 'side')
blenza_linkies_side(src, owner, pi, secret, cols, data, "magic")
else
blenza_linkies_box(src, owner, pi, secret, cols, data, "magic")
blenza_linkies_wrap2();
}
var blenza_inited = true;
try {
blenza_setwho("","","");
blenza_setuser("");
blenza_setxurl("//www.blenza.com:443/linkies");
blenza_setthumbs("30Apr2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzBhcHIyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("10 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("30Apr2019");
blenza_linkies("thumb","lozzy","30Apr2019","400836674",3,
[
// MzBhcHIyMDE5
["11340211","Hazel","https://craftyhazelnut.blogspot.com/2019/05/craftyhazelnuts-patterned-paper-may.html",null,1556696490],
["11340226","Granne","https://aavamaki.blogspot.com/2019/05/sheepski-designs-flower-power.html",null,1556698670],
["11340233","Anna","https://nonsolocard.blogspot.com/2019/05/pizzo-e-nastro.html",null,1556699628],
["11340251","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/05/dak-maj.html",null,1556703906],
["11340256","Jackie T","https://tinyrosecr.blogspot.com/2019/05/crafts-galore-encore-challenge-blog-may.html",null,1556704471],
["11340285","davinia ","https://ifindoubtbling.blogspot.com/2019/05/with-flick-of-mermaids-tail.html",null,1556705796],
["11340346","Craftartista: Mia","https://craftartista.blogspot.com/2019/05/spring-flowers.html",null,1556713288],
["11340353","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/05/le-nouveau-defi-de-lc.html",null,1556714371],
["11340354","Carol","https://carol-paperplay-carol.blogspot.com/2019/05/cogs-and-flowers-galore.html",null,1556714481],
["11340355","jenimc","https://jenicraftroom.blogspot.com/2019/05/purple-butterfly.html",null,1556714706],
["11340357","My Other World","https://scrapsdamaryv.blogspot.com/2019/05/girl-with-glasses-pennys-challenges-428.html",null,1556715171],
["11340379","My Other World","https://scrapsdamaryv.blogspot.com/2019/05/creative-with-stamps-38-bebe.html",null,1556716435],
["11340383","Hannapanna","https://hannapannabloggar.blogspot.com/2019/05/challenge-17-simply-magnolia.html",null,1556716500],
["11340417","Jasmina","https://handmadebyjasmina.blogspot.com/2019/05/fb-papirckarice-35-izziv-easel.html",null,1556718649],
["11340461","Karthikha","https://loveforkrafts.blogspot.com/2019/05/dragons-birthday-wishes.html",null,1556723839],
["11340479","Judy V","https://jvzcreations.blogspot.com/2019/05/cute-as-button-may-challenge.html",null,1556728367],
["11340487","Katie Tate","https://bothsidesofthepaper.blogspot.com/2019/05/more-than-one-score-at-scor-pal-59.html",null,1556729084],
["11340496","Granne","https://aavamaki.blogspot.com/2019/05/gelli-plate-tag.html",null,1556730363],
["11340499","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/05/with-love.html",null,1556731364],
["11340576","Carole J","https://cjcrafty.blogspot.com/2019/05/gecko-galz-dapper-flappers-and-giveaway.html",null,1556751302],
["11340593","Donna R","https://indianainking.blogspot.com/2019/05/12-months-of-christmas-challenge.html",null,1556758406],
["11340639","pinky","https://pinkysworldsuprojects.blogspot.com/2019/05/journal-page-with-broadway-birthday.html",null,1556788066],
["11340664","Sherry G","http://loosestitchesandunraveledthreads.blogspot.com/2019/04/morgans-artworld-challenge-05.html",null,1556796821],
["11340706","Julie T","https://juliescraftyspot.blogspot.com/2019/05/tess-summer-fun.html",null,1556807428],
["11340738","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/05/nuovo-challenge-di-forever-magnolia.html",null,1556814409],
["11340766","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/05/nuovo-challenge-simply-magnolia.html",null,1556815826],
["11340785","Craftartista: Mia","https://craftartista.blogspot.com/2019/05/gorgeous-faces.html",null,1556820012],
["11340795","Debra","https://debs-eternity-cards.blogspot.com/2019/05/love-you-to-stars-and-back.html",null,1556823015],
["11340838","Beebeebabs","http://beebeebabs2.blogspot.com/2019/05/birthday-card.html",null,1556833823],
["11340854","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2019/05/sneaky-peep-time-for-tea-designs.html",null,1556840198],
["11340872","Narelle","https://stampedadventures.blogspot.com/2019/05/the-crafters-cafe.html",null,1556847691],
["11340931","Tip Top","http://tiptoptoppers.blogspot.com/2019/04/dad.html",null,1556864051],
["11340945","Diane Ahlers","http://ahlers5.blogspot.com/2019/05/the-power-of-prayer.html",null,1556868001],
["11340957","Tip Top","http://tiptoptoppers.blogspot.com/2019/05/colour-crazy-challenge-week-17-tiddly.html",null,1556875597],
["11340959","Tip Top","http://tiptoptoppers.blogspot.com/2019/05/daring-card-makers-may-elemental.html",null,1556875745],
["11341052","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/05/vandaag-een-kaart-gemaakt-in-de-vorm.html",null,1556887031],
["11341091","Dawn S","https://cherrytreestudio.blogspot.com/2019/05/colour-crazy-craft-challenge-week-17.html",null,1556893489],
["11341128","AJ","https://ajcreativeenergy.blogspot.com/2019/05/computer-friends.html",null,1556901226],
["11341142","elizabeth h","http://warmharted.blogspot.com/2019/05/butterfly-friend.html",null,1556902428],
["11341210","Claudia Martins","https://1pandaideiascriativas.blogspot.com/2019/05/projeto-dt-crafts-galore-encore.html",null,1556914368],
["11341234","Rijacki: Tea Birthday","https://rijacki.blogspot.com/2019/05/koala-ty-day.html",null,1556922877],
["11341241","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/a-hug-in-mug-coffee-lovers-spring.html",null,1556923941],
["11341298","Monica C.","https://www.sunshinecreativity.com/2019/05/birthday-greetings.html",null,1556935519],
["11341304","Monica C.","https://www.sunshinecreativity.com/2019/05/road-trip.html",null,1556935854],
["11341351","Elena","https://creativele.blogspot.com/2019/05/happy-birthday-tag-for-leannsworld101.html",null,1556950764],
["11341357","Rijacki Ledum","https://rijacki.blogspot.com/2019/05/mermay-hello-coloured-pencil-die-cutting.html",null,1556953667],
["11341366","Jootje","https://jootjesscrapcards.blogspot.com/2019/05/birds.html",null,1556956389],
["11341371","nnalorac","https://somethinggonemissing.blogspot.com/2019/05/dis-digi-designs-challenge-anything-but.html",null,1556956962],
["11341377","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/05/a-con-grad-ulations-card.html",null,1556957751],
["11341380","Liz Cavill","https://crafty-lizc.blogspot.com/2019/05/rock-climbing.html",null,1556957792],
["11341384","Hazel","https://craftyhazelnut.blogspot.com/2019/05/chnc-challenge-436.html",null,1556958035],
["11341389","Claudia","http://knutselmeisjes.blogspot.com/2019/05/dag-oud-hallo-nieuw.html",null,1556959051],
["11341435","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/05/gemini-chibi-vip-bundle-scrappers.html",null,1556967452],
["11341438","Craftartista: Mia","https://craftartista.blogspot.com/2019/05/romantic-spring.html",null,1556967980],
["11341454","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2019/05/gdt-colour-crazy-challenge-with-tiddly.html",null,1556971048],
["11341478","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2019/05/crafty-catz-challenge-atg-with-little.html",null,1556973363],
["11341500","Granne","https://aavamaki.blogspot.com/2019/05/fabulous-dapper-flappers.html",null,1556976639],
["11341504","decorcraftdesign","https://decorcraftdesign.wordpress.com/2019/05/04/easy-handmade-coasters-gift-for-mothers-day/",null,1556977002],
["11341531","TRACEYMO","https://mowbraydesigns.blogspot.com/2019/05/your-scrapbook-place.html",null,1556980629],
["11341550","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/drink-coffee-spring-summer-coffee.html",null,1556985484],
["11341561","Chris","https://andheresoneimadeearlier.blogspot.com/2019/05/crafty-catz-challenge-460.html",null,1556986583],
["11341620","Gale K","https://galesstampingcorner.blogspot.com/2019/05/spring.html",null,1556999548],
["11341648","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/05/hi-there-card-using-conie-fong-penelope.html",null,1557007981],
["11341756","Sheryl Hare","https://marchharecards.blogspot.com/2019/05/shake-it-at-613-avenue-create.html",null,1557036228],
["11341774","Lisa :D","https://royalpumpkinart.blogspot.com/2019/05/mom-deserves-break.html",null,1557041911],
["11341795","monique","https://moniqueschattefor.blogspot.com/2019/05/beertje-happy-birthday.html",null,1557044632],
["11341806","jackie cornfield","https://getthejclook.blogspot.com/2019/05/anything-goes-optional-twist-shaker-card.html",null,1557046204],
["11341810","Jolanda","http://jolandasblogs.blogspot.com/2019/05/lets-craft-and-create.html",null,1557047751],
["11341844","Helen","https://helenscrafthaven.blogspot.com/2019/05/pile-it-on-challenge-beverages.html",null,1557055873],
["11341864","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/05/sketchuitdaging-bi-de-egel.html",null,1557059095],
["11341913","Maryann Scrapbooking","https://maryann-scrap.blogspot.com/2019/05/quelques-brins-porte-bonheur-pour-toi.html",null,1557065116],
["11341980","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/stop-and-smell-espresso-coffee-lovers.html",null,1557073495],
["11342119","elizabeth h","http://warmharted.blogspot.com/2019/05/thirsty-for-fun.html",null,1557087501],
["11342121","Teresa","http://redobsessioncards.blogspot.com/2019/05/spring-flowers-at-50.html?m=1",null,1557087529],
["11342127","elizabeth h","http://warmharted.blogspot.com/2019/05/water-colored-girl.html",null,1557088484],
["11342211","Rijacki Ledum","https://rijacki.blogspot.com/2019/05/blast-off.html",null,1557114611],
["11342227","Sue Kment","https://suesstampingstuff.blogspot.com/2019/05/my-scrap-chick-jukebox.html",null,1557121148],
["11342229","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/05/shades-of-purple.html",null,1557122013],
["11342251","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/05/nog-meer-babykaartjes.html",null,1557130141],
["11342263","Desire Fourie","https://desiref.blogspot.com/2019/05/a-little-birthday-design-team-project.html",null,1557133749],
["11342269","jenimc","https://jenicraftroom.blogspot.com/2019/05/daisy-c-and-s.htmll",null,1557134432],
["11342276","Sue T","https://suescraftycorner-sue.blogspot.com/2019/05/wings.html",null,1557137071],
["11342299","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/05/70th-birthday-card.html",null,1557145592],
["11342302","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/05/teddy-exploding-box-for-new-baby.html",null,1557146010],
["11342369","Dawn Frost","http://stamp-n-play.blogspot.com/2019/05/bugaboo-flower-teddy.html",null,1557155702],
["11342398","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/you-perk-me-up-coffee-lovers-spring.html",null,1557160855],
["11342420","Nicky","https://stiggyscrafts.blogspot.com/2019/05/white-on-white.html",null,1557164889],
["11342473","Angie's Creations","https://angiescreationsblog.blogspot.com/2019/05/fathers-day-card.html#links",null,1557173786],
["11342488","Karthikha","http://loveforkrafts.blogspot.com/2019/05/out-of-world-magic-slider.html",null,1557175532],
["11342489","Ellie","https://www.ellibellescorner.com/2019/05/life-is-beautiful.html",null,1557175544],
["11342504","AJ","https://ajcreativeenergy.blogspot.com/2019/05/pegasus-dreams.html",null,1557178030],
["11342521","Vannessa","http://saffiresstamping.blogspot.com/2019/05/scrappers-delights-new-release-chibi.html",null,1557180789],
["11342591","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/05/love-you-latte-cuppa-coffee.html",null,1557203724],
["11342622","Teresa","http://redobsessioncards.blogspot.com/2019/05/i-love-tea.html?m=1",null,1557212485],
["11342629","Teresa","http://redobsessioncards.blogspot.com/2019/05/love-to-dance.html?m=1",null,1557215122],
["11342659","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/05/path-of-positivity-challenge-admiration.html",null,1557222548],
["11342668","Teresa","http://redobsessioncards.blogspot.com/2019/05/at-seaside.html?m=1",null,1557224413],
["11342696","Craftartista","https://craftartista.blogspot.com/2019/05/old-shoes.html",null,1557228081],
["11342711","ingunn","https://ingunnsinekort.blogspot.com/2019/05/cas-sommerfugl-kort.html",null,1557230079],
["11342715","Dreja","https://drejasbastelwelt.blogspot.com/2019/05/zum-muttertag.html",null,1557231331],
["11342749","Rainey' Craft Room","https://raineyscraftroom.blogspot.com/2019/05/passion-for-promarkers-challenge-492.html?m=1",null,1557235798],
["11342776","Cinderella 1","https://cinderellasdreamcardsblog.blogspot.com/2019/05/klembord-met-notitie-blokje.html",null,1557239241],
["11342781","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/05/ring-christmas-bells.html",null,1557239942],
["11342794","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/05/miss-you-latte-coffee-lovers-spring.html",null,1557242652],
["11342848","Teresa","http://redobsessioncards.blogspot.com/2019/05/whatever-weather.html?m=1",null,1557247582],
["11342872","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/05/kaartjes-in-opdracht.html",null,1557251176],
["11342930","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/05/birthday-card-using-ching-chou-kuik.html",null,1557267993],
["11343010","Noelene Apap","https://noeleneapap.blogspot.com/2019/05/polynesian-princess.html",null,1557297610],
["11343022","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/05/personalised-wedding-card.html",null,1557301326],
["11343041","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/05/altered-art-clock-by-stretching-stamps.html",null,1557304901],
["11343057","Priyadarshini","https://simpleartcraft.wordpress.com/2019/05/08/mixed-media-board-and-card",null,1557308119],
["11343079","Saphron","https://www.lemonbiscuit.blog/crafts/pennys-paper-crafty-challenge-429/",null,1557313761],
["11343095","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/05/live-life-you-imagined.html",null,1557317285],
["11343116","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/05/nieuwe-woning.html",null,1557318877],
["11343179","Jasmina","https://handmadebyjasmina.blogspot.com/2019/05/gostja-v-craft-alnici-izziv-235.html",null,1557325055],
["11343203","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/05/happy-birthday-rachel.html",null,1557331458],
["11343264","Silke","https://kartenkram.blogspot.com/2019/05/baby-in-pot.html",null,1557343998],
["11343298","Bisse","https://vasemmalkadella.blogspot.com/2019/05/halauskortti.html",null,1557355349],
["11343301","Majalena","https://magdaandscraping.blogspot.com/2019/05/65-ihs-first-holly-communion-card.html",null,1557357400],
["11343349","Sheryl Hare","https://marchharecards.blogspot.com/2019/05/happy-10th-birthday-craft-challenge.html",null,1557388141],
["11343393","ScrappyHorses","https://scrappyhorses.blogspot.com/2019/05/hip-to-b-square.html",null,1557403045],
["11343395","Tanvi","https://tanvispaperfantasees.blogspot.com/2019/05/coffee-lovers-spring-summer-bloghop.html",null,1557403474],
["11343399","Shona Erlenborn","https://shonasstampingstage.blogspot.com/2019/05/take-time-to-relax.html",null,1557404450],
["11343405","Julie T","https://juliescraftyspot.blogspot.com/2019/05/zoe-and-charlie-digi-doodle-studios.html",null,1557404981],
["11343409","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/05/blog-hop-at-craft-challenge.html",null,1557405855],
["11343421","Renate ","https://dotjesparelsenjuweeltjes.blogspot.com/2019/05/forget-me-not.html",null,1557409464],
["11343442","Anna","https://nonsolocard.blogspot.com/2019/05/mega-explosion-box.html",null,1557415757],
["11343446","Birgit","https://cardsrfun.blogspot.com/2019/05/hugs-on-birthday.html",null,1557416499],
["11343451","Karthikha","https://loveforkrafts.blogspot.com/2019/05/puzzle-birthday-invites.html",null,1557417173],
["11343464","cheiro urgia","https://cheirourgia.blogspot.com/2019/05/rose-are-red.html",null,1557421982],
["11343554","Craftartista: Mia","https://craftartista.blogspot.com/2019/05/2nd-blogaversary-candy-mandala-free.html",null,1557448605],
["11343607","Cass","https://casscreatingnow.blogspot.com/2019/05/anoher-quote-page.html",null,1557461083],
["11343615","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/05/voor-mijn-vader.html",null,1557464950],
["11343663","Maria","https://maria-mood.blogspot.com/2019/05/pink.html",null,1557477065],
["11343673","Dawn S","https://cherrytreestudio.blogspot.com/2019/05/colour-crazy-challenge-week-18.html",null,1557480312],
["11343699","Sharon","https://frommycraftdesk.blogspot.com/2019/05/guest-designer-for-craft-stamper.html",null,1557487363],
["11343704","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/05/celebration-pearls-and-swirls.html",null,1557488816],
["11343737","Grietje's Kaartenhoekje","https://grietje78.blogspot.com/2019/05/opkikker.html",null,1557496136],
["11343887","Kym","https://kyms-crafty-cards.blogspot.com/2019/05/ching-chou-kuiks-digital-stamps.html",null,1557512384],
["11343918","Shamita","https://spiralcreativity.blogspot.com/2019/05/youre-my-kinda-weird.html",null,1557517952],
["11343953","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/05/wedding-cake-exploding-box.html",null,1557531506],
["11344053","Hazel","https://craftyhazelnut.blogspot.com/2019/05/chnc-challenge-437.html",null,1557565168],
["11344067","Made By Mandy","https://amandacruxton2.blogspot.com/2019/05/happy-anniversary.html",null,1557572119],
["11344086","Keen Crafter ","http://keencrafter.blogspot.com/2019/05/whimsy-stamps-may-digital-release-baby.html",null,1557576357],
["11344123","Keen Crafter","https://keencrafter.blogspot.com/2019/05/whimsy-stamps-may-digital-release.html",null,1557581764],
["11344160","Ellie","https://www.ellibellescorner.com/2019/05/allsorts-challenge-519-transport.html",null,1557584791],
["11344177","monique","https://moniqueschattefor.blogspot.com/2019/05/geisha.html",null,1557586278],
["11344183","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/05/sister-in-laws-birthday-card.html",null,1557586981],
["11344236","Majalena","http://magdaandscraping.blogspot.com/2019/05/66-pamiatka-pierwszej-komunii-swietej.html",null,1557595782],
["11344313","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2164970530219201/?type=3&theater",null,1557614625],
["11344351","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/05/hello-yellow.html",null,1557633265],
["11344431","Suze","https://craftysuze.blogspot.com/2019/05/monochromatic-yellow-and-feminine.html",null,1557648240],
["11344437","Hermien","https://handmadebyhermien.blogspot.com/2019/05/reminder-k.html",null,1557648680],
["11344453","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/05/moederdag.html",null,1557650281],
["11344457","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/05/moederdagkaartje.html",null,1557651255],
["11344500","Hazel L","http://hazel-hazelshappyhouse.blogspot.com/2019/05/iaas-ecology-environment-conservation.html",null,1557659009],
["11344522","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/05/voor-mijn-jarige-vader.html",null,1557661669],
["11344578","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/05/een-kaart-gemaakt-met-op-de-achtergrond.html",null,1557670302],
["11344588","decorcraftdesign","http://decorcraftdesign.com/2019/05/12/happy-mothers-day-flowers-in-watercolor-card/",null,1557671548],
["11344734","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/05/daughter-son-in-laws-anniversary-card.html",null,1557684675],
["11344834","Craftartista: Mia","https://craftartista.blogspot.com/2019/05/light.html",null,1557700827],
["11344840","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2019/05/may-progressive-freebie-scrappers.html",null,1557702231],
["11344852","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/05/happy-mothers-day.html",null,1557705530],
["11344891","Gloria Shirr","https://purpleglocreations.blogspot.com/2019/05/thinking-of-you-card-using-ctmh-mix-in.html",null,1557718817],
["11344920","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/05/gefeliciteerd.html",null,1557729656],
["11345002","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/05/a-fabulous-birthday-for-our-anything.html",null,1557747932],
["11345072","Jan Thompson","https://janlovetocraft.blogspot.com/2019/05/happy-birthday_13.html",null,1557767702],
["11345087","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/05/feeling-sketchy-metulj-v-barocnem-vrtu.html",null,1557770540],
["11345096","Silke","https://kartenkram.blogspot.com/2019/05/squeal.html",null,1557773409],
["11345139","Maia","http://hetvalkennest.blogspot.com/2019/05/vintage-enveloppen-tags-en-versierde.html",null,1557782377],
["11345145","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/05/wedding-guest-book.html",null,1557783332],
["11345216","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com/2019/05/may-flowers-at-crafty-gals-corner.html",null,1557818693],
["11345255","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/05/55-jaar-getrouwd.html",null,1557823995],
["11345383","Katie Tate","https://bothsidesofthepaper.blogspot.com/2019/05/the-hedgehog-hollow-hop-my-very-first.html",null,1557846405],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}