document.write('\n');
document.write('\n');
var blenza_opt_namemax = 80;
var blenza_opt_linkmax = 152;
var bzloc_youfirst = "You're first";
var bzloc_younext = "You're next";
var bzloc_ifparticip = "If you are participating in";
var bzloc_toaddlink = "To add your entry to the list";
var bzloc_enter = "Enter";
var bzloc_next = "Next";
var bzloc_siteusing2a = "fill in the form below and press ";
var bzloc_siteusing2 = bzloc_siteusing2a + bzloc_enter + ".";
var bzloc_thumb2a = " to add your thumbnail.";
var bzloc_thumb2 = bzloc_siteusing2a + bzloc_next + bzloc_thumb2a;
var bzloc_siteusing3 = "click here and fill in the form that pops up";
var bzloc_yourname = "Your name";
var bzloc_yoururl = "Your URL";
var bzloc_comment = "Please leave a comment after linking... Thank you!";
var bzloc_checkname = "Please enter your name.";
var bzloc_namelength = "The length of your name must be less than or equal to";
var bzloc_checkurl = "Please enter your link URL.";
var bzloc_urllength = "The length of your URL must be less than or equal to";
var bzloc_urlprefix = "Link URL must begin with 'http://'";
var bzloc_sharedmeme = "Shared Meme - Click to Subscribe";
var bzloc_clicktodisp = "Click here to display the links for this post";
var bzloc_upgrademult = "You may upgrade to display more than one Linky at a time";
var bzloc_owner = "Blog Owner";
var bzloc_export = "If you wish to export this list to HTML, click here";
var bzloc_disablemsg = "Click here to disable this message";
var bzloc_whatthis = "What is this?";
var bzloc_expiry = "Linky Widget expiration";
var bzloc_winner = "Winning entry";
var bzloc_caching = "Caching system in use... links may take a minute to post";
var bzloc_thumbnext = "Click here to add your thumbnail if the pop-up does not appear.";
var bzloc_cktool = "Click here for Mister Linky's name/URL cookie removal tool.";
var bzloc_nopopwin = "Unable to open the thumbnail popup window. Check your browser settings.";
var bzloc_maint = "Please read about the upcoming system maintenance";
var bzloc_bugcheck = "An internal error has occurred. Please report this at http://www.misterlinky.net/helpdesk/";
var bzloc_dashboard = "Dashboard";
var bzloc_clickdisp = "Click to display the links and settings for this widget";
var bzloc_policy = "Check to accept use/privacy policy (click to read)";
var bzloc_nopolicy = "You must accept the use/privacy policy to use this widget.\n\nClick the link below to read the policy and check the box to accept.\n\nThen press Enter again to add your link to the list.\n\nNOTE: If you like, you can click a button on the policy page\nto save a cookie and remember you've accepted the policy.";
blenza_ifr = null;
var blenza_newwin = 1;
function getIEVersion(){
var agent = navigator.userAgent;
var reg = /MSIE\s?(\d+)(?:\.(\d+))?/i;
var matches = agent.match(reg);
if (matches != null) {
return { major: matches[1], minor: matches[2] };
}
return { major: "-1", minor: "-1" };
}
var ie_version = getIEVersion();
var is_ie10 = ie_version.major == 10;
var is_ie9e = ie_version.major > 0 && ie_version.major <= 9;
if (!blenza_inited) {
var blenza_whoName = null;
var blenza_whoEmail = null;
var blenza_whoURL = null;
var blenza_user = null;
var blenza_xurl = null;
var blenza_showredx = true;
var blenza_color = null;
var blenza_thumbGetter = null;
var blenza_thumbExternal = null;
var blenza_thumbRoot = new Array();
var blenza_thumbApprove = null;
var blenza_border = "#000";
var blenza_gray = "#888";
var blenza_meme_unset = new Array();
var blenza_meme_id = new Array();
var blenza_meme_name = new Array();
var blenza_meme_text = new Array();
var blenza_meme_shared = new Array();
var blenza_nourl = new Array();
var blenza_hideurl = new Array();
var blenza_ord = 0;
var blenza_expiration = null;
var blenza_memelinks = true;
var blenza_winnerName = null;
var blenza_winnerUrl = null;
var blenza_bycol = 1;
var blenza_fliplinks = 0;
var blenza_alphasort = 0;
blenza_dynamic = false;
var metas = document.getElementsByTagName("meta");
for (var i = 0; i < metas.length; i++) {
if (metas[i].name == "blogger-template")
blenza_dynamic = metas[i].content == "dynamic";
}
}
var blenza_ntu = new Array();
function blenza_xhr()
{
if (window.XMLHttpRequest) return new XMLHttpRequest();
else if (window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP");
else return null;
}
function blenza_xml(text)
{
if (text.message != null) text = text.message;
var xml;
if (text.length >= 5 && text.substring(0, 5) == "request-error" + text + "";
return blenza_parse(xml);
}
function blenza_parse(xml)
{
var doc;
if (window.DOMParser) {
var p = new DOMParser();
doc = p.parseFromString(xml,"text/xml");
}
else {
doc = new ActiveXObject("Microsoft.XMLDOM");
doc.async = false;
doc.loadXML(xml);
}
return doc;
}
function blenza_send(url, data, postid, cb)
{
// hack: if it's IE9 or earlier, just do a get and be done with it
if (is_ie9e) {
var img = document.getElementById("status-" + postid);
if (img != null) {
var now = new Date().getTime();
img.src = url + "?" + data + "&iehack=true&ts=" + now;
}
cb(blenza_xml("success"));
return;
}
try {
var method = data ? "POST" : "GET";
var req = blenza_xhr();
req.open(method, url, true);
if ("withCredentials" in req) {
req.withCredentials = true;
}
if (method == "POST")
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");
req.onreadystatechange = function() {
if (req.readyState !== 4) return;
if (req.status != 200) {
cb(blenza_xml("Unexpected request status " + req.status));
}
else if (req.responseXML != null) {
cb(req.responseXML);
}
else {
cb(blenza_xml(req.responseText));
}
};
req.send(data);
}
catch (e) {
msg = e.message;
if (msg == null || msg.length == 0) msg = "Unknown error";
cb(blenza_xml(msg));
}
}
function blenza_getValue(ele, name)
{
if (ele == null) return null;
var elems = ele.getElementsByTagName(name);
if (elems == null) return null;
var one = elems.item(0);
if (one == null || one.firstChild == null) return null;
if (one.firstChild.data != null) return one.firstChild.data;
else return null;
}
function blenza_checkStatus(ele)
{
if (ele == null) {
alert("Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: could not check status");
return false;
}
var sts = blenza_getValue(ele, "status");
if (sts == "success")
return true;
var err = blenza_getValue(ele, "error");
if (sts == "request-error")
msg = "An error occurred while processing the request:\n" + err + "\nPlease try your request again later";
else if (sts == "internal-error")
msg = "Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: " + err;
else if (err == "Duplicate entry")
msg = "That entry has already been added to the list";
else
msg = "Error: " + err;
alert(msg);
return false;
}
function blenza_doInsert(form, xurl, postid, cb)
{
var data = "";
for (i = 0; i < form.elements.length; i++) {
var ele = form.elements[i];
var name = ele.name;
if (name.length < 3 || name.substring(0,3) != "ml_") continue;
if (data.length > 0) data += "&";
data += name.substring(3) + "=";
var val;
if (ele.type == "checkbox") {
if (ele.checked) val = ele.value;
else val = "";
}
else val = ele.value;
data += escape(val);
}
blenza_send(xurl + "/entry_api.php", data, postid, cb);
}
function blenza_switcheroo(off, on)
{
var ele1 = blenza_elem(off);
ele1.style.display = "none";
var ele2 = blenza_elem(on);
ele2.style.display = "block";
}
function blenza_setNextone(pi, name, url)
{
var nx = blenza_elem("nextone-" + pi);
if (nx != null) {
nx.innerHTML = '' + name + '';
}
}
function blenza_reThumb(a, pi)
{
var form = document.getElementById("blenza_" + pi);
if (form == null) {
alert("Cannot locate form, please report internal error to Mister Linky");
return false;
}
form.action = blenza_xurl + "/thumbwin.php";
var name;
if (form.ml_name) name = form.ml_name.value;
else name = form.name.value;
if (! blenza_checkName(name)) return false;
var url;
if (form.ml_url) url = form.ml_url.value;
else url = form.url.value;
if (! blenza_checkUrl(pi, url)) return false;
a.href = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + escape(name) + "&url=" + escape(url);
return true;
}
function blenza_policyCheck(id)
{
var chk = document.getElementById("policy" + id);
if (chk) chk.checked = true;
}
// new and improved!
function blenza_doEnter(form) // false on error
{
if (!form) return;
try {
var name = null;
if (form.ml_name && form.ml_name.value) name = form.ml_name.value;
var url = null;
if (form.ml_url && form.ml_url.value) url = form.ml_url.value;
var pi = form.ml_postid.value;
var xurl = form.ml_xurl.value;
if (! blenza_checkName(name)) return false;
if (pi == null || xurl == null) {
alert(bzloc_bugcheck);
return false;
}
if (!form.policy.checked) {
alert(bzloc_nopolicy);
return false;
}
if (! blenza_checkUrl(pi, url)) return false;
if (form.ml_src.value != "thumb") {
var cb = function(doc) {
if (! blenza_checkStatus(doc)) return;
blenza_setNextone(pi, name, url);
blenza_switcheroo("theform-" + pi, "theform2-" + pi);
}
blenza_doInsert(form, xurl, pi, cb);
}
else {
var popurl = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + name + "&url=" + escape(url);
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin == null) alert(bzloc_nopopwin);
}
}
catch (e) {
alert("Uncaught error: " + e.message + "\n" + e.stack);
}
return false;
}
function blenza_checkName(name)
{
if (name.length == 0) {
alert(bzloc_checkname);
return false;
}
if (name.length > blenza_opt_namemax) {
alert(bzloc_namelength + " " + blenza_opt_namemax);
return false;
}
return true;
}
function bz_starts(str, pre)
{ return (str.substring(0, pre.length) == pre); }
function blenza_checkUrl(pi, url)
{
if (blenza_nourl[pi] > 0) return true;
if (url.length == 0) {
alert(bzloc_checkurl);
return false;
}
if (url.length > blenza_opt_linkmax) {
alert(bzloc_urllength + " " + blenza_opt_linkmax);
return false;
}
if (!bz_starts(url, "http://") && !bz_starts(url, "https://")) {
alert(bzloc_urlprefix);
return false;
}
if (url == "http://www.") {
alert(bzloc_checkurl);
return false;
}
return true;
}
function blenza_elem(id)
{
return document.getElementById(id);
}
function blenza_display(xurl, owner, pi)
{
var popwin = window.open(xurl + "/display.php?owner=" + owner + "&postid=" + pi, "blenza_linkypop", "height=360,width=400,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null) {
return;
}
}
function blenza_getthumb(owner, pi, secret)
{
var popurl = blenza_thumbGetter + "getthumb.php?owner=" + owner + "&postid=" + pi + "&secret=" + secret + "&init=true";
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null)
setTimeout(function(){ blenza_getthumb2(popwin, popurl); }, 3000);
}
function blenza_getthumb2(popwin, popurl)
{
try {
if (popwin == null) return;
if (popwin.innerHeight != null) return;
}
catch (err) {
return;
}
}
function blenza_setwho(n, e, u)
{
blenza_whoName = n;
blenza_whoEmail = e;
blenza_whoURL = u;
}
function blenza_setuser(v)
{
blenza_user = v;
}
function blenza_setredx(v)
{
blenza_showredx = v;
}
function blenza_setxurl(v)
{
blenza_xurl = v;
}
function blenza_setcolor(v)
{
blenza_color = v;
}
function blenza_setthumbs(pi, g, e, r, a)
{
blenza_thumbGetter = g;
blenza_thumbExternal = e;
blenza_thumbRoot[pi] = r;
blenza_thumbApprove = (a > 0);
}
function blenza_setmeme(pi, id, name, text, shared)
{
blenza_meme_unset[pi] = false;
blenza_meme_id[pi] = id;
blenza_meme_name[pi] = name;
blenza_meme_text[pi] = text;
blenza_meme_shared[pi] = shared;
}
function blenza_unsetmeme(pi)
{
blenza_meme_unset[pi] = true;
blenza_meme_id[pi] = null;
blenza_meme_name[pi] = null;
blenza_meme_text[pi] = null;
blenza_meme_shared[pi] = null;
}
function blenza_setYourUrl(pi, nourl, hideurl)
{
blenza_nourl[pi] = nourl;
blenza_hideurl[pi] = hideurl;
}
function blenza_setExpires(str)
{
blenza_expiration = str;
}
function blenza_setMemelinks(v)
{
blenza_memelinks = v;
}
function blenza_setWinner(name, url)
{
blenza_winnerName = name;
blenza_winnerUrl = url;
}
function blenza_setFliplinks(n)
{
blenza_fliplinks = n;
}
function blenza_setAlphasort(n)
{
blenza_alphasort = n;
}
function blenza_setBycol(n)
{
blenza_bycol = n;
}
function blenza_dispExpires()
{
if (blenza_expiration == null) return;
document.write("
" + bzloc_expiry + ": " + blenza_expiration + ".
");
if (blenza_winnerName == null) return;
document.write("' + afterComment + spanCktool);
if (is_ie9e) document.write('
');
if ((src != "easy") && (src != "thumb")) {
document.write("
" + bzloc_caching);
}
document.write('');
blenza_linkies_fini(src, owner, pi, secret, cols, data);
}
function blenza_linkies(src, owner, pi, secret, cols, data)
{
if (pi == "^Preview") data = previewData;
blenza_linkies_wrap1();
blenza_linkies_list(src, owner, pi, secret, cols, data);
if ((src == 'comm') || (src == 'disp')) return;
if (src == 'side')
blenza_linkies_side(src, owner, pi, secret, cols, data, "magic")
else
blenza_linkies_box(src, owner, pi, secret, cols, data, "magic")
blenza_linkies_wrap2();
}
var blenza_inited = true;
try {
blenza_setwho("","","");
blenza_setuser("");
blenza_setxurl("//www.blenza.com:80/linkies");
blenza_setthumbs("31Aug2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzFhdWcyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("1.5 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("31Aug2018");
blenza_linkies("thumb","lozzy","31Aug2018","1035712130",3,
[
// MzFhdWcyMDE4
["11249214","Granne","http://aavamaki.blogspot.com/2018/09/sheep-ski-designs-challengefor-kids.html",null,1535791354],
["11249215","pinky","https://pinkysworldsuprojects.blogspot.com/2018/09/get-well-bouquet.html",null,1535791676],
["11249247","Jane Willis","http://onionsandpaper.blogspot.com/2018/09/blue-and-gold-at-sparkles-christmas.html",null,1535799334],
["11249254","Priya Satish","https://creativemotif.blogspot.com/2018/09/make-art-everyday.html",null,1535800651],
["11249272","Carole J","https://cjcrafty.blogspot.com/2018/09/crafts-galore-encore-merry-cow.html",null,1535803625],
["11249274","Carole J","https://cjcrafty.blogspot.com/2018/09/gecko-galz-putting-on-ritz.html",null,1535803836],
["11249277","cheiro urgia","https://cheirourgia.blogspot.com/2018/09/birthday-note.html",null,1535804207],
["11249291","Kym","https://kyms-crafty-cards.blogspot.com/2018/09/ching-chou-kuik-digital-stamps.html",null,1535805226],
["11249296","Rose Stree","https://tatteredrosecrafts.blogspot.com/2018/09/autumns-here-card.html",null,1535805613],
["11249297","Rose Street","https://tatteredrosecrafts.blogspot.com/2018/09/autumns-here-card.html",null,1535805704],
["11249341","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/09/babykaartje.html",null,1535811807],
["11249361","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/09/tanti-auguri-milly.html",null,1535815319],
["11249410","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/new-baby-girl-exploding-box.html",null,1535823746],
["11249412","Jolanda","https://jolandasblogs.blogspot.com/2018/09/bingo-bij-do-all-kreatives.html",null,1535824452],
["11249454","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/09/goovy-baby.html",null,1535832992],
["11249457","Michelle M","http://chelleshocked2.blogspot.com/2018/09/dt-inspiration-petal-lu-september.html",null,1535833994],
["11249468","Hazel","http://craftyhazelnut.blogspot.com/2018/09/craftyhazelnuts-patterned-paper.html",null,1535837707],
["11249476","Irene","http://madeinborgo.blogspot.com/2018/09/gramps-card.html",null,1535839066],
["11249479","Hazel","http://craftyhazelnut.blogspot.com/2018/09/chnc-challenge-401.html",null,1535839419],
["11249554","Chandhini","https://thecreativetwins.blogspot.com/2018/09/pink-love-quilled-pendant.html",null,1535862785],
["11249573","Natalie Godfrey","https://natgodfrey.wordpress.com/2018/09/02/dream/",null,1535866378],
["11249586","Desire Fourie","http://desiref.blogspot.com/2018/09/yesterday-is-not-ours-color-it-create.html",null,1535869140],
["11249597","Davinia","https://ifindoubtbling.blogspot.com/2018/09/bewitched.html",null,1535873295],
["11249599","Doreen","https://doreensdream.blogspot.com/2018/09/christmas-10.html",null,1535873437],
["11249618","Andree","http://acecardsandree.blogspot.com/2018/09/crafts-galore-encore-september-2018.html",null,1535876526],
["11249650","Maya","https://mayas-hobbyblogg.blogspot.com/2018/09/dt-lhosm.html",null,1535884270],
["11249656","Sheryl Hare","https://marchharecards.blogspot.com/2018/09/clean-and-simple.html",null,1535885855],
["11249663","Helen","https://helenscrafthaven.blogspot.com/2018/09/pile-it-on-challenge-think-big.html",null,1535886877],
["11249689","sue","https://sue-hickey.blogspot.com/2018/09/dora-belle.html",null,1535891536],
["11249707","sue","https://sue-hickey.blogspot.com/2018/09/3d-besties.html",null,1535893994],
["11249711","Lisa Bird","https://craftycard-designs.co.uk/natures-gift-dragonflies/",null,1535894273],
["11249721","Jenna","http://jennagallery.blogspot.com/2018/09/pop-up-box-5x5.html",null,1535895448],
["11249732","monique","https://moniqueschattefor.blogspot.com/2018/09/3-jaar.html",null,1535896384],
["11249733","Kym","https://kyms-crafty-cards.blogspot.com/2018/09/birthday-wishes.html",null,1535896506],
["11249736","Julie T","https://juliescraftyspot.blogspot.com/2018/09/love-you-more-than-chocolate.html",null,1535896796],
["11249745","jenimc","http://jenicraftroom.blogspot.com/2018/09/from-me-to-you.html",null,1535898422],
["11249783","elizabeth h","http://warmharted.blogspot.com/2018/09/a-feather.html",null,1535903251],
["11249787","mi sitio scrap","https://misitioscrap.blogspot.com/2018/09/thanks-number-8.html",null,1535903954],
["11249812","mi sitio scrap","https://misitioscrap.blogspot.com/2018/09/thanks-number-8.htm9",null,0],
["11249813","mi sitio scrap","https://misitioscrap.blogspot.com/2018/09/thanks-number-9.html",null,1535907201],
["11249841","Craftartista","https://craftartista.blogspot.com/2018/09/enjoy-ride.html",null,1535913841],
["11249844","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/09/for-you.html",null,1535914461],
["11249864","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/deer-birthday-card.html",null,1535920314],
["11249873","DebiB","https://thatmightlookgoodonacard.blogspot.com/2018/09/baby-girl-card-lots-of-pink-ctmh-class.html",null,1535922586],
["11249878","Becca Yahrling","https://www.flickr.com/photos/133625822@N05/43524814945/in/dateposted-public/",null,1535924519],
["11249885","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/09/snippet-tags.html?m=0",null,1535928421],
["11249914","Donna R","https://indianainking.blogspot.com/2018/09/happy-fall-yall.html",null,1535943544],
["11249933","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2018/09/if-feathers-dont-ruffle.html",null,1535954923],
["11249948","Maria","https://maria-mood.blogspot.com/2018/09/smile.html",null,1535960109],
["11249954","jackie cornfield","https://getthejclook.blogspot.com/2018/09/shaker-card-always-fun-challenges.html",null,1535962806],
["11249962","Craftartista","https://craftartista.blogspot.com/2018/09/normal-is-boring.html",null,1535965805],
["11249963","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/09/per-il-compleanno-di-una-parrucchiera.html",null,1535966317],
["11249967","Michelle Lancaster","https://laughingducks2012.blogspot.com/2018/09/very-cute-lotv-kitty.html",null,1535967631],
["11249972","Carole J","https://cjcrafty.blogspot.com/2018/09/vera-lane-studio-sun-fleur.html",null,1535969186],
["11249979","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2018/09/forget-me-nots.html",null,1535970122],
["11249989","Dawn S","https://cherrytreestudio.blogspot.com/2018/09/things-are-bit-sketchy-mid-challenge.html",null,1535973537],
["11249991","Emma R","https://emgoescardmaking.blogspot.com/2018/09/whimsy-new-release-penguin-fun-in-fall.html",null,1535973679],
["11249997","MARLENE","https://cardsmadebymarlene.blogspot.com/2018/09/all-creatures-great-and-small-at-crafty.html",null,1535975607],
["11250005","Cheryl","https://www.cardsandclutter.com/2018/09/fall-greetings-be-leaf-sparkle-blends.html",null,1535977185],
["11250010","tinyworks","https://tinyworks81.blogspot.com/2018/09/card-flower-butterfly-dt-artistic.html",null,1535978059],
["11250011","tinyworks","https://tinyworks81.blogspot.com/2018/09/card-you-are-wonderful-guest-designer.html",null,1535978080],
["11250012","tinyworks","https://tinyworks81.blogspot.com/2018/09/card-aloha-friday-dt-simply-magnolia.html",null,1535978105],
["11250013","tinyworks","http://tinyworks81.blogspot.com/2018/09/card-smile-nuova-avventura-dt-magnolia.html",null,1535978124],
["11250024","Ellie","https://www.ellibellescorner.com/2018/09/penny-black-and-more-september-challenge.html",null,1535979875],
["11250058","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/little-girl-birthday-card.html",null,1535983963],
["11250059","Michelle","https://michelledees.blogspot.com/2018/09/deurhanger-door-hanger.html",null,1535984150],
["11250062","NanaConnie","https://mygrammysattic.blogspot.com/2018/09/rosy-birthday.html",null,1535984502],
["11250073","Mary Marsh","https://thecharmedlife-maryr917.blogspot.com/2018/09/coneflowers.html",null,1535986369],
["11250142","Larissa","https://car-d-elicious.blogspot.com/2018/09/dis-digi-stamps-fijne-verjaardag.html",null,1535997826],
["11250148","Tammy L","https://tampatha.wordpress.com/2018/09/03/uys-328-school-is-in/",null,1535998826],
["11250157","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/i-need-to-sea-you-soon-always-fun.html",null,1536000435],
["11250189","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2018/09/its-wonderful-town.html",null,1536007126],
["11250195","Pam Sebring","http://psebring.blogspot.com/2018/09/sympathy-fancy-fold.html",null,1536007776],
["11250221","Craftartista","https://craftartista.blogspot.com/2018/09/tropical-paradise.html",null,1536012597],
["11250278","Lisa :D","https://royalpumpkinart.blogspot.com/2018/09/stamptember-day-one-fancy-fairies.html",null,1536034506],
["11250289","Lisa :D","https://royalpumpkinart.blogspot.com/2018/09/anything-goes-new-challenge-with-angies.html",null,1536037446],
["11250330","Kali","https://bastelgrotte.de/?p=10300",null,1536053221],
["11250334","Angie J","https://angiescraftfusion.blogspot.com/2018/09/vls-sunflower.html",null,1536053743],
["11250360","Pippa","https://pippapblog.wordpress.com/2018/09/03/path-of-positivity-goes-orange/",null,1536056181],
["11250372","Michelle Lancaster","https://laughingducks2012.blogspot.com/2018/09/a-lovely-vase-of-flowers.html",null,1536058065],
["11250378","Tracey Rogers ","http://lalkygirl-my-creative-place.blogspot.com/2018/09/fire-and-ice-challenge.html",null,1536061076],
["11250393","Vivi Casale","http://handmadebyvivi.blogspot.com/2018/09/thank-you.html?_sm_au_=iHV3W4qzRR3H3SW4",null,1536064476],
["11250463","Rijacki Ledum: Back to School Fox","https://rijacki.blogspot.com/2018/09/back-to-school-TTCRD.html",null,1536073637],
["11250465","Ardilla","http://tarjetasdeardilla.blogspot.com/2018/09/gingermen-card.html",null,1536073697],
["11250471","Dawn Frost","http://stamp-n-play.blogspot.com/2018/09/bugaboo-knobby-knees-christmas-joy.html",null,1536074165],
["11250500","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/wedding-card.html",null,1536082302],
["11250546","MARLENE","https://cardsmadebymarlene.blogspot.com/2018/09/back-to-school-at-incy-wincy-designs.html",null,1536090311],
["11250562","Gloria Shirr ","https://purpleglocreations.blogspot.com/2018/09/thinking-of-you-card-using-whimsy.html",null,1536092652],
["11250576","Pauline C","https://passionforpapercraft.blogspot.com/2018/09/first-card-since-forever.html",null,1536096542],
["11250591","Teresa","http://redobsessioncards.blogspot.com/2018/09/baby-boy-teddy.html",null,1536099372],
["11250595","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/09/pockets-pockets-and-more-pockets.html",null,1536101024],
["11250597","Pauline C","https://passionforpapercraft.blogspot.com/2018/09/all-9s.html",null,1536101341],
["11250621","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/hi-bugaboo-new-release.html",null,1536107192],
["11250652","Pam Sebring","http://psebring.blogspot.com/2018/08/hair-day.html",null,1536118079],
["11250720","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/09/vlinder.html",null,1536133972],
["11250737","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/09/new-atg-challenge-ttcrd-m-medel.html",null,1536137984],
["11250789","Marja","http://marjaskaarten.blogspot.com/2018/09/notitieboekje.html",null,1536149348],
["11250805","jenimc","http://jenicraftroom.blogspot.com/2018/09/blue-and-gold-christmas-bauble.html",null,1536150805],
["11250825","Ardilla","http://tarjetasdeardilla.blogspot.com/2018/09/classic-christmas-colors.html",null,1536152832],
["11250855","Pippa","https://pippapblog.wordpress.com/2018/09/05/just-hanging/",null,1536157730],
["11250867","Michelle Lancaster","https://laughingducks2012.blogspot.com/2018/09/pennys-paper-crafty-no-396-sponsored-by.html",null,1536158556],
["11250991","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/wedding-card_5.html",null,1536179621],
["11251001","J. Atterbury Creations","http://jatterburycreations.blogspot.com/2018/09/cas-series-hugs-xoxo-set-join-613.html",null,1536181639],
["11251011","Teresa","http://redobsessioncards.blogspot.com/2018/09/vintage-school-photo.html",null,1536186055],
["11251014","Bisse","https://vasemmalkadella.blogspot.com/2018/09/onnea-on-paras-kaveri.html",null,1536187447],
["11251045","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/books-like-friends-catch-bug.html",null,1536198303],
["11251049","Craftartista","https://craftartista.blogspot.com/2018/09/just-chill-out.html",null,1536199930],
["11251051","Pam Sebring","http://psebring.blogspot.com/2018/09/oh-crap.html",null,1536200909],
["11251059","JuneOlsen","https://junebugcreations.wordpress.com/2018/09/05/su-card-swap-card-1/",null,1536203904],
["11251080","Birgit","https://cardsrfun.blogspot.com/2018/09/good-luck.html",null,1536215216],
["11251114","Lilly","http://lillys-craftcorner.blogspot.com/2018/09/vintage-car-card.html",null,1536233380],
["11251122","Donna R","https://indianainking.blogspot.com/2018/09/happy-birthday-to-ewe.html",null,1536237023],
["11251124","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/09/concertina-folds-for-junk-journals.html",null,1536237831],
["11251238","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/light-up-lantern.html",null,1536270911],
["11251371","monique","https://moniqueschattefor.blogspot.com/2018/09/dream.html",null,1536307844],
["11251386","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/09/trouwkaartje.html",null,1536310373],
["11251391","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/07/new-magazine-september-october-evil.html",null,1536310753],
["11251490","Meeta Bhalotia","https://thequillmillcrafts.blogspot.com/2018/09/mini-booklet-album.html",null,1536327473],
["11251557","elizabeth h","http://warmharted.blogspot.com/2018/09/tree-fairy.html",null,1536334961],
["11251562","elizabeth h","http://warmharted.blogspot.com/2018/09/kick-up-your-skates.html",null,1536336030],
["11251572","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/enjoy-chills-of-winter-colour-crazy.html",null,1536337834],
["11251597","Julie O","https://muddypawsinkyfingers.blogspot.com/2018/09/marriage-and-cards-for-bugaboo-stamps.html",null,1536341280],
["11251610","Princess","https://papercraftingparadise.blogspot.com/2018/09/prima-doll-card-envelope.html",null,0],
["11251632","Gloria Shirr - 2nd ","https://purpleglocreations.blogspot.com/2018/09/thank-you-shaker-card-using-ctmh-new.html",null,1536349714],
["11251648","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2018/09/love.html",null,1536352984],
["11251649","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2018/09/ribbon-andor-lace.html",null,1536353143],
["11251652","Teresa","http://redobsessioncards.blogspot.com/2018/09/a-glittering-angel.html",null,1536353964],
["11251660","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/personalised-anniversary-card.html",null,1536357752],
["11251664","Teresa","https://redobsessioncards.blogspot.com/2018/09/sunshine-pig.html",null,1536358171],
["11251692","Shamita","https://spiralcreativity.blogspot.com/2018/09/a-special-hug-love-birds.html",null,1536370741],
["11251699","ingunn","https://ingunnsinekort.blogspot.com/2018/09/bryllupskort.html",null,1536372979],
["11251729","Doreen","https://doreensdream.blogspot.com/2018/09/blue-poppy.html",null,1536383660],
["11251761","nnalorac","https://somethinggonemissing.blogspot.com/2018/09/dis-digi-designs-challenge-happy-fall.html",null,1536394093],
["11251762","Claudia","http://knutselmeisjes.blogspot.com/2018/09/joy-to-world.html",null,1536395713],
["11251774","niki1","https://www.youtube.com/watch?v=w5fLGWrHouk",null,0],
["11251775","niki1","https://www.splitcoaststampers.com/gallery/photo/2889713?&cat=500&ppuser=205884",null,0],
["11251780","Dreja","https://drejasbastelwelt.blogspot.com/2018/09/schneemann.html",null,1536400524],
["11251848","fiona walker","https://twinklingstarrystars.blogspot.com/2018/09/back-to-school.html",null,1536412416],
["11251851","Dewi","http://sundaymorningcard.blogspot.com/2018/09/celebrate.html",null,1536413533],
["11251853","coops","https://coopsclutteredcorner.blogspot.com/2018/09/vintage-makeup.html",null,1536413756],
["11251854","sue","https://sue-hickey.blogspot.com/2018/09/special-deals-sept-8th.html",null,1536413781],
["11251935","Melanie Gee","https://melgeecrafts.com/2018/09/08/crafty-sentiments-designs-september-new-release-day-5/",null,1536431463],
["11251939","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/the-futures-so-bright-pause-dream-enjoy.html",null,1536433188],
["11251942","Vannessa","http://saffiresstamping.blogspot.com/2018/09/the-paper-shelter-challenge-352-make-it.html",null,1536433626],
["11251944","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/hang-in-there-craftaholics-r-us.html",null,1536434240],
["11251961","Hazel","http://craftyhazelnut.blogspot.com/2018/09/chnc-challenge-402.html",null,1536439803],
["11251973","Julie T","https://juliescraftyspot.blogspot.com/2018/09/halloween-candy-bar-wrapper.html",null,1536444387],
["11252005","Davinia","https://ifindoubtbling.blogspot.com/2018/09/dead-men-tell-no-lies.html",null,1536464950],
["11252017","Michelle","https://michelledees.blogspot.com/2018/09/atc-coins.html",null,1536469513],
["11252035","Rijacki Ledum: Autumn Leaf","https://rijacki.blogspot.com/2018/09/back-to-school-TTCRD.htmlhttps://rijacki.blogspot.com/2018/09/autumn-leaf.html",null,0],
["11252036","Rijacki Ledum: Autumn Leaf","https://rijacki.blogspot.com/2018/09/autumn-leaf.html",null,1536473010],
["11252098","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/09/fijne-verjaardag.html",null,1536488901],
["11252125","Lisa :D","https://royalpumpkinart.blogspot.com/2018/09/stamptember-day-two-spread-your-wings.html",null,1536494674],
["11252134","Lisa :D","https://royalpumpkinart.blogspot.com/2018/09/anything-goes-new-challenge-with.html",null,1536495680],
["11252137","Lisa :D","https://royalpumpkinart.blogspot.com/2018/09/lots-of-glittersparkle-new-challenge.html",null,1536495844],
["11252148","Lisa :D","https://royalpumpkinart.blogspot.com/2018/09/stamptember-day-four-no-feeding.html",null,1536497086],
["11252266","Debra","https://debs-eternity-cards.blogspot.com/2018/09/christmas-bauble.html",null,1536510887],
["11252309","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/bauble-christmas-card.html",null,1536523296],
["11252310","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/1st-christmas-tree-decoration.html",null,1536523622],
["11252327","Becca Yahrling","https://www.flickr.com/photos/133625822@N05/43669673165/in/dateposted-public/",null,1536526356],
["11252347","Craftartista","https://craftartista.blogspot.com/2018/09/i-love-school.html",null,1536531686],
["11252410","Doreen","https://doreensdream.blogspot.com/2018/09/just-for-you.html",null,1536559356],
["11252420","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2018/09/feeling-spoilt.html",null,1536560434],
["11252422","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/09/love.html",null,1536561523],
["11252426","laura","https://laurangolo.blogspot.com/2018/09/busta-decorata.html",null,1536562874],
["11252469","monique","http://moniqueschattefor.blogspot.com/2018/09/herfst.html",null,1536574738],
["11252503","MARLENE","https://cardsmadebymarlene.blogspot.com/2018/09/girlie-at-dream-valley-challenge.html",null,1536577555],
["11252581","Ellie","https://www.ellibellescorner.com/2018/09/a-new-stamp-kit.html",null,1536586926],
["11252633","Lou Sims","https://lulucardmaking.blogspot.com/2018/09/explore-dream-discover-mixed-media-dies.html",null,1536596155],
["11252681","Gloria Shirr - 2nd ","https://purpleglocreations.blogspot.com/2018/09/birthday-card-using-ching-chou-kuik.html",null,1536605738],
["11252701","Nicky","http://stiggyscrafts.blogspot.com/2018/09/candle-and-box.html",null,1536607727],
["11252704","Melanie","https://creative-world-of-melanie.blogspot.com/2018/09/bike-kid.html",null,1536607957],
["11252737","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/on-bright-side-always-fun-challenge-75.html",null,1536612454],
["11252814","Sharda Maheshwari","https://craftkonacreations.blogspot.com/2018/09/one-in-melon.html",null,1536632851],
["11252849","Doreen","https://doreensdream.blogspot.com/2018/09/thank-you.html",null,1536643894],
["11252858","shylaa","https://adhiraacreations.blogspot.com/2018/09/floral-mixed-media-card.html",null,1536648891],
["11252863","Craftartista","https://craftartista.blogspot.com/2018/09/be-unique.html",null,1536652201],
["11252870","pinky","https://pinkysworldsuprojects.blogspot.com/2018/09/dont-forget.html",null,1536654620],
["11252872","jackie cornfield","http://getthejclook.blogspot.com/2018/09/autumn_10.html",null,1536656303],
["11252876","Aimeslee","https://paper-paisleys.blogspot.com/2018/09/santas-little-helper.html",null,1536658315],
["11252885","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2018/09/une-carte-toute-tendre.html",null,1536660825],
["11252888","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/09/hello-my-friend.html",null,1536661103],
["11252926","Judy V","http://jvzcreations.blogspot.com/2018/09/hey-pumpkin_10.html",null,1536670608],
["11252931","Maria Giselle B.","http://ienjoywhatido.blogspot.com/2018/09/lawn-fawn-halloween-wreath-builder.html",null,1536670874],
["11252938","Dewi","http://sundaymorningcard.blogspot.com/2018/09/thank-you.html",null,1536672531],
["11252940","NanaConnie","http://mygrammysattic.blogspot.com/2018/09/treats-not-tricks.html",null,1536672520],
["11252982","Tammy L","https://tampatha.wordpress.com/2018/09/11/c4g-all-at-sea/",null,1536678894],
["11252990","caroline","https://caroline-creaties.blogspot.com/2018/09/leuk-nieuws.html",null,1536679987],
["11253018","Lisa (wishcraft)","http://wishcraftcards.blogspot.com/2018/09/papercraft-challenges-special-occasions.html",null,1536683907],
["11253026","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/09/50-jaar.html",null,1536684832],
["11253055","Renate","https://dotjesparelsenjuweeltjes.blogspot.com/2018/09/papercraft-challenges-challenge-20.html",null,1536688145],
["11253078","cheiro urgia","https://cheirourgia.blogspot.com/2018/09/butterfly-box.html",null,1536692097],
["11253091","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/gift-box.html",null,1536696442],
["11253093","Rijacki: Card Shark","https://rijacki.blogspot.com/2018/09/card-shark.html",null,1536696901],
["11253102","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/09/a-pretty-lantern.html",null,1536697975],
["11253118","Teresa","http://redobsessioncards.blogspot.com/2018/09/black-haired-beauty.html",null,1536701964],
["11253210","Joy Wilson","http://joyfullystamps.blogspot.com/2018/09/mixed-up-poinsettia.html",null,1536731088],
["11253213","Andria","http://ionarosecards.blogspot.com/2018/09/belle-of-ball.html",null,1536732000],
["11253245","Anna","http://nonsolocard.blogspot.com/2018/09/packaging-per-un-baby-boy.html",null,1536739773],
["11253249","Shirley AC","https://nannieflash.blogspot.com/2018/09/challenge-353-embossing-of-any-kind.html",null,1536740264],
["11253265","Suze","http://craftysuze.blogspot.com/2018/09/trick-or-treat.html",null,1536743632],
["11253300","Claudia","http://knutselmeisjes.blogspot.com/2018/09/dikke-knuffel.html",null,1536750544],
["11253313","Andrea Norris","https://sheepskidesigns.blogspot.com/2018/09/golfing-guy.html",null,1536752815],
["11253328","CreaNancy","http://creanancy.blogspot.com/2018/09/gefeliciteerd-met-jullie-nieuwe-woning.html",null,1536755335],
["11253340","Donna","https://lakefrontstampingcreations.blogspot.com/2018/07/my-favorite-things-summer-school-day-1.html",null,1536756536],
["11253353","Julie Reed","http://pumpkinbellycards.blogspot.com/2018/09/game-on.html",null,1536759077],
["11253387","Pat K","http://patkscards.blogspot.com/2018/09/fabnfunky-challenge-407.html",null,1536763481],
["11253454","Pippa","https://pippapblog.wordpress.com/2018/09/12/happily-ever-after/",null,1536768951],
["11253508","Claudia Martins","https://1pandaideiascriativas.blogspot.com/2018/09/projeto-crafty-friends-embossing.html",null,1536784060],
["11253566","Judy McKay","http://insearchofmycreativeside.blogspot.com/2018/09/christmas-tag-septembers-inspirational.html",null,1536809357],
["11253573","Sharon Hudson","https://craftyhugs.blogspot.com/2018/09/trick-or-treat.html?m=1",null,1536813090],
["11253591","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/gift-bag.html",null,1536824848],
["11253595","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/09/inside-tunnel-card.html",null,1536826111],
["11253607","Hazel L","https://hazel-hazelshappyhouse.blogspot.com/2018/09/mawtt-add-ribbon.html",null,1536833145],
["11253609","Tip Top","http://tiptoptoppers.blogspot.com/2018/09/little-miss-muffet-stamps-challenge-197_13.html",null,1536835077],
["11253635","Craftartista","https://craftartista.blogspot.com/2018/09/learn-something-new-every-day.html",null,1536844802],
["11253650","Mindy Baxter","https://www.mycreativescoop.com/pretty-pink-posh-september-release-blog-hop-day-1/",null,1536847822],
["11253736","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/thankful-for-these-things-aud.html",null,1536861942],
["11253900","Ma-Mi","http://rilcekinkljuncek.blogspot.com/2018/09/se-nekaj-solskega.html",null,1536901474],
["11253949","Karen Letchworth","https://karen-mycuprunnethover.blogspot.com/2018/09/its-paper-sweeties-new-release-sneak.html",null,1536913903],
["11254019","Lisa :D","https://royalpumpkinart.blogspot.com/2018/09/stamptember-day-six-fashionable-kindness.html",null,1536924194],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}