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("14Jun2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRqdW4yMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("8.5 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Jun2019");
blenza_linkies("thumb","lozzy","14Jun2019","991306468",3,
[
// MTRqdW4yMDE5
["11356519","nnalorac","https://somethinggonemissing.blogspot.com/2019/06/dis-digi-designs-challenge-include-sun.html",null,1560587673],
["11356534","Carole J","https://cjcrafty.blogspot.com/2019/06/gecko-galz-summertime-picnic.html",null,1560591643],
["11356553","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/06/reminder-do-all-kreatives-30.html",null,1560596009],
["11356601","Wies","https://wiescreablog.blogspot.com/2019/06/mannenkaart-gate-fold-cicle-card.html",null,1560603536],
["11356665","Maryann Scrapbooking","https://maryann-scrap.blogspot.com/2019/06/un-petit-mot-pour-te-dire.html",null,1560610849],
["11356716","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/06/sparkles-monthly-challenges-ch117-dt.html",null,1560616734],
["11356751","Hazel","https://craftyhazelnut.blogspot.com/2019/06/chnc-challenge-442.html",null,1560623396],
["11356752","cheiro urgia","https://cheirourgia.blogspot.com/2019/06/prickly-blooms.html",null,1560623641],
["11356753","Monica C.","https://www.sunshinecreativity.com/2019/06/a-stick-pin.html",null,1560623859],
["11356765","Monica C.","https://www.sunshinecreativity.com/2019/06/with-love.html",null,1560624679],
["11356771","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/06/anything-goes-at-creation-in-pink.html",null,1560625688],
["11356932","janja - finart","https://myfinart.blogspot.com/2019/06/steampaunk-owl.html",null,1560677240],
["11356961","Sarah N","https://papertreedotblog.wordpress.com/2019/06/16/you-are-a-queen-darling/",null,1560686349],
["11356971","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2019/06/june-progressive-freebie-scrappers.html",null,1560687811],
["11356972","Helen","https://helenscrafthaven.blogspot.com/2019/06/pile-it-on-challenge-transportation_16.html",null,1560688049],
["11357074","Cristina","https://rutscht.blogspot.com/2019/06/atc-25-de-52.html",null,1560705427],
["11357178","Rijacki Ledum","https://rijacki.blogspot.com/2019/06/flaming-good-day.html",null,1560720484],
["11357196","Gloria Shirr ","https://purpleglocreations.blogspot.com/2019/06/birthday-card-using-conie-fong-lavender.html",null,1560726198],
["11357223","Helene","http://lescreationsdhelene.blogspot.com/2019/06/une-carte_16.html",null,1560733436],
["11357273","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/06/hartelijk-gefeliciteerd.html",null,1560750139],
["11357319","decorcraftdesign","https://decorcraftdesign.com/2019/06/16/diy-coastal-ship-wheel-home-sign/",null,1560766212],
["11357345","Jackie T","https://tinyrosecr.blogspot.com/2019/06/bella-christmas-ornaments-merry.html",null,1560773885],
["11357429","Carole J","https://cjcrafty.blogspot.com/2019/06/vera-lane-studio-love-of-cat.html",null,1560783189],
["11357460","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/donut-worry-always-fun-challenge-115.html",null,1560793898],
["11357464","CarolG NZ","https://creationsnz.blogspot.com/2019/06/b-w-friend.html",null,1560796110],
["11357465","Ine (creaine)","http://creaine-cards.blogspot.com/2019/06/nieuwe-challenge-bij-crafty-friends.html",null,1560796294],
["11357478","Karthikha","https://loveforkrafts.blogspot.com/2019/06/happy-birthday-sweet-wishes.html",null,1560799914],
["11357492","Janes Journal","https://jane-janesjournal.blogspot.com/2019/06/a-touch-of-faerie-magic.html",null,1560801795],
["11357539","cheiro urgia","https://cheirourgia.blogspot.com/2019/06/jungle-holiday.html",null,1560813185],
["11357546","tina","https://tinas-cards.blogspot.com/2019/06/challenge-blog.html",null,1560814298],
["11357547","Craftartista: Mia","https://craftartista.blogspot.com/2019/06/be-happy-and-sweet-tea.html",null,1560814941],
["11357622","Natasa","https://najboljsezelje.blogspot.com/2019/06/papirnata-torta-za-rojstni-dan.html",null,1560843007],
["11357632","jenimc","https://jenicraftroom.blogspot.com/2019/06/whatever-road.html",null,1560846837],
["11357658","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/06/try-try-try-again.html",null,1560853585],
["11357703","monique","http://moniqueschattefor.blogspot.com/2019/06/happy-anniversary.html",null,1560864386],
["11357733","Emma R","https://emgoescardmaking.blogspot.com/2019/06/molly-in-green-pink.html",null,1560868483],
["11357739","Emma ","https://craftykid33.blogspot.com/2019/06/poppy-watercolor-card.html",null,1560871894],
["11357750","coops","https://coopsclutteredcorner.blogspot.com/2019/06/passion-for-promarkers-beautiful-borders.html",null,1560874446],
["11357764","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2230994743616779/?type=3&theater",null,1560879970],
["11357766","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/im-rainbow-bugaboo-new-release-tuesday.html",null,1560880099],
["11357789","Plony","https://plonysbloggie.blogspot.com/2019/06/candy-box.html",null,1560885575],
["11357870","Shell B","https://akstamping.blogspot.com/2019/06/meet-maude.htmlhtml",null,1560904098],
["11357918","Barbara Bruder","http://artandsoulcreations.blogspot.com/2019/06/time-for-paper-dolls.htmll",null,1560916317],
["11357943","Rosina","http://rosina-scrapcards.blogspot.com/2019/06/een-kaartje-met-een-knuffel.html",null,1560922758],
["11357969","Lilian B","https://lillyb46.blogspot.com/2019/06/woywdw_19.html",null,1560930663],
["11358038","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/06/youre-turtle-y-awesome.html",null,1560947476],
["11358129","My Other World","https://scrapsdamaryv.blogspot.com/2019/06/pennys-challenges-435.html",null,1560962591],
["11358217","Craftartista: Mia","https://craftartista.blogspot.com/2019/06/pretty-ladies.html",null,1560985857],
["11358218","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/happy-fathers-day-crafty-gals-corner-194.html",null,1560986331],
["11358264","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/06/friends.html",null,1561009927],
["11358292","AuntySue","https://auntysuescraftcavern.blogspot.com/2019/06/craft-challenge-518-summer.html",null,1561023022],
["11358305","Wendy Batchen","https://wenscreations.blogspot.com/2019/06/the-creative-crafters-challenge-15th.html",null,1561025342],
["11358349","meg","https://bitsandpiecec.blogspot.com/2019/06/poinsettia.html",null,1561029459],
["11358376","Sherry G","http://loosestitchesandunraveledthreads.blogspot.com/2019/06/ching-chou-kuik-inspiration_19.html",null,1561037537],
["11358399","Chris","https://andheresoneimadeearlier.blogspot.com/2019/06/feel-beautiful-today.html",null,1561044996],
["11358452","Janes Journal","https://jane-janesjournal.blogspot.com/2019/06/a-very-wet-june.html",null,1561050734],
["11358460","Sheryl Hare","https://marchharecards.blogspot.com/2019/06/summer-has-arrived-at-craft.html",null,1561053590],
["11358491","Karen @ MisplacedMojo.com","https://misplacedmojo.com/2019/06/17/color-throwdown-547/",null,0],
["11358492","Karen @ MisplacedMojo.com","https://misplacedmojo.com/2019/06/20/bouquet-of-thanks-for-a-friend/",null,1561062865],
["11358540","Junebug Creations","https://junebugcreations.wordpress.com/2019/06/20/around-the-corner-w-tropical-chic",null,1561074721],
["11358547","Nancy Edwards","https://pinkpanoply.blogspot.com/2019/06/sunflower-bouquet-power-poppy-and-copics.html",null,1561078720],
["11358579","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/06/4-projects-using-pattern-paper.html",null,1561090492],
["11358599","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2019/06/tgif-weekend-starts-here.html",null,1561098485],
["11358618","Nicky","https://stiggyscrafts.blogspot.com/2019/06/olivias-christmas-countdown.html",null,1561105624],
["11358620","basslady","https://bassladycreations.blogspot.com/2019/06/gepragtes-und-coloriertes-vintage.html?m=0",null,1561106129],
["11358627","myry","https://filsetpapiers.blogspot.com/2019/06/tunnel-card-tutorial.html",null,1561109853],
["11358629","myry","https://filsetpapiers.blogspot.com/2019/04/photobox-tutorial.html",null,1561110031],
["11358677","Monica","https://handmadecardswithlove.blogspot.com/2019/06/thank-you-to-special-teacher.html",null,0],
["11358678","Monica","https://handmadecardswithlove.blogspot.com/2019/06/smile.html",null,1561114427],
["11358679","Jasmina","https://handmadebyjasmina.blogspot.com/2019/06/birthday-gd-scrapping-4-fun.html",null,1561114618],
["11358743","decorcraftdesign","http://decorcraftdesign.com/2019/06/20/lighthouse-in-watercolor-hand-panting/",null,1561130006],
["11358751","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/you-fill-my-heart-crafty-catz-467.html",null,1561131945],
["11358755","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/always-here-for-you-bugaboo-free-friday.html",null,1561132692],
["11358759","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/if-you-obey-all-rules-colour-crazy.html",null,1561133239],
["11358788","Kym","https://kyms-crafty-cards.blogspot.com/2019/06/ching-chou-kuiks-digital-stamps_21.html",null,1561138826],
["11358828","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/06/summer-at-craft-challenge.html",null,1561148307],
["11358866","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/06/cancer-anime-vip-bundle-scrappers.html",null,1561163666],
["11358881","Rijacki Ledum","https://rijacki.blogspot.com/2019/06/dogwood.html",null,1561171766],
["11358948","jenimc","https://jenicraftroom.blogspot.com/2019/06/2-of-each.html",null,1561201812],
["11359012","Chandhini","https://thecreativetwins.blogspot.com/2019/06/fox-card-with-stencilled-background.html",null,1561212510],
["11359047","Lori Podolsky","https://loripodolsky.blogspot.com/2019/06/lilac-by-ching-chou-kuik.html",null,1561219658],
["11359084","Hazel","https://craftyhazelnut.blogspot.com/2019/06/chnc-challenge-443.html",null,1561228256],
["11359090","Manvi batra","https://www.instagram.com/p/Byp0iy5JFoN/?igshid=18xv1ux1wvie2",null,1561230591],
["11359092","Claudia","https://knutselmeisjes.blogspot.com/2019/06/happy-day.html",null,1561230984],
["11359095","jenimc","https://jenicraftroom.blogspot.com/2019/06/watercolour.html",null,1561231763],
["11359223","Rosina","http://rosina-scrapcards.blogspot.com/2019/06/hoera-jarig.html",null,1561267239],
["11359225","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/06/window-floating-card.html",null,1561267785],
["11359278","Kym","http://kyms-crafty-cards.blogspot.com/2019/06/big-birthday-wishes.html",null,1561282516],
["11359293","Hazel L","https://hazel-hazelshappyhouse.blogspot.com/2019/06/iaas-stars-andor-stripes.html",null,1561288568],
["11359387","Jen Leeflang","https://jenleeflang.blogspot.com/2019/06/the-outlawz-saturdays-scraps-card.html",null,1561304249],
["11359438","Vannessa","http://saffiresstamping.blogspot.com/2019/06/the-paper-shelter-challenge-388-stripes.html",null,1561318942],
["11359446","Jen Leeflang","http://jenleeflang.blogspot.com/2019/06/the-outlawz-thursdays-beach-babe.html",null,1561321099],
["11359449","Jen Leeflang","http://jenleeflang.blogspot.com/2019/06/bugaboo-stamps-recipe-challenge.html",null,1561321604],
["11359470","Julie O","https://muddypawsinkyfingers.blogspot.com/2019/06/youre-stinkin-cute-for-dies-r-us.html",null,1561324822],
["11359536","Chandhini","https://thecreativetwins.blogspot.com/2019/06/slider-card-surfing-penguins.html",null,1561349623],
["11359556","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/06/birthday-wishes.html",null,1561358319],
["11359569","Jane Tyrrell ","https://jane-janesjournal.blogspot.com/2019/06/a-guardian-angel.html?m=1",null,1561360693],
["11359586","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/06/75-jaar.html",null,1561366668],
["11359611","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/06/per-il-compleanno-di-mamma.html",null,1561371705],
["11359631","Larissa","https://car-d-elicious.blogspot.com/2019/06/merry-monday-polar-peek-boo-pals.html",null,1561379800],
["11359633","Larissa","https://car-d-elicious.blogspot.com/2019/06/as-you-like-it-challenge-summer-or.html",null,1561380218],
["11359639","Anna","https://nonsolocard.blogspot.com/2019/06/prima-comunione.html",null,1561381171],
["11359691","Teresa","http://redobsessioncards.blogspot.com/2019/06/birthday-flowers.html?m=1",null,1561389808],
["11359702","Shamita","https://spiralcreativity.blogspot.com/2019/0https://spiralcreativity.blogspot.com/2019/06/shutter-photo-card.html6/painter-pete.html",null,1561391247],
["11359709","Karthikha","http://loveforkrafts.blogspot.com/2019/06/home-decor-diy-flower-vase-from-coffee.html",null,1561393635],
["11359725","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/06/ondanks-de-hitte-heb-ik-vandaag-een.html",null,1561400757],
["11359738","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/its-definitely-time-always-fun.html",null,1561403434],
["11359841","Monica C.","https://www.sunshinecreativity.com/2019/06/nadia.html",null,1561426380],
["11359887","Dawn S","https://dawnscraftybits.blogspot.com/2019/06/new-dt-position-digi-choosday-whoop.html",null,1561446457],
["11359904","Craftartista","https://craftartista.blogspot.com/2019/06/coffee-anyone.html",null,1561451854],
["11359914","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2019/06/passion-for-promarker-challenge-499.html",null,1561453857],
["11359926","creativEle","https://creativele.blogspot.com/2019/06/friendship-card-with-friendly-walk-digi.html",null,0],
["11359940","Rituparna","https://theenticingcreation.blogspot.com/2019/06/mini-gift-bag.html",null,1561462459],
["11359949","Granne","https://aavamaki.blogspot.com/2019/06/summer-flowers.html",null,1561464248],
["11359955","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2243253929057527/?type=3&theater",null,1561465445],
["11359982","Plony","https://plonysbloggie.blogspot.com/2019/06/romantische-vintage.html",null,1561470994],
["11360006","Rijacki Ledum","https://rijacki.blogspot.com/2019/06/ballerina-ttcrd.html",null,1561474158],
["11360028","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/seasons-greetings-bugaboo-new-release.html",null,1561478878],
["11360097","Glittertastic","https://glittertastic.blogspot.com/2019/06/wedding-day.html",null,1561496696],
["11360105","Karen @ MisplacedMojo.com","https://misplacedmojo.com/2019/06/25/ice-cream-hugs/",null,1561497623],
["11360164","elizabeth h","http://warmharted.blogspot.com/2019/06/scribble-flowers.html",null,1561522561],
["11360189","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/06/simple-coloured-floral-card.html",null,1561528614],
["11360206","Lilian B","https://lillyb46.blogspot.com/2019/06/woywdw_26.html",null,1561531967],
["11360235","Sheryl Hare","https://marchharecards.blogspot.com/2019/06/hearnoevil-seenoevil-hootnoevil.html",null,1561539663],
["11360287","Craftartista","https://craftartista.blogspot.com/2019/06/find-your-happy.html",null,1561543254],
["11360341","Linda Mc Enery","http://lindamscreations.blogspot.com/2019/06/pennys-paper-crafty-challenge-436.html",null,1561549800],
["11360401","Shell B","https://akstamping.blogspot.com/2019/06/caffeinated-gnome.html",null,1561562848],
["11360432","Wies","https://wiescreablog.blogspot.com/2019/06/olifantenkaart.html",null,1561571993],
["11360482","Shona Hamill","http://handmadebyhamill.blogspot.com/2019/06/holly-ivy-christmas-challenge-52.html",null,1561588922],
["11360504","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/06/little-birdie-crafts-recycled-shaker.html",null,1561600582],
["11360518","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com/2019/06/sweet-potted-lavender-stripes-with-team.html",null,1561608215],
["11360534","Lisa :D","https://royalpumpkinart.blogspot.com/2019/06/anything-mixed-media-goes-new-challenge.html",null,1561615467],
["11360545","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/06/winter.html",null,1561621018],
["11360555","Sharon","https://frommycraftdesk.blogspot.com/2019/06/after-rain-storm.html",null,1561627917],
["11360560","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/06/kerstkaartje-week-26.html",null,1561628884],
["11360564","TracyM 6773 (3)","https://tracyscraftyadventures.blogspot.com/2019/06/elegant-potted-lavender.html",null,1561630387],
["11360571","Dishita","https://dishitanewlife.blogspot.com/2019/06/shadow-box.html",null,1561632896],
["11360572","Dishita","https://dishitanewlife.blogspot.com/2019/06/oldnew.html",null,1561633284],
["11360592","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/06/una-card-fiorita.html",null,1561639903],
["11360612","Dishita 2","https://dishitanewlife.blogspot.com/2019/06/oldnew.html",null,1561653050],
["11360621","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/youre-perfect-aud-sentiments-230.html",null,1561653699],
["11360650","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/06/feeling-sketchy-rumeno-cvetje.html",null,1561656052],
["11360658","Sheryl Hare","https://marchharecards.blogspot.com/2019/06/thank-you-craft-challenge.html",null,1561656973],
["11360697","Teresa","http://redobsessioncards.blogspot.com/2019/06/my-little-giraffe.html?m=1%u013A",null,1561666547],
["11360703","Teresa","http://redobsessioncards.blogspot.com/2019/06/lets-top-up-tan.html?m=1",null,1561667142],
["11360759","elizabeth h","http://warmharted.blogspot.com/2019/06/sweet-sailor-girl.html",null,1561695632],
["11360803","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/06/voor-tineke.html",null,1561713101],
["11360831","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2019/06/down-dog-yoga.html",null,1561721845],
["11360910","elizabeth h","http://warmharted.blogspot.com/2019/06/mermaids-are-real.html",null,1561737102],
["11360923","Helen Liu","https://stampfairy-helen.blogspot.com/2019/06/get-well-soon-stenciling-with-perfect.html",null,1561739349],
["11360935","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/happiness-comes-colour-crazy-challenge.html",null,1561740899],
["11360942","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/sending-you-joy-and-love-crafty-catz.html",null,1561742428],
["11360944","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/06/im-nuts-about-my-wife-bugaboo-free.html",null,1561742818],
["11360968","Clare","https://clarelloyd.blogspot.com/2019/06/summer-bees.html",null,1561750175],
["11360973","Rijacki: Movies","https://rijacki.blogspot.com/2019/06/movies.html",null,1561750850],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}