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("14Aug2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRhdWcyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("1.5 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Aug2018");
blenza_linkies("thumb","lozzy","14Aug2018","805926030",3,
[
// MTRhdWcyMDE4
["11243393","Jolanda","https://jolandasblogs.blogspot.com/2018/08/reminder-spotlight.html",null,1534324958],
["11243398","Rutscht","http://rutscht.blogspot.com/2018/08/darling-youre-amazing.html",null,1534325902],
["11243408","Michelle","https://michelledees.blogspot.com/2018/08/zeemeermin-mermaid.html",null,1534328081],
["11243504","Jane Willis","http://onionsandpaper.blogspot.com/2018/08/from-east.html",null,1534344172],
["11243516","MARLENE","https://cardsmadebymarlene.blogspot.com/2018/08/anything-gies-in-pink-at-creations-in.html",null,1534345108],
["11243525","Julie T","https://juliescraftyspot.blogspot.com/2018/08/christmas-card_15.html",null,1534346336],
["11243569","Claudia","http://knutselmeisjes.blogspot.com/2018/08/louis.html",null,1534352458],
["11243575","elizabeth h","http://warmharted.blogspot.com/2018/08/swinging-in-my-hammock.html",null,1534353119],
["11243586","Donna R","https://indianainking.blogspot.com/2018/08/august-dueling-darlings.html",null,1534353924],
["11243641","Beebeebabs","http://beebeebabs2.blogspot.com/2018/08/birthday-card_15.html",null,1534360510],
["11243661","Larissa","https://car-d-elicious.blogspot.com/2018/08/dis-digi-designs-challenge-two-or-more.html",null,1534363746],
["11243664","Heidi Weaver","https://heidistampinalong.blogspot.com/2018/08/wwc183-gails-masculine-anything-goes.html",null,1534364228],
["11243690","Donna Flowers","https://duncanstreetdesigns.blogspot.com/2018/08/pennys-paper-crafty-challenges-design.html",null,1534367902],
["11243692","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/thanks-dad-creative-with-stamps-29.html",null,1534369430],
["11243693","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/joy-to-world-merry-christmas-challenge.html",null,1534369513],
["11243694","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/you-are-simply-best-creations-in-pink-1.html",null,1534369574],
["11243696","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/youre-jawsome-always-happy-birthday-8.html",null,1534369635],
["11243698","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/happy-birthday-sunny-day-crafting.html",null,1534369690],
["11243718","Sharon Hudson","https://craftyhugs.blogspot.com/2018/08/vibrant-red-hydrangea-flower.html?m=1",null,1534378930],
["11243752","Priya Satish","https://creativemotif.blogspot.com/2018/08/dare-to-fly.html",null,1534393122],
["11243758","sue","https://sue-hickey.blogspot.com/2018/08/creations-in-pink.html",null,1534395938],
["11243773","Judy McKay","https://insearchofmycreativeside.blogspot.com/2018/08/happy-birthday-little-lady.html",null,1534401187],
["11243783","Birgit","https://cardsrfun.blogspot.com/2018/08/seasons-greetings.html",null,1534404265],
["11243788","Anna","http://nonsolocard.blogspot.com/2018/08/una-fresca-estate.html",null,1534408452],
["11243820","Desire Fourie","http://desiref.blogspot.com/2018/08/a-little-reminder-project-august-2018.html",null,1534425015],
["11243828","Jodi - Kaboo Designs","http://kaboodesigns.blogspot.com/2018/08/country-love.html",null,1534426104],
["11243870","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/08/wreath-christmas-card.html",null,1534434927],
["11243897","Granne","http://aavamaki.blogspot.com/2018/08/elf-in-poppy-field.html",null,1534438827],
["11243915","Vannessa","http://saffiresstamping.blogspot.com/2018/08/little-miss-muffet-stamps-inspiration_16.html",null,1534444050],
["11243964","Becca Yahrling","https://www.flickr.com/photos/133625822@N05/44011143082/in/dateposted-public/",null,0],
["11243965","Becca Yahrling","https://www.flickr.com/photos/133625822@N05/30211693478/in/dateposted-public/",null,1534462726],
["11244056","Janes Journal","http://abitmoretimetocraft.blogspot.com/2018/08/a-bit-more-time-to-craft-challenge-74.html",null,0],
["11244058","Janes Journal","https://jane-janesjournal.blogspot.com/2018/08/finding-joy-in-little-things.html",null,1534492885],
["11244069","Suzi Mac","http://wwwsuzies.blogspot.com/2018/08/polkadoodles-challenge-33-anything-goes.html",null,1534495654],
["11244070","Maxine D ","http://kiwimeskreations.blogspot.com/2018/08/an-impossible-rose.html",null,1534495757],
["11244076","jenimc","http://jenicraftroom.blogspot.com/2018/08/judo.html",null,1534497527],
["11244086","jenimc","http://jenicraftroom.blogspot.com/2018/08/daisy-z-card.html",null,0],
["11244097","jenimc","http://jenicraftroom.blogspot.com/2018/08/o-christmas-tree.html",null,1534501627],
["11244117","Sharon","https://frommycraftdesk.blogspot.com/2018/08/queen-of-rainbow-hearts.html",null,1534504809],
["11244156","Becca Yahrling","https://www.flickr.com/photos/133625822@N05/44042078142/in/dateposted-public/",null,1534512132],
["11244172","Cathymac","http://goldeninkspirations.blogspot.com/2018/08/looking-back-at-odbd-august-2018-release.html",null,1534515762],
["11244173","Donna R","https://indianainking.blogspot.com/2018/08/commencing-happy-dance.html",null,1534515799],
["11244215","Julie Reed","http://pumpkinbellycards.blogspot.com/2018/08/tags-bags.html",null,1534522753],
["11244234","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/thank-you-aud-sentiments-210.html",null,1534528439],
["11244239","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/the-path-to-friends-house-colour-crazy.html",null,1534529221],
["11244243","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/dino-mite-bugaboo-free-friday.html",null,1534529748],
["11244262","Carole J","https://cjcrafty.blogspot.com/2018/08/vera-lane-studio-little-houses-atcoin.html",null,1534532280],
["11244266","Carla","http://carla-writes.blogspot.com/2018/08/img-747-lil-rosie-pumpkin-spice-latte.html",null,1534533196],
["11244271","Kym","http://kyms-crafty-cards.blogspot.com/2018/08/ching-chou-kuiks-digital-stamps_17.html",null,1534533995],
["11244320","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/08/cute-girly-card.html",null,1534551142],
["11244330","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/08/where-ever-life-plants-you.html",null,1534556109],
["11244337","Carla","http://carla-writes.blogspot.com/2018/08/steampunk-valentine-img-900-card.html",null,1534559170],
["11244474","Jolanda","https://jolandasblogs.blogspot.com/2018/08/reminder-challenge-140-lcc.html",null,1534605634],
["11244479","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/08/sparkles-monthly-challenges-ch-107-dt.html",null,1534606087],
["11244487","Victoria R","http://victorias-crafting-creations.blogspot.com/2018/08/caab-social-susan-phone-card.html?m=1",null,1534607232],
["11244518","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2018/08/scrapy-land-challenge-96.html",null,0],
["11244522","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/08/huisje-in-de-sneeuw.html",null,1534612599],
["11244528","Chandhini","https://thecreativetwins.blogspot.com/2018/08/floral-shaker-card.html",null,1534613130],
["11244537","Becca Yahrling","https://www.flickr.com/photos/133625822@N05/29177346607/in/dateposted-public/",null,1534614701],
["11244553","Lilly","http://lillys-craftcorner.blogspot.com/2018/08/do-more-of-what-makes-you-happy.html",null,1534616881],
["11244580","cheiro urgia","https://cheirourgia.blogspot.com/2018/08/bling-bling.html",null,1534623067],
["11244601","Lou Sims","https://lulucardmaking.blogspot.com/2018/08/tonic-studios-milestone-dies-fabulous.html",null,1534629806],
["11244626","Pam Sebring","http://psebring.blogspot.com/2018/08/enjoy.html",null,1534638637],
["11244721","Suetarby","https://craftingwithloveandfairydust.blogspot.com/2018/08/mirror-mirror-on-wall.html",null,1534666153],
["11244725","Suetarby","https://craftingwithloveandfairydust.blogspot.com/2018/08/mother-nature-canvas.html",null,1534666423],
["11244755","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/08/40-jaar.html",null,1534674347],
["11244794","Pippa","https://pippapblog.wordpress.com/2018/08/19/a-very-english-summer/",null,1534681419],
["11244866","AnnChuangCrafts","https://anncard.blogspot.com/2018/08/believe.html",null,1534694142],
["11244881","elizabeth h","http://warmharted.blogspot.com/2018/08/elephant-note.html",null,1534697572],
["11244922","Chriss","https://chrissandlou.blogspot.com/2018/08/inas-40.html",null,1534701882],
["11244933","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2018/08/wedding-boxkeepsake.html",null,1534705425],
["11244946","Rijacki Ledum","https://rijacki.blogspot.com/2018/08/haunted-house.html",null,1534709878],
["11244970","Craftartista","https://craftartista.blogspot.com/2018/08/fashion-and-style.html",null,1534720319],
["11245011","Marciava Warrell","http://theuniquescrapper.blogspot.com/2018/08/new-disney-layout.html",null,1534733329],
["11245015","Judy McKay","http://insearchofmycreativeside.blogspot.com/2018/08/sending-you-hugs.html",null,1534734747],
["11245063","Ans Gilbert","http://dekaartenvanonsmam.blogspot.com/2018/08/happy-birthday.html",null,1534749561],
["11245068","Majda","https://majdinustvarjalninemir.blogspot.com/2018/08/cestitka-za-dvojino.html",null,1534750579],
["11245071","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/08/marja-is-jarig.html",null,1534751633],
["11245082","basslady","https://bassladycreations.blogspot.com/2018/08/karte-fur-einen-abc-schutzen.html?m=1",null,1534755716],
["11245085","Pippa","https://https://pippapblog.wordpress.com/2018/08/20/rainbows-and-wishes//2018/08/19/a-very-english-summer/",null,0],
["11245086","Pippa","https://pippapblog.wordpress.com/2018/08/20/rainbows-and-wishes/",null,1534756922],
["11245088","Sue -Crafting with love","https://craftingwithloveandfairydust.blogspot.com/2018/08/dreaming-of-sea.html",null,1534757668],
["11245189","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/08/what-ive-been-making-with-we-r-memory.html?m=0",null,1534775903],
["11245204","Carole J","https://cjcrafty.blogspot.com/2018/08/vera-lane-studio-dillys-days.html",null,1534777581],
["11245227","Pam Sebring","http://psebring.blogspot.com/2018/08/birthday-wagon.html",null,1534782884],
["11245319","Ramya","http://shilpakari.blogspot.com/2018/08/paper-cup-cake-gift-box.html",null,1534804452],
["11245353","Becca Yahrling","https://www.flickr.com/photos/133625822@N05/43445401424/in/dateposted-public/",null,1534812929],
["11245358","Lisa :D","https://royalpumpkinart.blogspot.com/2018/08/for-love-of-unity-day-one.html",null,1534813995],
["11245369","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/im-singing-your-praises-always-fun.html",null,1534816734],
["11245370","Aileen Australia","https://colourandsparkle.blogspot.com/2018/08/reminder-for-flower-challenge-23-one.html",null,1534816863],
["11245376","Norma","http://creatingandsharingit.blogspot.com/2018/08/polkadoodles-anything-goes-challenge_17.html",null,1534822969],
["11245388","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/08/blog-post_18.html",null,1534830048],
["11245389","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/08/sympathy-card.html",null,1534830108],
["11245394","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2018/08/especially-4-u.html",null,1534831132],
["11245416","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/08/birthday-wishes.html",null,1534837650],
["11245500","monique","https://moniqueschattefor.blogspot.com/2018/08/zwanger-3d-en-kleuren.html",null,1534860875],
["11245505","Rosina","http://rosina-scrapcards.blogspot.com/2018/08/liefs.html",null,1534861438],
["11245511","Marja","http://marjaskaarten.blogspot.com/2018/08/roze-en-paars.html",null,1534862081],
["11245532","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/08/a-shabby-chic-creation.html",null,1534864003],
["11245569","Cara","http://purpleprincessprettythings.blogspot.com/2018/08/digi-choosday-dt-post-week-34.html?m=1",null,1534872965],
["11245578","Paper Profusion","https://paperprofusion.blogspot.com/2018/08/summer-memories.html",null,1534874967],
["11245583","Lisa Bird","https://craftycard-designs.co.uk/rudolph-and-friends-merry-christmas/",null,1534878011],
["11245666","Lisa :D","https://royalpumpkinart.blogspot.com/2018/08/for-love-of-unity-day-two-its-my-party.html",null,1534903161],
["11245697","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/08/i-love-you-latte.html",null,1534911169],
["11245700","Lisa :D","https://royalpumpkinart.blogspot.com/2018/08/for-love-of-unity-day-three-be-free.html",null,1534912307],
["11245720","Jootje","http://jootjesscrapcards.blogspot.com/2018/08/hbd-to-me.html",null,1534917641],
["11245758","Aimeslee","https://paper-paisleys.blogspot.com/2018/08/let-it-snow.html",null,1534927723],
["11245795","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/08/more-booklets.html",null,1534935675],
["11245799","Altered Fairy Tales","https://alteredfairytales.blogspot.com/2018/08/design-team-project-share-for-crafty.html",null,1534936873],
["11245948","Beatriz","https://beascrapbooking.blogspot.com/2018/08/reto-crafty-sentiments-designs-back-to.html",null,1534949610],
["11245988","Larissa","https://car-d-elicious.blogspot.com/2018/08/gerda-steiner-designs-my-first-memory.html",null,1534955293],
["11245990","Pippa","https://pippapblog.wordpress.com/2018/08/22/things-you-can-do-with-a-white-flannel-part-1/",null,1534955637],
["11246023","Pippa","https://pippapblog.wordpress.com/2018/08/22/horsing-around/",null,1534961740],
["11246027","Kym","https://kyms-crafty-cards.blogspot.com/2018/08/two-good-luck-cards.html",null,1534962708],
["11246034","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/happy-birthday-pause-dream-enjoy-34.html",null,1534965012],
["11246035","Rijacki: Framed","https://rijacki.blogspot.com/2018/08/framed.html",null,1534965271],
["11246038","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/soak-up-sun-craftaholics-r-us-34.html",null,1534966132],
["11246046","elizabeth h","http://warmharted.blogspot.com/2018/08/summer-girl.html",null,1534967854],
["11246065","Cass","https://casscreatingnow.blogspot.com/2018/08/southern-girls-use-metal-23-aug-2018.html",null,1534974701],
["11246097","Mary Marsh","https://thecharmedlife-maryr917.blogspot.com/2018/08/october-birthday.html",null,1534991845],
["11246146","Marja","http://marjaskaarten.blogspot.com/2018/08/merry-christmas.html",null,1535021272],
["11246148","Meighan Wheller","https://meighanwheller.blogspot.com/2018/08/sg-metal.html",null,1535022377],
["11246161","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/08/my-nieces-birthday-card.html",null,1535026988],
["11246163","Julie Reed","http://pumpkinbellycards.blogspot.com/2018/08/remembrance.html",null,1535028340],
["11246165","Debra Shaw","https://debs-eternity-cards.blogspot.com/2018/08/we-have-dragons-hummingbirds.html",null,1535028564],
["11246195","Greeshma","https://gpexplosionbox.blogspot.com/2018/08/stamp-fold-card.html",null,1535041613],
["11246263","Rijacki Ledum","https://rijacki.blogspot.com/2018/08/fairy-purse.html",null,1535067584],
["11246266","Donna in Florida","https://duncanstreetdesigns.blogspot.com/2018/08/creative-knockouts-design-team-project.html",null,1535068271],
["11246275","Pam Sebring","http://psebring.blogspot.com/2018/08/whats-up.html",null,1535074891],
["11246388","Tina","https://paperplotterlottas-craftchaos.blogspot.com/2018/08/all-dressed-up-new-release-with-sommer.html",null,1535110335],
["11246419","Kym","https://kyms-crafty-cards.blogspot.com/2018/08/ching-chou-kuiks-digital-stamps_24.html",null,1535115715],
["11246428","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2018/08/t4t-inspiration-off-to-6th-form.html",null,1535117027],
["11246451","Mindy Baxter","https://www.mycreativescoop.com/copic-marker-coloring-video-for-my-favorite-things/",null,1535119867],
["11246523","Becca Yahrling","https://www.flickr.com/photos/133625822@N05/30372408638/in/dateposted-public/",null,1535131433],
["11246532","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/if-you-look-like-your-passport-bugaboo.html",null,1535133348],
["11246537","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/im-jumping-through-hoops-colour-crazy.html",null,1535134080],
["11246554","Sharon Hudson","https://craftyhugs.blogspot.com/2018/08/singing-in-rain.html?m=1",null,1535140883],
["11246585","Michelle M","http://chelleshocked2.blogspot.com/2018/08/conie-fong-dt-feeling-fabulous.html",null,1535148682],
["11246598","Suze","http://craftysuze.blogspot.com/2018/08/halloween.html",null,1535153960],
["11246607","Angie's Creations","https://angiescreationsblog.blogspot.com/2018/08/several-challenges-done-finally.html#links",null,1535155116],
["11246612","Lisa :D","https://royalpumpkinart.blogspot.com/2018/08/for-love-of-unity-day-four-simple-hello.html",null,1535161596],
["11246614","Lisa :D","https://royalpumpkinart.blogspot.com/2018/08/musicanything-goes-new-challenge-with.html",null,1535161875],
["11246629","Gloria Shirr ","https://purpleglocreations.blogspot.com/2018/08/birthday-card-using-conie-fong-summer.html",null,1535169197],
["11246689","coops","https://coopsclutteredcorner.blogspot.com/2018/08/all-things-bright.html",null,1535183562],
["11246716","Hazel","http://craftyhazelnut.blogspot.com/2018/08/chnc-challenge-400.html",null,1535191188],
["11246719","Lisa :D","https://royalpumpkinart.blogspot.com/2018/08/for-love-of-unity-day-five-purrfectly.html",null,1535191473],
["11246725","Hazel","http://craftyhazelnut.blogspot.com/2018/08/for-cat-lovers-birthday.html",null,1535192012],
["11246726","Lisa :D","https://royalpumpkinart.blogspot.com/2018/08/for-love-of-unity-day-six-fabulous-you.html",null,1535192084],
["11246737","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/08/blog-post_21.html",null,1535194167],
["11246738","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/08/a-gift-bag-for-my-niece.html",null,1535194222],
["11246782","Majda","https://majdinustvarjalninemir.blogspot.com/2018/08/dve-nasprotni-si-porocni-cestitki.html",null,1535198639],
["11246822","Marja","http://marjaskaarten.blogspot.com/2018/08/sweet-girl.html",null,1535204189],
["11246823","Karen Dunbrook","https://snippets-karen.blogspot.com/2018/08/live-big.html",null,1535204251],
["11246841","Cicci With The Pen","https://ciccividpennan.blogspot.com/2018/08/lacy-sunshine-jellyana.html",null,1535206949],
["11246845","Cicci With The Pen","http://ciccividpennan.blogspot.com/2018/08/new-anything-goes-challenge-ttcrd.html",null,1535207195],
["11246847","Becca Yahrling","https://www.flickr.com/photos/133625822@N05/44208877402/in/dateposted-public/",null,1535207457],
["11246875","Ellie","https://www.ellibellescorner.com/2018/08/allsorts-482-music_25.html",null,1535212145],
["11246906","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/moose-you-big-time.html",null,1535214896],
["11246912","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/your-are-simply-best-catch-bug.html",null,1535216241],
["11246913","Chandhini","https://thecreativetwins.blogspot.com/2018/08/silhouette-painting-on-popsicle-sticks.html",null,1535216426],
["11246936","mi sitio scrap","https://misitioscrap.blogspot.com/2018/08/thanks-number-3.html",null,1535218372],
["11246960","Sue -Crafting with love","https://craftingwithloveandfairydust.blogspot.com/2018/08/mixed-media-altered-box.html",null,1535222761],
["11246963","Suetarby","https://craftingwithloveandfairydust.blogspot.com/2018/08/dragon-notebook.html",null,1535223485],
["11246976","Becca Yahrling","https://www.flickr.com/photos/133625822@N05/43546931574/in/dateposted-public/",null,1535230151],
["11247046","mi sitio scrap","https://misitioscrap.blogspot.com/2018/08/thanks-number-4.html",null,1535239278],
["11247086","Ma-Mi","http://rilcekinkljuncek.blogspot.com/2018/08/dve-jadrnici-za-drugi-rojstni-dan.html",null,1535255338],
["11247142","Teresa","http://redobsessioncards.blogspot.com/2018/08/christmas-kitty.html",null,1535269199],
["11247165","Nicolette's kaarten ","https://nicoletteskaarten.blogspot.com/2018/08/een-kaartje-speciaal-voor-jou.html",null,1535272466],
["11247173","Teresa","http://redobsessioncards.blogspot.com/2018/08/back-to-school.html",null,1535274754],
["11247189","America","https://cardsbyamerica.blogspot.com/2018/08/festive-dies-are-not-just-for-holidays.html",null,1535279044],
["11247211","Michelle","https://michelledees.blogspot.com/2018/08/monster.html",null,1535283638],
["11247228","NanaConnie","http://mygrammysattic.blogspot.com/2018/08/words-for-christmas.html",null,1535287615],
["11247229","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/08/gezellig-tafereeltje.html",null,1535287696],
["11247248","Hazel","http://craftyhazelnut.blogspot.com/2018/08/happy-1st-birthday.html",null,1535291076],
["11247311","Patty","https://patitudes.blogspot.com/2018/08/a-bit-more-time-to-craft-challenge-74.html",null,1535297398],
["11247342","Teresa","http://redobsessioncards.blogspot.com/2018/08/birthday-butterfly.html",null,1535301890],
["11247366","Teresa","http://redobsessioncards.blogspot.com/2018/08/sunshine-sunflowers.html",null,1535307041],
["11247379","Becca Yahrling","https://www.flickr.com/photos/133625822@N05/44283875241/in/dateposted-public/",null,1535309632],
["11247395","Nicky","http://stiggyscrafts.blogspot.com/2018/08/birthday-card.html",null,1535313130],
["11247409","Hazel","http://craftyhazelnut.blogspot.com/2018/08/to-my-dearest-friend.html",null,1535319098],
["11247417","Craftartista","https://craftartista.blogspot.com/2018/08/lovely-butterfly.html",null,1535321390],
["11247420","Craftartista","https://craftartista.blogspot.com/2018/08/courage-can-do-it-all.html",null,1535321917],
["11247465","Priyadarshini Ramakrishnan","https://simpleartcraft-tips.blogspot.com/2018/08/card-for-happiness.html",null,1535340738],
["11247500","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/08/le-cartoline-per-il-mare.html",null,1535353220],
["11247540","Kali","https://bastelgrotte.de/?p=11357",null,1535369399],
["11247566","MARLENE","https://cardsmadebymarlene.blogspot.com/2018/08/autumn-colours-and-dream-valley.html",null,1535374890],
["11247592","cheiro urgia","https://cheirourgia.blogspot.com/2018/08/champagne.html",null,1535377320],
["11247637","Melanie","https://creative-world-of-melanie.blogspot.com/2018/08/couples.html",null,1535382235],
["11247676","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/08/gefeliciteerd.html",null,1535391250],
["11247679","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/youre-a-in-my-book-always-fun.html",null,1535392114],
["11247687","monique","http://moniqueschattefor.blogspot.com/2018/08/hoera.html",null,1535393816],
["11247691","Becca Yahrling","https://www.flickr.com/photos/133625822@N05/42498830900/in/dateposted-public/",null,1535394408],
["11247830","Rosina","http://rosina-scrapcards.blogspot.com/2018/08/happy-birthday.html",null,1535439528],
["11247864","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/08/tanti-auguri-francesca.html",null,1535450792],
["11247906","Željka","https://creativemomanddaughter.blogspot.com/2018/08/week-35-digi-choosday-anything-goes.html",null,1535460116],
["11247989","John K. ","https://coolpaperart.blogspot.com/2018/08/dim-sum-christmas-tree.html",null,1535470354],
["11248057","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/you-are-out-of-this-world-bugaboo-new.html",null,1535479499],
["11248061","Teresa","http://redobsessioncards.blogspot.com/2018/08/mermaid-kisses.html",null,1535480434],
["11248067","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/08/from-our-house-to-yours.html",null,1535480970],
["11248137","Andrea Norris","https://sheepskidesigns.blogspot.com/2018/08/hoot-no-evil.html",null,1535493317],
["11248142","Craftartista","https://craftartista.blogspot.com/2018/08/under-same-sky.html",null,1535495422],
["11248147","cheiro urgia","https://cheirourgia.blogspot.com/2018/08/holly-girl.html",null,1535497029],
["11248273","Gloria Shirr - 2nd ","https://purpleglocreations.blogspot.com/2018/08/sending-smiles-step-card-using-aurora.html",null,1535528710],
["11248291","Andrea","https://cardsmadebyandrea.blogspot.com/2018/08/polkadoodles-bling-it-up.html",null,1535531332],
["11248300","Željka","https://creativemomanddaughter.blogspot.com/2018/08/challenge-307-make-your-mark-atsm.html",null,1535534368],
["11248316","mel-decorcraftdesign","https://decorcraftdesign.wordpress.com/2018/08/25/pedestal-tray-from-diy-upcycle-frying-pan/",null,1535537457],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}