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("28Jun2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MjhqdW4yMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("2 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("28Jun2018");
blenza_linkies("thumb","lozzy","28Jun2018","952357589",3,
[
// MjhqdW4yMDE4
["11227474","Desire Fourie","http://desiref.blogspot.com/2018/07/work-of-art-color-it-creat-it-show-it.html",null,1530430535],
["11227489","jenimc","http://jenicraftroom.blogspot.com/2018/07/all-kinds-of-weather.html",null,1530434713],
["11227548","Hazel","http://craftyhazelnut.blogspot.com/2018/07/craftyhazelnuts-patterned-paper-july.html",null,1530446783],
["11227550","Jackie T","https://tinyrosecr.blogspot.com/2018/07/crafts-galore-encore-challenge-blog.html",null,1530446893],
["11227552","Željka","https://creativemomanddaughter.blogspot.com/2018/07/polkadoodles-new-release-ruby-gift.html",null,1530447329],
["11227590","Wies*","https://wiescreablog.blogspot.com/2018/07/90-jaar.html",null,1530450475],
["11227608","Granne","http://aavamaki.blogspot.com/2018/07/july-in-did.html",null,1530451592],
["11227694","Željka","https://creativemomanddaughter.blogspot.com/2018/07/ruby-oo-la-la-new-polkadoodles-release.html",null,1530462727],
["11227707","pinky","https://pinkysworldsuprojects.blogspot.com/2018/07/youve-been-pimped.html",null,1530466188],
["11227725","Carole J","https://cjcrafty.blogspot.com/2018/07/crafts-galore-encore-birdsong.html",null,1530467723],
["11227736","Lilly","http://lillys-craftcorner.blogspot.com/2018/07/you-rock.html",null,1530472551],
["11227742","Renate","https://renatekaarten.blogspot.com/2018/07/koekje-bij-de-thee.html",null,1530472888],
["11227767","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/07/floral-heart-card.html",null,1530479103],
["11227790","Helene","https://lescreationsdhelene.blogspot.com/2018/07/une-carte.html",null,1530488632],
["11227835","Aileen Ryan","https://colourandsparkle.blogspot.com/2018/07/love-you.html",null,1530501110],
["11227844","Gloria Shirr ","http://purpleglocreations.blogspot.com/2018/06/all-occasion-card-using-conie-fong_30.html",null,1530507590],
["11227855","Ans Gilbert","http://dekaartenvanonsmam.blogspot.com/2018/07/its-special-day.html",null,1530511770],
["11227874","tinyworks","http://tinyworks81.blogspot.com/2018/07/card-pink-dt-simply-magnolia.html",null,1530517365],
["11227878","Cristina","https://rutscht.blogspot.com/2018/07/you-make-my-heart-sing.html",null,1530518312],
["11227880","Hazel","http://craftyhazelnut.blogspot.com/2018/07/happy-birthday.html",null,1530519656],
["11227886","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/07/una-im-possible-card-per-mamma.html",null,1530521139],
["11227889","Gail Hutchinson","https://hutcho53.blogspot.com/2018/07/sheepski-designs-july-2018-blog.html",null,1530522001],
["11227902","Željka","https://creativemomanddaughter.blogspot.com/2018/07/party-girls-polkadoodles-new-release.html",null,1530527545],
["11227926","NanaConnie","http://mygrammysattic.blogspot.com/2018/07/fairy-godmother-in-training.html",null,1530533993],
["11227943","Ann-Marie Johansson","https://systeryster-annemi.blogspot.com/2018/07/time-for-challenge-68-in-aurora-wings.html",null,1530537605],
["11227953","Craftyjulie","https://craftyjulie57.blogspot.com/2018/07/at-least-two-or-more-dies-punches-or.html",null,1530539086],
["11227960","Judy McKay","http://insearchofmycreativeside.blogspot.com/2018/07/lets-go-travelling.html",null,1530539681],
["11227968","Laine","https://dreamlaine.blogspot.com/2018/07/whisper-of-sea.html",null,1530540670],
["11228020","Majda","https://majdinustvarjalninemir.blogspot.com/2018/07/sopek-porocnih-cestitk.html",null,1530546728],
["11228040","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/let-freedom-ring-always-fun-challenges.html",null,1530549012],
["11228042","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/get-well-soon.html",null,1530551962],
["11228063","jenimc","http://jenicraftroom.blogspot.com/2018/07/the-start-of-day.html",null,1530557879],
["11228067","MARLENE","https://cardsmadebymarlene.blogspot.com/2018/07/at-least-2-dies-andor-punches-at-crafty.html",null,1530558405],
["11228079","Craftartista","https://craftartista.blogspot.com/2018/07/vintage-butterfly.html",null,1530560903],
["11228094","Linda Mc Enery","https://lindamscreations.blogspot.com/2018/07/the-paper-girls-challenge-155-cute-as.html",null,1530565581],
["11228139","Sherry G","http://loosestitchesandunraveledthreads.blogspot.com/2018/07/mix-it-up-challenge-15.html",null,1530576046],
["11228157","Donna R","https://indianainking.blogspot.com/2018/07/one-layer-wonders-day-5.html",null,1530581331],
["11228161","Barbara Bruder","http://artandsoulcreations.blogspot.com/2018/07/peace.html",null,1530583100],
["11228167","Uma Didwania","https://craftinlife.blogspot.com/2018/07/heart-shaped-card.html?m=1",null,1530586328],
["11228171","Pam Sebring","http://psebring.blogspot.com/2018/07/celebrate.html",null,1530589623],
["11228181","Barbara Bruder","http://artandsoulcreations.blogspot.com/2018/07/with-love.html",null,1530593315],
["11228201","Desire Fourie","http://desiref.blogspot.com/2018/07/birthday-time-digistamps4joy-july-2018.html",null,1530600210],
["11228233","Ann-Marie Johansson","https://systeryster-annemi.blogspot.com/2018/07/new-challenge-starts-today-at-ttcrd.html",null,1530608894],
["11228246","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/07/zomer-dus-ijsjes.html",null,1530613221],
["11228259","tinyworks","http://tinyworks81.blogspot.com/2018/07/card-party-at-beach-dt-digy-choosday.html",null,1530614970],
["11228282","Victoria R","https://victorias-crafting-creations.blogspot.com/2018/07/ls-flowers-and-curls-girl-card.html?m=1",null,1530620444],
["11228309","Angelique","https://engeldesignsscrap.blogspot.com/2018/07/sassy-sally.html",null,1530628596],
["11228314","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/07/bauble-deccoration.html",null,1530630230],
["11228340","Scatty Jan","https://scrappyscatty.blogspot.com/2018/07/distress-oxides-and-stencils-background.html",null,1530634132],
["11228355","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/hope-you-feel-better-soon.html",null,1530636953],
["11228367","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/hello-summer-bugaboo-new-release.html",null,1530637975],
["11228375","Crealientje","https://isocrealientje.blogspot.com/2018/07/dream-big.html",null,1530639788],
["11228376","DebiB","https://thatmightlookgoodonacard.blogspot.com/2018/07/tuesday-throwdown-challenge-399-with-my.html",null,1530639793],
["11228384","Wies*","https://wiescreablog.blogspot.com/2018/07/liftkaart-met-bladeren.html",null,1530642034],
["11228392","elizabeth h","http://warmharted.blogspot.com/2018/07/party-owls.html",null,1530643813],
["11228409","Karen","https://craftykarenj.blogspot.com/2018/07/add-sentiment.html",null,1530646476],
["11228457","Sharon Hudson","https://craftyhugs.blogspot.com/2018/06/grandfather-and-child.html?m=1",null,1530660150],
["11228458","Sharon Hudson","https://craftyhugs.blogspot.com/2018/07/sparkle-pens-and-fantasy-stamps.html?m=1",null,1530660190],
["11228478","1 panda","https://1pandaideiascriativas.blogspot.com/2018/07/projeto-dt-desafio-mondays-greetings.html",null,1530663647],
["11228479","1 panda","https://1pandaideiascriativas.blogspot.com/2018/07/fadas-flores.html",null,1530663701],
["11228528","lynsey mccord","https://lynseymccord.blogspot.com/2018/06/paper-nest-dolls-emmas-sweet-friend-hi.html",null,1530680350],
["11228529","lynsey mccord","https://lynseymccord.blogspot.com/2018/07/christmas-in-july-faery-ink-hi-everyone.html",null,1530680440],
["11228609","jenimc","http://jenicraftroom.blogspot.com/2018/07/lets-go-fly-kite.html",null,1530694235],
["11228636","Angie J","https://angiescraftfusion.blogspot.com/2018/07/birthday-balloons.html",null,1530703215],
["11228640","My Other World","http://scrapsdamaryv.blogspot.com/2018/07/flor-de-cerejeira-postal-pennys.html",null,1530704008],
["11228668","Granne","http://aavamaki.blogspot.com/2018/07/birhtday-balloons.html",null,1530707997],
["11228682","Michelle","https://michelledees.blogspot.com/2018/07/rot-weiss-blau-red-white-blue.html",null,1530710260],
["11228702","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/07/pde-ch-27-scallops.html",null,1530712729],
["11228718","Amelia B","https://otomys.wordpress.com/2018/07/04/set-sail/",null,1530715945],
["11228757","Mindy Baxter","https://www.mycreativescoop.com/step-by-step-how-to-color-a-slice-of-watermelon-using-copic-markers/",null,1530723446],
["11228763","Judy McKay","https://insearchofmycreativeside.blogspot.com/2018/07/cutting-dies-and-punches-challenge.html",null,1530725062],
["11228803","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2018/07/stitching-real-or-faux.html",null,1530727306],
["11228849","Pam Sebring","http://psebring.blogspot.com/2018/07/red-white-and-blue.html",null,1530735108],
["11228892","Julie P","https://3.bp.blogspot.com/-a9yIPDkZWsc/WoXxk1ZrDSI/AAAAAAAANYY/5EklU-6G2q0hyAi7K5NMOYxG9TJPiHu3gCLcBGAs/s320/cfth%2Bblog%2Bheader%2Bdt%2Bfav.png",null,1530751797],
["11228926","Željka","https://creativemomanddaughter.blogspot.com/2018/07/aud-sentiments-challenge-207-flowers.html",null,1530775385],
["11228927","Sherry G","http://loosestitchesandunraveledthttp://loosestitchesandunraveledthreads.blogspot.com/2018/07/morgans-artworld-open-challenge.html",null,0],
["11228928","Sherry G","http://loosestitchesandunraveledthreads.blogspot.com/2018/07/morgans-artworld-open-challenge.html",null,1530775541],
["11228932","Marja","http://marjaskaarten.blogspot.com/2018/07/sweet-magic-girl.html",null,1530776524],
["11228936","Sharon","https://frommycraftdesk.blogspot.com/2018/07/visible-image-seahorse-for-making-cards.html",null,1530776842],
["11228937","pinky","https://pinkysworldsuprojects.blogspot.com/2018/07/to-coin-phrase.html",null,1530776975],
["11228944","Cicci With The Pen","https://ciccividpennan.blogspot.com/2018/07/new-edition-of-ttcrd-magazine-clover.html",null,1530778981],
["11228947","Jane Willis","http://onionsandpaper.blogspot.com/2018/07/a-card-for-darnell.html",null,1530779672],
["11228966","Aileen Ryan","https://colourandsparkle.blogspot.com/2018/07/the-flower-challenge-22-monochrome.html",null,1530789484],
["11228969","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/07/seasons-greetings.html",null,1530791026],
["11229035","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/everywhere-you-go-aud-sentiments-207.html",null,1530816295],
["11229048","Claudia","http://knutselmeisjes.blogspot.com/2018/07/gouden-bruiloft.html",null,1530819867],
["11229050","Glittertastic","http://glittertastic.blogspot.com/2018/07/14th-birthday-spots-and-stripes.html",null,1530820245],
["11229058","Vannessa","http://saffiresstamping.blogspot.com/2018/07/little-miss-muffet-stamps-inspiration.html",null,1530822866],
["11229118","Pam Sebring","http://psebring.blogspot.com/2018/07/come-grow-old-with-me.html",null,1530839425],
["11229144","elizabeth h","http://warmharted.blogspot.com/2018/07/surfs-up-mermaid.html",null,1530850429],
["11229176","Kym","http://kyms-crafty-cards.blogspot.com/2018/07/ching-chou-kuiks-digital-stamps.html",null,1530856734],
["11229186","Nabeela","https://nabeelasmakerysite.wordpress.com/2018/07/06/1025/",null,1530861567],
["11229197","Daydream Believer","https://daydreambeliever-gina.blogspot.com/2018/07/hello-sailor.html",null,1530864602],
["11229209","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/07/babyboy.html",null,1530868983],
["11229216","Hazel","http://craftyhazelnut.blogspot.com/2018/07/musical-birthday.html",null,1530870073],
["11229253","Hazel","http://craftyhazelnut.blogspot.com/2018/07/christmas-fun.html",null,1530878693],
["11229268","Marie Flayer","http://njstampingqueen.blogspot.com/2018/07/color-dare-300-bashful-mink-and-pacifica.html",null,1530880510],
["11229272","Cath","https://katykrunch.blogspot.com/2018/07/art-for-arts-sake.html",null,1530881362],
["11229286","Marja","http://marjaskaarten.blogspot.com/2018/07/doosje-met-chocolade.html",null,1530883698],
["11229299","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2018/07/05/the-purrmaids-dt-inspiration/",null,1530887159],
["11229305","Ginny B","http://homespuncards.blogspot.com/2018/07/a-teddy-bear-thank-you.html",null,1530887936],
["11229356","Ines","https://inka-mojmalyswiat.blogspot.com/2018/07/inspiracja-dla-i-love-digi.html",null,1530894998],
["11229362","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/happy-birthday-dude-gd-colour-crazy.html",null,1530897330],
["11229373","Gina","https://ginascards.blogspot.com/2018/07/new-challenge-at-polkadoodles-crafting.html",null,1530898237],
["11229376","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/sun-bring-bright-sunny-days-bugaboo.html",null,1530898417],
["11229422","AJ","https://ajcreativeenergy.blogspot.com/2018/07/racquet-randi-notecard.html",null,1530905957],
["11229459","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/07/bauble-decoration.html",null,1530916249],
["11229461","Teresa","http://redobsessioncards.blogspot.com/2018/07/blue-butterflies.html",null,1530917105],
["11229490","Norma","https://creatingandsharingit.blogspot.com/2018/07/polkadoodles-anything-goes-challenge.html",null,1530935151],
["11229494","Michelle","https://michelledees.blogspot.com/2018/07/krant-newspaper.html",null,1530937624],
["11229513","Cass","https://casscreatingnow.blogspot.com/2018/07/brown-sugar-280-6th-july-2018.html",null,1530943814],
["11229523","Helen","https://helenscrafthaven.blogspot.com/2018/07/pbsc-july-anything-goes-or-baby.html",null,1530947293],
["11229549","Hazel","https://craftyhazelnut.blogspot.com/2018/07/chnc-challenge-393.html",null,1530952327],
["11229593","Lisa Bird","https://craftycard-designs.co.uk/its-your-birthday-2/",null,1530960171],
["11229605","Melanie Gee","https://melgeecrafts.com/2018/07/07/challenge-for-creative-craft-cottage-07-07-2018/",null,1530960858],
["11229675","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/07/most-wonderful-time-of-year.html",null,1530974796],
["11229680","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/07/80th-birthday-celebrations.html",null,1530975304],
["11229729","Gale K","http://galesstampingcorner.blogspot.com/2018/07/under-sea.html",null,1530981875],
["11229802","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/happy-birthday-to-my-baby-bear.html",null,1530988128],
["11229821","Craftartista","https://craftartista.blogspot.com/2018/07/school.html",null,1530993030],
["11229849","Debra Shaw","https://debs-eternity-cards.blogspot.com/2018/07/little-ladybird-from-all-dressed-up.html",null,1531001166],
["11229995","AnnChuangCrafts","https://anncard.blogspot.com/2018/07/hope-your-day-is-happy.html",null,1531049624],
["11230015","Jacki D","https://cookingupacard.blogspot.com/2018/07/rare-earth-pin-ups.html",null,1531053465],
["11230031","Judy V","http://jvzcreations.blogspot.com/2018/07/morgans-artworld-june-mid-point-post.html",null,1531055899],
["11230062","Plony","http://plonysbloggie.blogspot.com/2018/07/life-is-peachy.html",null,1531062933],
["11230076","Donna R","https://indianainking.blogspot.com/2018/07/one-layer-wonders-day-5.htmlhttps://indianainking.blogspot.com/2018/07/complementary-colors.html",null,1531067254],
["11230134","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/congratulations.html",null,1531083811],
["11230330","Majda","https://majdinustvarjalninemir.blogspot.com/2018/07/izziv-na-temo-pocitnice-in-bonboncek-ob.html",null,1531140555],
["11230340","Craftartista","https://craftartista.blogspot.com/2018/07/lady-with-flowers.html",null,1531142149],
["11230358","Dreja","https://drejasbastelwelt.blogspot.com/2018/07/osterkarte-und-bauernhof.html",null,1531144461],
["11230410","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/07/mooi-paars-is-niet-lelijk.html",null,1531154341],
["11230418","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/herbs-always-fun-challenge-66.html",null,1531155761],
["11230432","Pat K","http://patkscards.blogspot.com/2018/07/cupcake-thief.html",null,1531159839],
["11230487","Craftartista","https://craftartista.blogspot.com/2018/07/pretty-in-pink.html",null,1531175986],
["11230512","Olivia","http://ormcraftynights.blogspot.com/2018/07/kraftin-kimmie-book-lover.html",null,0],
["11230569","Cathymac","https://goldeninkspirations.blogspot.com/2018/07/rolling-along.html",null,1531212920],
["11230576","Beatriz","https://beascrapbooking.blogspot.com/2018/07/reto-crafty-sentiments-designs.html",null,1531215181],
["11230596","America","https://cardsbyamerica.blogspot.com/2018/07/celebrate-america.html",null,1531221529],
["11230603","ScrappyHorses","http://scrappyhorses.blogspot.com/2018/06/ruby-raindrop.htmlhttps://scrappyhorses.blogspot.com/2018/07/pre-historic-wings.html",null,0],
["11230604","ScrappyHorses","https://scrappyhorses.blogspot.com/2018/07/pre-historic-wings.html",null,1531223498],
["11230679","Rijacki: Peacock Carousel","http://rijacki.blogspot.com/2018/07/peacock-carousel-TTCRD.html",null,1531234557],
["11230704","Liz McGuire","http://buttonsforbrains.blogspot.com/2018/07/my-little-worldsweet-as-candy.html",null,1531240381],
["11230715","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/find-joy-in-ordinary-bugaboo-new-release.html",null,1531243850],
["11230737","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/07/congratulations-on-your-new-home.html",null,1531250263],
["11230751","Rachelle Olaridge","http://http://scrapping247365.blogspot.com/2018/07/tuesday-throwdown-card-challenge.html/2018/05/card-challenge-at-tuesday-throwdown.html",null,1531254091],
["11230758","AJ","https://ajcreativeenergy.blogspot.com/2018/07/bonsai.html",null,1531255149],
["11230778","Teresa","http://redobsessioncards.blogspot.com/2018/07/christmas.html",null,1531261200],
["11230800","Lisa :D","https://royalpumpkinart.blogspot.com/2018/07/anything-goes-new-challenge-with_6.html",null,1531268210],
["11230801","Lisa :D","https://royalpumpkinart.blogspot.com/2018/07/no-patterned-paper-new-challenge-with.html",null,1531268696],
["11230821","Gloria Shirr - 2nd","https://purpleglocreations.blogspot.com/2018/07/thank-you-card-using-ching-chou-kuik.html",null,1531275094],
["11230851","Teresa","http://redobsessioncards.blogspot.com/2018/07/mermaid.html",null,1531286095],
["11230858","Ma-Mi","http://rilcekinkljuncek.blogspot.com/2018/07/feeling-sketchy-v-vsakem-cvetu-je-nekaj.html",null,1531286850],
["11230895","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2018/07/acorn-sprite.html",null,1531293898],
["11230899","jackie cornfield","https://getthejclook.blogspot.com/2018/07/atg-always-fun-challenges.html",null,1531294716],
["11230903","jackie cornfield","https://getthejclook.blogspot.com/2018/07/summertimeseaside.html",null,1531295781],
["11230930","Teresa","http://redobsessioncards.blogspot.com/2018/07/sundae.html",null,1531304638],
["11231040","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/07/bloemenmand.html",null,1531319157],
["11231150","Judy Markowitz","https://scrappyonmylevel.blogspot.com/2018/07/are-you-loving-this-amazing-first.html",null,1531334175],
["11231172","AJ","https://ajcreativeenergy.blogspot.com/2018/07/hello.html",null,1531339937],
["11231187","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/happy-birthday-craftaholics-r-us-28.html",null,1531342869],
["11231188","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/happy-birthday-pause-dream-enjoy-28.html",null,1531343425],
["11231190","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/07/birthday-card-for-lady-that-likes-to.html",null,1531344908],
["11231191","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/07/merry-christmas.html",null,1531345009],
["11231292","Craftartista","https://craftartista.blogspot.com/2018/07/sail-away.html",null,1531395632],
["11231332","Dewi","http://sundaymorningcard.blogspot.com/2018/07/love.html",null,1531403179],
["11231350","MARLENE","https://cardsmadebymarlene.blogspot.com/2018/07/shabby-chic-at-craft-challenge.html",null,1531413480],
["11231364","Cicci With the Pen","https://ciccividpennan.blogspot.com/2018/07/the-julyaugust-2018-issue-of-ttcrd-mo.html",null,1531415549],
["11231365","Chandhini","https://thecreativetwins.blogspot.com/2018/07/greeting-card-red-love.html",null,1531415768],
["11231406","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/07/birthday-card-for-knitter.html",null,1531424425],
["11231421","Teresa","http://redobsessioncards.blogspot.com/2018/07/pink-flowers.html",null,1531430039],
["11231487","Jootje","http://jootjesscrapcards.blogspot.com/2018/07/summer-holiday.html",null,1531457229],
["11231618","Nicolette","http://nicoletteskaarten.blogspot.com/2018/07/borduurkaart.html",null,1531493485],
["11231619","Alpna Kale","https://showurfeelings.blogspot.com/2018/07/life-is-beautiful.html",null,1531493643],
["11231684","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/07/bella-on-presents.html",null,1531502006],
["11231697","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/you-are-mermazing-colour-crazy-challenge.html",null,1531503589],
["11231700","Rijacki: Popcorn and a Movie","https://rijacki.blogspot.com/2018/07/popcorn-and-movie.html",null,1531504087],
["11231704","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/07/you-make-me-smile-bugaboo-free-friday.html",null,0],
["11231713","AJ","https://ajcreativeenergy.blogspot.com/2018/07/sailboat.html",null,1531506898],
["11231721","elizabeth h.","https://warmharted.blogspot.com/2018/07/luau.html",null,1531507629],
["11231788","Donna R","https://indianainking.blogspot.com/2018/07/hb-to-you.html",null,1531523780],
["11231796","Kate Yetter","https://kateyetter.com/find-the-magic-mixed-media-art-journal/",null,1531529826],
["11231878","Dr Monika Shukla (India) 1","http://uroocreations.blogspot.com/2018/07/scrapping4fun-challenges-challenge-119.html",null,1531562939],
["11231880","Dr Monika Shukla (India) 2","https://uroocreations.blogspot.com/2018/07/crafting-with-friends-challenge-71.html",null,1531563013],
["11231881","Dr Monika Shukla (India) 3","https://uroocreations.blogspot.com/2018/07/my-friend-you-are-amazing-creative.html",null,1531563110],
["11231882","Dr Monika Shukla (India) 4","https://uroocreations.blogspot.com/2018/07/happily-ever-after-my-happy-packs.html",null,1531563184],
["11231883","Dr Monika Shukla (India) 5","https://uroocreations.blogspot.com/2018/07/home-sweet-home-heart-shape-pendant-for.html",null,1531563260],
["11231904","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/07/new-home-card.html",null,1531569192],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}