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("31Jul2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzFqdWwyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("1.5 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("31Jul2018");
blenza_linkies("thumb","lozzy","31Jul2018","1949403046",3,
[
// MzFqdWwyMDE4
["11238401","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/08/nuova-creazione-per-simply-magnolia-ma.html",null,1533117503],
["11238409","AnnChuangCrafts","https://anncard.blogspot.com/2018/08/love-life.html",null,1533119178],
["11238417","AnnChuangCrafts","https://anncard.blogspot.com/2018/08/old-school.html",null,1533120284],
["11238438","Cristina","http://rutscht.blogspot.com/2018/08/sealed-with-kiss.html",null,1533124952],
["11238464","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/08/gift-bag.html",null,1533128010],
["11238476","Carla","https://carla-writes.blogspot.com/2018/08/for-love-of-bookscard.html",null,1533129148],
["11238483","Hazel","http://craftyhazelnut.blogspot.com/2018/08/craftyhazelnuts-patterned-paper-august.html",null,1533129790],
["11238488","Kym","https://kyms-crafty-cards.blogspot.com/2018/08/ching-chou-kuik-digital-stamps-august.html",null,1533130646],
["11238525","Crealientje","https://isocrealientje.blogspot.com/2018/08/borduurkaart-met-een-landschap.html",null,1533133296],
["11238531","Granne","http://aavamaki.blogspot.com/2018/08/sheep-ski-designs-challenge-your.html",null,1533133651],
["11238597","Hazel","http://craftyhazelnut.blogspot.com/2018/08/movie-night.html",null,1533136605],
["11238662","Nicolette","https://nicoletteskaarten.blogspot.com/2018/08/fijne-verjaardag.html",null,1533146709],
["11238687","Donna Flowers","https://duncanstreetdesigns.blogspot.com/2018/08/christmas-bauble-shaker-card.html",null,1533150358],
["11238693","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/08/wishing-you-happy-birthday.html",null,1533152104],
["11238732","Carole Jones","https://cjcrafty.blogspot.com/2018/08/crafts-galore-encore-violets.html",null,1533156576],
["11238733","Hazel","http://craftyhazelnut.blogspot.com/2018/08/on-your-christening.html",null,1533156708],
["11238738","Hazel","http://craftyhazelnut.blogspot.com/2018/08/80th-birthdays.html",null,1533157821],
["11238742","Hazel","http://craftyhazelnut.blogspot.com/2018/08/100-too-cute.html",null,1533158519],
["11238754","Hazel","http://craftyhazelnut.blogspot.com/2018/08/a-commissioned-card-for-brother-in-law.html",null,1533160829],
["11238755","Hazel","http://craftyhazelnut.blogspot.com/2018/08/large-butterfly-birthday-wishes.html",null,1533161714],
["11238762","pat martin","https://patacakespages.blogspot.com/2018/08/theres-fun-in-sun-to-be-had-at.html",null,1533163181],
["11238829","Lisa Walsh","https://www.papercraftbusiness.com/beach-card-mft-beach-bunnies/",null,1533190645],
["11238852","Hazel","http://craftyhazelnut.blogspot.com/2018/08/another-card-made-with-pieces-from-box.html",null,1533199293],
["11238857","Hazel","http://craftyhazelnut.blogspot.com/2018/08/another-large-butterfly.html",null,1533200788],
["11238858","tinyworks","http://tinyworks81.blogspot.com/2018/08/card-celebrate-laurea-dt-simply-magnolia.html",null,1533201327],
["11238859","tinyworks","http://tinyworks81.blogspot.com/2018/08/card-for-men-golf-dt-crafty-addicts.html",null,1533201348],
["11238860","Hazel","http://craftyhazelnut.blogspot.com/2018/08/birthday-celebrations.html",null,1533201412],
["11238862","Hazel","http://craftyhazelnut.blogspot.com/2018/08/thinking-of-you.html",null,1533201869],
["11238866","Hazel","http://craftyhazelnut.blogspot.com/2018/08/new-home.html",null,1533204674],
["11238874","jenimc","http://jenicraftroom.blogspot.com/2018/08/fish-whisperer.html",null,1533208897],
["11238884","NanaConnie","http://mygrammysattic.blogspot.com/2018/08/just-chillin-at-seaside.html",null,1533214433],
["11238894","Hazel","http://craftyhazelnut.blogspot.com/2018/08/monochrome-happy-birthday.html",null,1533218275],
["11238897","Donna Flowers","https://duncanstreetdesigns.blogspot.com/2018/08/pennys-paper-crafty-challenge-391.html",null,1533220208],
["11238907","Gale K","http://galesstampingcorner.blogspot.com/2018/08/pool-girl.html",null,1533223179],
["11238922","Donna Barrow","http://www.dbscraftpassion.com/2018/08/be-strong-be-happy-be-you.html",null,1533231016],
["11238933","Bisse","https://vasemmalkadella.blogspot.com/2018/08/kylla-se-siita.html",null,1533232870],
["11238940","jenimc","http://jenicraftroom.blogspot.com/2018/08/you-are-my-sunshine.html",null,1533234609],
["11238942","Donna Flowers","https://duncanstreetdesigns.blogspot.com/2018/08/cardz-4-galz-design-team-project-follow.html",null,1533235012],
["11238952","Carole Jones","https://cjcrafty.blogspot.com/2018/08/crafts-galore-encore-robins.html",null,1533238061],
["11238968","Hazel","http://craftyhazelnut.blogspot.com/2018/08/blue-birthday.html",null,1533241818],
["11238977","Suze","http://http://craftysuze.blogspot.com/2018/08/its-not-where-you-start-its-where-you.html/2018/07/wishing-you-merry-christmas.html",null,0],
["11238978","Suze","http://craftysuze.blogspot.com/2018/08/its-not-where-you-start-its-where-you.html",null,1533245210],
["11238990","Cathymac","http://goldeninkspirations.blogspot.com/2018/08/odbd-throwback-thursday-grill-master.html",null,1533246900],
["11239016","Pam Sebring","http://psebring.blogspot.com/2018/08/merry-reindeer.html",null,1533264624],
["11239033","elizabeth h","http://warmharted.blogspot.com/2018/08/a-lavender-posie.html",null,1533272556],
["11239044","Hazel","http://craftyhazelnut.blogspot.com/2018/08/monochrome-birthday.html",null,1533276932],
["11239049","Lilian B","http://lillyb46.blogspot.com/2018/08/hope-your-weekend-is-good.html",null,1533278505],
["11239051","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2018/08/friday-post-weekend-starts-today.html",null,1533280142],
["11239056","Anna","http://nonsolocard.blogspot.com/2018/08/dear-santa.html",null,1533281583],
["11239075","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2018/08/scrapy-land-challenge-95.html",null,1533289920],
["11239103","Maryann Scrapbooking","https://maryann-scrap.blogspot.com/2018/08/mannequin-boutons-et-fleur-pour-la.html",null,1533296020],
["11239106","Judy V","http://jvzcreations.blogspot.com/2018/08/tropical-colors-at-crafty-gals-corner.html",null,1533297760],
["11239135","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2018/08/we-zijn-weer-een-nieuwe-wedstrijd.html",null,1533303167],
["11239151","Jodi - Kaboo Designs","http://kaboodesigns.blogspot.com/2018/08/youre-hoot.html",null,1533305257],
["11239168","Hazel","http://craftyhazelnut.blogspot.com/2018/08/birthday-celebrations_3.html",null,1533307275],
["11239169","Hazel","https://craftyhazelnut.blogspot.com/2018/08/many-happy-returns.html",null,1533307544],
["11239177","Dawn Frost","http://stamp-n-play.blogspot.com/2018/08/bugaboo-turtles-rain.html",null,1533309151],
["11239189","Emma R","https://emgoescardmaking.blogspot.com/2018/08/j-for-jingle-bells-christmas.html",null,1533311768],
["11239205","Chandhini","https://thecreativetwins.blogspot.com/2018/08/cute-owl-pen-stand.html",null,1533315568],
["11239236","Tip Top","http://tiptoptoppers.blogspot.com/2018/08/christmas-stocking.html",null,1533320240],
["11239248","Paper Profusion","https://paperprofusion.blogspot.com/2018/08/wildflowers.html",null,1533322985],
["11239306","Paperesse","http://www.paperesse.com/2018/08/happy-summer-card-with-sliekjes-digi.html",null,1533335950],
["11239331","Craftartista","https://craftartista.blogspot.com/2018/08/play-in-sand.html",null,1533345895],
["11239374","Desire Fourie","http://desiref.blogspot.com/2018/08/a-lot-of-happy-color-it-create-it-show.html",null,1533365104],
["11239389","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2018/08/dance-in-rain.html",null,1533368804],
["11239408","Hazel","https://craftyhazelnut.blogspot.com/2018/08/chnc-challenge-397.html",null,1533374597],
["11239417","Hazel","http://craftyhazelnut.blogspot.com/2018/08/90th-birthday.html",null,1533376152],
["11239418","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/08/sunny-celebrations.html",null,1533376206],
["11239426","Wendy Batchen","http://wenscreations.blogspot.com/2018/08/scrappers-delights-special-deals.html",null,1533378841],
["11239454","Nicolette","https://nicoletteskaarten.blogspot.com/2018/08/hartelijk-gefeliciteerd.html",null,1533385393],
["11239461","Hazel","http://craftyhazelnut.blogspot.com/2018/08/this-is-similar-to-some-previous-cards.html",null,1533386164],
["11239479","Hazel","http://craftyhazelnut.blogspot.com/2018/08/thinking-of-you_4.html",null,1533389021],
["11239497","Hazel","http://craftyhazelnut.blogspot.com/2018/08/relax-its-your-birthday.html",null,1533391308],
["11239536","Katie Tate","http://bothsidesofthepaper.blogspot.com/2018/08/a-gem-of-challenge-225-breast-cancer.html",null,1533394127],
["11239570","Wendy R","http://cartai.blogspot.com/2018/08/thank-you.html",null,1533398100],
["11239637","Norma","http://creatingandsharingit.blogspot.com/2018/08/polkadoodles-anything-goes-challenge.html",null,0],
["11239657","Kathie","https://kathiezkardz.blogspot.com/2018/08/christmas-giraffe.html",null,1533426218],
["11239721","Gail Hutchinson","http://hutcho53.blogspot.com/2018/08/sheepski-designs-my-favourite-things.html",null,1533447900],
["11239724","Gail Hutchinson","http://hutcho53.blogspot.com/2018/08/orchid-fairy.html",null,1533448127],
["11239768","Jane Willis","http://onionsandpaper.blogspot.com/2018/08/have-wine-derful-birthday.html",null,1533459240],
["11239788","Marja","http://marjaskaarten.blogspot.com/2018/08/als-de-kat-van-huis-is.html",null,1533463585],
["11239789","Hazel","http://craftyhazelnut.blogspot.com/2018/08/sending-birthday-wishes-just-for-you.html",null,1533463657],
["11239792","Granne","http://aavamaki.blogspot.com/2018/08/sending-love-with-serenity.html",null,1533464573],
["11239808","Helen","http://helenscrafthaven.blogspot.com/2018/08/pile-it-on-challenge-try-new-to-you.html",null,1533468793],
["11239813","Vivi Casale","http://handmadebyvivi.blogspot.com/2018/08/happy-birthday.html",null,1533470554],
["11239814","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/08/spellbinders-indie-roses.html",null,1533470537],
["11239881","Hazel","http://craftyhazelnut.blogspot.com/2018/08/happy-birthday-to-you.html",null,1533480594],
["11239884","Olivia","http://ormcraftynights.blogspot.com/2018/08/tiddly-inks-anything-goes.html",null,1533480863],
["11239896","Teresa","https://redobsessioncards.blogspot.com/2018/08/summer-ice-cream.html",null,1533483166],
["11239903","Ellie","https://www.ellibellescorner.com/2018/08/penny-black-and-more-august-challenge.html",null,1533483885],
["11239914","Sheryl Hare","https://marchharecards.blogspot.com/2018/08/magic-at-613-avenue-create.html",null,1533486537],
["11239938","Chriss","https://chrissandlou.blogspot.com/2018/08/inas-challenge-39.html",null,1533490277],
["11239947","elizabeth h","http://warmharted.blogspot.com/2018/08/a-poppy-note.html",null,1533492481],
["11239962","Hazel","http://craftyhazelnut.blogspot.com/2018/08/memories-are-treasures.html",null,1533496746],
["11239975","Hazel","http://craftyhazelnut.blogspot.com/2018/08/happy-holidays.html",null,1533500688],
["11239981","Hazel","http://craftyhazelnut.blogspot.com/2018/08/birthday-wishes.html",null,1533502621],
["11239997","Andree","http://acecardsandree.blogspot.com/2018/08/crafts-galore-encore-august-2018.html",null,1533507128],
["11240035","elizabeth h","http://warmharted.blogspot.com/2018/08/pile-up-gifts.html",null,1533521854],
["11240068","CreaNancy","https://creanancy.blogspot.com/2018/08/voor-de-mama-van-angelique-die-70-werd.html",null,1533536459],
["11240074","Ans Gilbert","http://dekaartenvanonsmam.blogspot.com/2018/08/sunshine.html",null,1533540578],
["11240092","Hazel","http://craftyhazelnut.blogspot.com/2018/08/bon-voyage.html",null,1533543659],
["11240099","Teresa","http://redobsessioncards.blogspot.com/2018/08/at-beach.html",null,1533544595],
["11240104","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/08/una-wreat-sfavillante-per-uno-swap.html",null,1533546040],
["11240111","basslady","https://bassladycreations.blogspot.com/2018/08/karte-mit-tee-motiv.html?m=0",null,1533547457],
["11240121","Carole J","https://cjcrafty.blogspot.com/2018/08/vera-lane-studio-succulents.html",null,1533549641],
["11240126","Birgit","https://cardsrfun.blogspot.com/2018/08/congratulations-on-your-day.html",null,1533550162],
["11240132","Asawari Padhye","https://sawarisbliss.wordpress.com/2018/08/06/birthday-with-colorful-dimensions/",null,1533551319],
["11240145","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/08/65-jaar.html",null,1533557293],
["11240176","Kym","http://kyms-crafty-cards.blogspot.com/2018/08/just-for-you.html",null,1533561440],
["11240211","Mindy Baxter","https://www.mycreativescoop.com/how-to-color-a-school-bus-using-copic-markers/",null,1533564152],
["11240235","Hazel","http://craftyhazelnut.blogspot.com/2018/08/enjoy-your-summer-birthday.html",null,1533568617],
["11240243","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2018/08/kerstkaart-gemaakt-met-rode-bloemen-en.html",null,1533571462],
["11240307","Hazel","http://craftyhazelnut.blogspot.com/2018/08/wishing-you-happy-birthday.html",null,1533588877],
["11240317","Hazel","http://craftyhazelnut.blogspot.com/2018/08/this-card-is-based-on-sketch-given-for.html",null,1533590780],
["11240350","Angies Creations","http://angiescreationsblog.blogspot.com/2018/08/first-challenges-pf-month.html#links",null,1533603440],
["11240410","pinky","https://pinkysworldsuprojects.blogspot.com/2018/08/tall-gift-box-with-lid-tutorial.html",null,1533631495],
["11240417","Lisa","https://ellas-design.blogspot.com/2018/08/passion-for-promarkers-make-it-feminine.html",null,1533634494],
["11240421","Rosina","http://rosina-scrapcards.blogspot.com/2018/08/gefeliciteerd.html",null,1533635099],
["11240445","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/08/hoppy-birthday.html",null,1533642367],
["11240451","Caroline's Creaties","http://caroline-creaties.blogspot.com/2018/08/vakantie-en-wij-nemen-mee-de-fiets.html",null,1533643932],
["11240460","Nicolette","https://nicoletteskaarten.blogspot.com/2018/08/happy-birthday.html",null,1533646879],
["11240503","Hazel","http://craftyhazelnut.blogspot.com/2018/08/sending-birthday-wishes.html",null,1533653706],
["11240533","NanaConnie","http://mygrammysattic.blogspot.com/2018/08/the-felines-made-me-post-this.html",null,1533659158],
["11240553","Rachelle Olaridge","http://http://scrapping247365.blogspot.com/2018/07/tuesday-throwdown-card-challenge.html/2018/05/card-challenge-at-tuesday-throwdown.html",null,1533664433],
["11240576","DebiB","https://thatmightlookgoodonacard.blogspot.com/2018/08/double-trouble-challenge-7.html",null,1533670479],
["11240601","Jootje","http://jootjesscrapcards.blogspot.com/2018/08/best-friends-for-life.html",null,1533673302],
["11240628","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2018/08/no-patterned-paper.html",null,1533676097],
["11240638","Hazel","https://craftyhazelnut.blogspot.com/2018/08/birthday-wishes_7.html",null,1533678421],
["11240690","Aileen Ryan","https://colourandsparkle.blogspot.com/2018/08/the-flower-challenge-23-one-layer-card.html",null,1533695194],
["11240705","Pam Sebring","http://psebring.blogspot.com/2018/08/snowy-night.html",null,1533701942],
["11240712","Cass","https://casscreatingnow.blogspot.com/2018/08/tiny-terrarium.html",null,1533703082],
["11240742","Daydream Believer","https://daydreambeliever-gina.blogspot.com/2018/08/my-little-book-of-me.html",null,1533711565],
["11240752","Janes Journal","http://jane-janesjournal.blogspot.com/2018/08/back-to-typical-english-summer.html",null,1533712942],
["11240754","jackie cornfield","https://getthejclook.blogspot.com/2018/08/atg-pde.html",null,1533713718],
["11240842","Donna T","https://lakefrontstampingcreations.blogspot.com/2018/01/fluttering-by.html",null,1533734116],
["11240890","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/08/blog-post.html",null,1533737884],
["11240892","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/08/engagement-card.html",null,1533738023],
["11240893","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/08/pretty-box.html",null,1533738128],
["11241014","Claudia","http://knutselmeisjes.blogspot.com/2018/08/hoera_8.html",null,1533753942],
["11241035","Donna Flowers","https://duncanstreetdesigns.blogspot.com/2018/08/crafty-creations-challenge-children.html",null,1533755959],
["11241054","Cicci With The Pen","https://ciccividpennan.blogspot.com/2018/08/new-atg-challenge-ttcrd-polkadoodles.html",null,1533756964],
["11241116","Helene Ouellet","https://lescreationsdhelene.blogspot.com/2018/08/une-carte_8.html",null,1533770113],
["11241217","Sementes de Papel","http://www.faeryink.com/2018/08/happy-day-at-pool-side.html",null,1533804115],
["11241227","Lilly","http://lillys-craftcorner.blogspot.com/2018/08/let-it-snow.html",null,1533811791],
["11241239","zubmomi","https://colorpaperscissors.blogspot.com/2018/08/good-news.html",null,1533814887],
["11241259","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/08/phil-martin-christmas-cloud-stamped-card.html",null,1533820657],
["11241267","Donna Flowers","https://duncanstreetdesigns.blogspot.com/2018/08/creative-knockout-challenge-cheerful.html",null,1533823002],
["11241273","Janis Lewis","http://abitmoretimetocraft.blogspot.com/",null,0],
["11241274","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/08/alaska-summer-scrapbook-layout.html",null,1533824545],
["11241277","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2018/08/dream.html",null,1533825633],
["11241337","Ginny B","https://homespuncards.blogspot.com/2018/08/new-ef-from-spellbinders.html",null,1533840711],
["11241339","Kelly Leese","https://the-crafty-bat.blogspot.com/2018/08/altered-jewellery-box.html",null,1533841396],
["11241412","Teresa","https://redobsessioncards.blogspot.com/2018/08/fairy-dust.html",null,1533853882],
["11241432","Judy McKay","http://insearchofmycreativeside.blogspot.com/2018/08/pocket-hanger-birthday-wishes.html",null,1533863367],
["11241471","jackie cornfield","https://getthejclook.blogspot.com/2018/08/under-sea_10.html",null,1533878996],
["11241484","Rosina","http://rosina-scrapcards.blogspot.com/2018/08/babykaartje.html",null,1533887004],
["11241487","Angelique","https://engeldesignsscrap.blogspot.com/2018/08/fawns-friends.html",null,1533887476],
["11241512","Leona B","https://cardsbyleona.wordpress.com/2018/08/08/creative-moments-challenge-cats-big-and-small/",null,1533897990],
["11241524","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/08/its-definitely-time-for-vacation.html",null,1533901221],
["11241563","ScrappyHorses","https://scrappyhorses.blogspot.com/2018/08/fav-colors.html",null,1533907938],
["11241565","Judy V","http://jvzcreations.blogspot.com/2018/08/polkadoodles-crafting-challenge-32.html",null,1533908131],
["11241577","Donna R","https://indianainking.blogspot.com/2018/08/book-boy.html",null,1533909816],
["11241579","Hazel","http://craftyhazelnut.blogspot.com/2018/08/pink-and-purple-birthday.html",null,1533910307],
["11241605","Hazel","http://craftyhazelnut.blogspot.com/2018/08/clean-and-simple-blue-and-cream.html",null,1533915451],
["11241619","Hazel","http://craftyhazelnut.blogspot.com/2018/08/snowflake-brads.html",null,1533917989],
["11241623","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2018/08/een-kerstkaart-met-4-brandende-kaarsen.html",null,1533919086],
["11241624","Hazel","http://craftyhazelnut.blogspot.com/2018/08/this-is-for-sketch-for-city-crafter-424.html",null,1533919295],
["11241631","Chandhini","https://thecreativetwins.blogspot.com/2018/08/quilled-earring.html",null,1533920215],
["11241635","Tindaloo","https://tindaloo.blogspot.com/2018/08/valentine-shaker-card.html",null,1533921031],
["11241655","Janes Journal","http://jane-janesjournal.blogspot.com/2018/08/golfing-jack.html",null,1533925279],
["11241674","Hazel","http://craftyhazelnut.blogspot.com/2018/08/simply-thank-you.html",null,1533930045],
["11241683","Zora","https://lofquisten.blogspot.com/2018/06/kram.htmlhtml",null,0],
["11241686","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2018/08/karate-kid.html",null,1533933410],
["11241689","Hazel","http://craftyhazelnut.blogspot.com/2018/08/happiest-of-birthdays.html",null,1533934271],
["11241761","AndreaBastelmaus","https://andreabastelmaus.blogspot.com/2018/08/endlich-schule.html",null,1533963660],
["11241784","Beatriz","https://beascrapbooking.blogspot.com/2018/08/crafty-sentiments-desings-anything-goes.html",null,1533972764],
["11241790","Hazel","https://craftyhazelnut.blogspot.com/2018/08/chnc-challenge-398.html",null,1533974969],
["11241841","mel-decorcraftdesign","https://decorcraftdesign.wordpress.com/2018/08/11/handmade-pink-orchid-and-gold-birthday-card/",null,1533986688],
["11241896","Julie O","http://muddypawsinkyfingers.blogspot.com/2018/08/hedgie-with-sunflowers-for-dis-digi.html",null,1533994509],
["11241920","Craftartista","https://craftartista.blogspot.com/2018/08/take-me-to-dreamland.html",null,1534000317],
["11241928","Rosina","http://rosina-scrapcards.blogspot.com/2018/08/nog-een-baby-kaartje.html",null,1534002431],
["11241956","Nicolette","https://nicoletteskaarten.blogspot.com/2018/08/opruimen-en-gefeliciteerd.html",null,1534007324],
["11242100","Gloria Shirr ","https://purpleglocreations.blogspot.com/2018/08/birthday-card-using-conie-fong-sweet.html",null,1534049283],
["11242162","Carole J","https://cjcrafty.blogspot.com/2018/08/gecko-galz-by-shore.html",null,1534069487],
["11242182","Carla","https://carla-writes.blogspot.com/2018/08/dressed-up-with-kitty-purse-card.html",null,1534075090],
["11242193","Carla","https://carla-writes.blogspot.com/2018/08/movie-night-memorydex-card.html",null,1534076144],
["11242209","Jane","https://mistybluescreations.blogspot.com/2018/08/summertimesummertime-or-holidays-at.html",null,1534079263],
["11242234","Hazel","http://craftyhazelnut.blogspot.com/2018/08/sweet-wishes.html",null,1534082171],
["11242249","Desire Fourie","http://desiref.blogspot.com/2018/08/happy-birthday-digistamps4joy-august.html",null,1534084635],
["11242285","Debra","https://debs-eternity-cards.blogspot.com/2018/08/no-colouring-today.html",null,1534089418],
["11242291","Hazel","http://craftyhazelnut.blogspot.com/2018/08/sending-birthday-wishes_12.html",null,1534090445],
["11242301","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/08/noel.html",null,1534094023],
["11242320","Nicky","http://stiggyscrafts.blogspot.com/2018/08/joint-70th-birthday-voucher.html",null,1534100980],
["11242331","Hazel","http://craftyhazelnut.blogspot.com/2018/08/beautiful.html",null,1534104195],
["11242374","Michelle M","http://chelleshocked2.blogspot.com/2018/08/conie-fong-dt-princess-molly-with.html",null,1534117907],
["11242552","Ans Gilbert","http://dekaartenvanonsmam.blogspot.com/2018/08/hoera.html",null,1534145617],
["11242586","cheiro urgia","https://cheirourgia.blogspot.com/2018/08/a-box-of-greenery.html",null,1534157626],
["11242599","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/08/happy-christmas.html",null,1534161360],
["11242603","Annelie","http://annelieskort.blogspot.com/2018/08/brollopskort.html",null,1534161920],
["11242609","monique","https://moniqueschattefor.blogspot.com/2018/08/ship-ahoy-beer.html",null,1534163071],
["11242622","Nicolette","https://nicoletteskaarten.blogspot.com/2018/08/sea-you.html",null,1534164935],
["11242671","Teresa","https://redobsessioncards.blogspot.com/2018/08/sunshine-70th.html",null,1534174207],
["11242766","Sarah Wills","https://mallowscrafts.blogspot.com/2018/08/sporting-cuties.html",null,1534184827],
["11242823","J. Atterbury Creations","http://jatterburycreations.blogspot.com/2018/08/funhumor-series-i-thought-accessorize.html",null,1534194008],
["11242830","Hazel","http://craftyhazelnut.blogspot.com/2018/08/this-is-for-sketch-given-for-just-add.html",null,1534195034],
["11242859","Mindy Baxter","https://www.mycreativescoop.com/neat-and-tangled-alligator-copic-marker-tutorial-video/",null,1534201972],
["11242955","Ma-Mi","http://rilcekinkljuncek.blogspot.com/2018/08/se-malo-sladoleda.html",null,1534224892],
["11242970","jackie cornfield","https://getthejclook.blogspot.com/2018/08/recyclereuse.html",null,1534228541],
["11242975","Asawari Padhye","https://sawarisbliss.wordpress.com/2018/08/13/flowery-inspiration/",null,1534232006],
["11242977","Teresa","http://redobsessioncards.blogspot.com/2018/08/christmas-carols.html",null,1534232185],
["11242996","Kym","https://kyms-crafty-cards.blogspot.com/2018/08/lemon-shortbread-challenge-tuesday-14.html",null,1534238597],
["11243008","Craftartista","https://craftartista.blogspot.com/2018/08/escape-ordinary.html",null,1534241856],
["11243076","Kali","https://bastelgrotte.de/?p=10335",null,1534252764],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}