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("31Jan2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzFqYW4yMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("13 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("31Jan2019");
blenza_linkies("thumb","lozzy","31Jan2019","1916049183",3,
[
// MzFqYW4yMDE5
["11306534","Daydream Believer","https://daydreambeliever-gina.blogspot.com/2019/02/classic-card.html",null,1549009518],
["11306548","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/02/challenge-di-febbraio-magnolia-forever.html",null,1549015138],
["11306658","My Other World","http://scrapsdamaryv.blogspot.com/2018/09/crative-with-stamps-inspiracao-de.html",null,1549033900],
["11306665","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/02/sons-birthday-card.html",null,1549034782],
["11306688","Tina - Easel Card","https://paperplotterlottas-craftchaos.blogspot.com/2019/01/oddball-creepy-cute-chronicles-ccc34.html",null,0],
["11306689","Tina - Easel Card","https://paperplotterlottas-craftchaos.blogspot.com/2019/02/oddball-creepy-cute-chronicles-ccc38.html",null,1549038892],
["11306724","Jackie T","https://tinyrosecr.blogspot.com/2019/02/crafts-galore-encore-challenge-blog.html",null,1549043538],
["11306728","Jasmina","https://handmadebyjasmina.blogspot.com/2019/02/fb-papirckarice-33-izziv-zacaran-gozd.html",null,1549043795],
["11306732","Silke","https://kartenkram.blogspot.com/2019/02/alice.html",null,1549044164],
["11306736","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/02/happy-birthday.html",null,1549044655],
["11306750","tinyworks","http://tinyworks81.blogspot.com/2019/02/designer-team-magnolia-forever-challenge.html",null,1549045709],
["11306759","Carole J","https://cjcrafty.blogspot.com/2019/02/crafts-galore-encore-fae-3.html",null,1549046420],
["11306777","Kym","https://kyms-crafty-cards.blogspot.com/2019/02/ching-chou-kuik-digital-stamps-february.html",null,1549047493],
["11306839","Michelle M","https://chelleshocked2.blogspot.com/2019/02/conie-fong-dt-bella-and-benji.html",null,1549059286],
["11306867","Craftartista: Mia","https://craftartista.blogspot.com/2019/02/package-delivered-to-ysnelda.html",null,1549064132],
["11306928","Donna R","https://indianainking.blogspot.com/2019/02/one-more-card-for-today.html",null,1549076296],
["11306936","Karthikha","https://loveforkrafts.blogspot.com/2019/02/make-wish.html",null,1549081858],
["11306947","Kleido","https://kleidosbastelstueble.wordpress.com/2019/02/01/ein-gemixter-keilrahmen-dt/",null,1549084611],
["11306995","Andree","https://acecardsandree.blogspot.com/2019/02/crafts-galore-encore-february-2019.html",null,1549102191],
["11307022","Hannapanna","https://hannapannabloggar.blogspot.com/2019/02/week-5-colour-crazy-challenges.html",null,1549109116],
["11307086","Alex","https://alexkreativeseite.blogspot.com/2019/02/keilrahmen-zum-70er.html",null,1549117863],
["11307126","jenimc","https://jenicraftroom.blogspot.com/2019/02/swinging-valentine.html",null,1549123827],
["11307155","Gale K","https://galesstampingcorner.blogspot.com/2019/02/let-it-snow.html",null,1549126703],
["11307192","CarolG NZ","https://creationsnz.blogspot.com",null,1549129253],
["11307213","Hazel","https://craftyhazelnut.blogspot.com/2019/02/craftyhazelnuts-patterned-paper.html",null,1549133736],
["11307219","Hazel","https://craftyhazelnut.blogspot.com/2019/02/chnc-challenge-423.html",null,1549134452],
["11307285","Liz Cavill","https://crafty-lizc.blogspot.com/2019/02/ribbon-and-texture.html",null,1549149351],
["11307372","Keencrafter ","https://keencrafter.blogspot.com/2019/02/whimsy-stamps-february-new-digital.html",null,1549164827],
["11307382","Keencrafter","https://keencrafter.blogspot.com/2019/02/classic-dt-open-challenge-february-2.html",null,1549167183],
["11307426","Barbara Bruder","http://artandsoulcreations.blogspot.com/2019/02/new-baby.html",null,1549174999],
["11307471","Granne","https://aavamaki.blogspot.com/2019/02/alice-with-her-friends.html",null,1549181871],
["11307477","Hermien","https://handmadebyhermien.blogspot.com/2019/02/nieuwe-challenge-k.html",null,1549183023],
["11307502","Caroline's Creaties","http://caroline-creaties.blogspot.com/2019/02/voor-martijn.html",null,1549188711],
["11307511","terry","https://cardscreativity.blogspot.com/2019/02/we-love-to-create-challenge-2-anything.html",null,1549190484],
["11307513","Rutscht","https://rutscht.blogspot.com/2019/02/la-vie-est-belle.html",null,1549190781],
["11307514","Sheryl Hare","https://marchharecards.blogspot.com/2019/02/use-critter-at-613-avenue-create.html",null,1549190762],
["11307516","creativEle","https://creativele.blogspot.com/2019/02/hearts-and-flowers-at-simply-magnolia.html",null,1549190934],
["11307543","Kym","https://kyms-crafty-cards.blogspot.com/2019/02/thank-you-card.html",null,1549194360],
["11307562","Marja","https://marjaskaarten.blogspot.com/2019/02/mijn-beste-vriend.html",null,1549196009],
["11307566","Helen","https://helenscrafthaven.blogspot.com/2019/02/pile-it-on-challenge-pretty-in-pink.html",null,1549196090],
["11307633","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/02/gefeliciteerd.html",null,1549204915],
["11307715","Dawn Frost","http://stamp-n-play.blogspot.com/2019/02/bugaboo-winter-bird-house.html",null,1549212011],
["11307744","elizabeth h","http://warmharted.blogspot.com/2019/02/pretty-in-pink-heart.html",null,1549216199],
["11307783","elizabeth h","http://warmharted.blogspot.com/2019/02/love-you-fairy-much.html",null,1549218950],
["11307796","Larissa","https://car-d-elicious.blogspot.com/2019/02/neat-and-tangled-little-stinker.html",null,1549219858],
["11307812","Plony","https://plonysbloggie.blogspot.com/2019/02/zullen-we-nog-maar-een-vintage-kaartje.html",null,1549221385],
["11307835","Colinda","https://colindasblog.blogspot.com/2019/02/baby.html",null,1549225475],
["11307846","Majda","https://majdinustvarjalninemir.blogspot.com/2019/02/valentinovoljubezenobletnica-nov-izziv.html",null,1549227537],
["11307963","laura","https://laurangolo.blogspot.com/2019/02/giallo-e-blu.html",null,1549263722],
["11307969","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/02/valentine.html",null,1549266008],
["11307990","Desire Fourie","https://desiref.blogspot.com/2019/02/life-your-life-design-team-project.html",null,1549269597],
["11308004","CreaNancy","https://creanancy.blogspot.com/2019/02/catch-bug-sss-703.html",null,1549271806],
["11308027","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/02/challenge-di-febbraio-simply-magnolia.html",null,1549277011],
["11308033","le idee di penelope","https://ideedipenelope.blogspot.com/2019/02/cera-una-volta-un-brucaliffo-anzi-due.html",null,1549277756],
["11308036","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/02/birthday-fishes.html",null,1549278000],
["11308059","Lisa :D","https://royalpumpkinart.blogspot.com/2019/02/hearts-new-challenge-with-simply-create.html",null,1549283719],
["11308086","Deonna B","http://ialwayslovetomakecards.blogspot.com/2019/02/abstract-painting-of-waterfall-using.html",null,1549288456],
["11308099","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/02/you-always-lift-me-up.html",null,1549291515],
["11308101","Dawn S","https://cherrytreestudio.blogspot.com/2019/02/happy-new-year-and-anything-goes.html",null,1549291823],
["11308112","Lisa :D","https://royalpumpkinart.blogspot.com/2019/02/anything-goeslove-new-challenge-with.html",null,1549292297],
["11308159","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2015784788471110/?type=3&theater",null,1549297662],
["11308173","Repolainen","https://repolainenreissaa.blogspot.com/2019/02/kylman-kukkia.html",null,1549302259],
["11308187","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/02/love-is-in-air.html",null,1549304065],
["11308211","marleen v wetten","http://marleenvanwetten.blogspot.com/2019/01/valentijn-2019.html",null,1549308119],
["11308231","Caz Crafty Bits","https://cazcraftybits.blogspot.com/2019/02/for-special-friend.html",null,1549310843],
["11308237","Anna","https://nonsolocard.blogspot.com/2019/02/favoloso.html",null,1549312370],
["11308381","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/02/deurhanger.html",null,1549353514],
["11308395","Marja","https://marjaskaarten.blogspot.com/2019/02/deurhanger.html",null,1549356501],
["11308403","Maya","https://mayas-hobbyblogg.blogspot.com/2019/02/bursdagbirthday.html",null,1549358312],
["11308411","Tip Top","http://tiptoptoppers.blogspot.com/2019/02/rubber-duckie.html",null,1549362157],
["11308413","Lisa","https://ellas-design.blogspot.com/2019/02/passion-for-promarkers-flora-and-fauna.html",null,1549362693],
["11308424","Larissa","https://car-d-elicious.blogspot.com/2019/02/gummiapan-you-make-everything-better.html",null,1549364935],
["11308427","Larissa","https://car-d-elicious.blogspot.com/2019/02/guestdesigner-through-craftroom-door.html",null,1549365230],
["11308433","Aileen Ryan","https://colourandsparkle.blogspot.com/2019/02/the-flower-challenge-29-use-your-latest.html",null,1549366143],
["11308465","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/02/purrr-fect.html",null,1549369962],
["11308467","creativEle","https://creativele.blogspot.com/2019/02/have-fabulous-birthday-with-new-release.html",null,1549370215],
["11308470","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/02/love-on-path-of-positivity.html",null,1549370678],
["11308480","Craftartista: Mia","https://craftartista.blogspot.com/2019/02/fairies-and-bubbles.html",null,1549371478],
["11308491","Deonna B","http://ialwayslovetomakecards.blogspot.com/2019/02/bible-art-journaling-page-using-james.html",null,1549374605],
["11308555","TRACEYMO","https://mowbraydesigns.blogspot.com/2019/02/classic-dt-challenge.html",null,1549383926],
["11308576","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/02/voor-jeroen.html",null,1549388932],
["11308680","Carole J","https://cjcrafty.blogspot.com/2019/02/vera-lane-studio-birthdays-look-good-on.html",null,1549400403],
["11308682","Zora","https://lofquisten.blogspot.com/2019/02/dopkort-i-rosa.html",null,1549400578],
["11308889","Teresa","http://redobsessioncards.blogspot.com/2019/02/baby-girl.html?m=1",null,1549449225],
["11308923","Teresa","http://redobsessioncards.blogspot.com/2019/02/winter-kitty.html?m=1",null,1549454275],
["11308928","Linda Mc Enery","https://lindamscreations.blogspot.com/2019/02/pennys-paper-crafty-challenge-416.html",null,1549454644],
["11308931","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/02/love-grows-here.html",null,1549456231],
["11309064","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/02/make-it-girly-at-incy-wincy-design.html",null,1549471143],
["11309139","cheiro urgia","https://cheirourgia.blogspot.com/2019/02/red-rose.html",null,1549478750],
["11309154","Koraliki Beaty","https://koralikibeaty.blogspot.com/2019/02/niebieska-walentynka-zainspiruj-sie-dla.html",null,1549481750],
["11309181","Chriss","https://chrissandlou.blogspot.com/2019/02/my-lovely-valentine-basket.html",null,1549486682],
["11309183","Teresa","http://redobsessioncards.blogspot.com/2019/02/the-star-of-show.html?m=1",null,1549486828],
["11309192","AJ","https://ajcreativeenergy.blogspot.com/2019/02/millas-dance.html",null,1549489299],
["11309197","Cass","https://casscreatingnow.blogspot.com/2019/02/orange-today.html",null,1549490450],
["11309222","Judy V","https://jvzcreations.blogspot.com/2019/02/cute-as-button-designer-inspiration.html",null,1549500517],
["11309257","tina maree","http://tinas-cards.blogspot.com/2019/02/scrappers-delights.html",null,1549509480],
["11309308","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/02/big-dog-birthday.html",null,1549527555],
["11309315","decorcraftdesign","https://decorcraftdesign.wordpress.com/2019/02/07/diy-valentine-wire-gift-tags/",null,1549531937],
["11309317","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/02/chabby-chic-card.html",null,1549532377],
["11309330","Katrine","https://katrinehspapirverden.blogspot.com/2019/01/klem.html",null,1549536106],
["11309352","*Vicki*","https://stampedsmiles.com/2019/02/07/anything-goes-at-cute-card-thursday/",null,1549541889],
["11309436","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2019/02/valentine-colours.html",null,1549556187],
["11309462","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/02/vandaag-maar-weer-eens-een-kerstkaart.html",null,1549560727],
["11309509","Michelle Lancaster","https://laughingducks2012.blogspot.com/2019/02/pennys-paper-crafty-challenge-no-416.html",null,1549568233],
["11309516","America","https://cardsbyamerica.blogspot.com/2019/02/golden-butterflies.html",null,1549569234],
["11309531","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/02/love-everything-about-you-aud.html",null,1549571455],
["11309641","Karthikha","https://loveforkrafts.blogspot.com/2019/02/altenew-layered-medallion-card-6.html",null,1549588744],
["11309750","Teresa","http://redobsessioncards.blogspot.com/2019/02/loving-bears.html?m=1",null,1549619115],
["11309891","Teresa","http://redobsessioncards.blogspot.com/2019/02/pastel-christmas.html?m=1",null,1549637522],
["11309969","elizabeth h","http://warmharted.blogspot.com/2019/02/little-lady-bug.html",null,1549643705],
["11309983","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/02/orchids.html",null,1549645347],
["11309989","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/02/im-thinking-of-you-today-colour-crazy.html",null,1549646447],
["11309994","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/02/love-ewe-bugaboo-free-friday.html",null,1549647236],
["11310002","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/02/jongensbaby.html",null,1549647799],
["11310015","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/02/i-love-you-crafty-catz-challenge-448.html",null,1549648613],
["11310042","monique","https://moniqueschattefor.blogspot.com/2019/02/beertje-hugs.html",null,1549651895],
["11310055","Kym","https://kyms-crafty-cards.blogspot.com/2019/02/ching-chou-kuiks-digital-stamps.html",null,1549654033],
["11310095","AJ","https://ajcreativeenergy.blogspot.com/2019/02/happy-family.html",null,1549659465],
["11310200","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/02/met-oprechte-deelneming.html",null,1549696311],
["11310210","Wendy Batchen","https://wenscreations.blogspot.com/2019/02/cute-as-button-progressive-facebook.html",null,1549701078],
["11310224","monique","https://moniqueschattefor.blogspot.com/2019/02/beertje-love.html",null,1549704430],
["11310228","Hazel","https://craftyhazelnut.blogspot.com/2019/02/chnc-challenge-424.html",null,1549704729],
["11310234","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/02/en-rouge-et-noir-et-blanc-et-des-travaux.html",null,1549706783],
["11310298","Michelle","https://michelledees.blogspot.com/2019/02/herfst-elfjes-autumn-fairiies.html",null,1549717387],
["11310310","Cinderella","https://cinderellasdreamcardsblog.blogspot.com/2019/02/een-verlaat-verjaardagsvervroegd.html",null,1549718428],
["11310493","Gina","https://ginascards.blogspot.com/2019/02/new-challenge-at-polkadoodles-crafting.html",null,1549735046],
["11310528","Fleur","https://fleurapassionforcraft.blogspot.com/2019/02/a-pocketful-of-love.html",null,1549742224],
["11310553","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2019/02/just-to-say.html",null,1549746962],
["11310586","Craftartista: Mia","https://craftartista.blogspot.com/2019/02/fly-kite-and-package-delivered-to-diana.html",null,1549754658],
["11310596","Monica C.","https://sunshinecreativity.blogspot.com/2019/02/paper-dolls.html",null,1549756741],
["11310689","Dreja","https://drejasbastelwelt.blogspot.com/2019/02/fur-sweet-stampers.html",null,1549786384],
["11310737","Vic","http://brightandbreezycrafts.blogspot.com/2019/02/birthday-wishes.html",null,1549796703],
["11310767","Scatty Jan","https://scrappyscatty.blogspot.com/2019/02/happy-sunday.html",null,1549799223],
["11310815","Maryann Scrapbooking","https://maryann-scrap.blogspot.com/2019/02/un-joyeux-non-anniversaire-toi-bea.html",null,1549808211],
["11310833","Nicky","https://stiggyscrafts.blogspot.com/2019/02/sweet-jars.html",null,1549810768],
["11310837","Judy V","https://worldwideopendesignteamchallenge.blogspot.com",null,0],
["11310838","Judy V","https://jvzcreations.blogspot.com/2019/02/little-miss-cupid.html",null,1549811191],
["11311059","Maxine D .","https://kiwimeskreations.blogspot.com/2019/02/mindful-stacked-roses.html",null,1549868045],
["11311084","Rosina","http://rosina-scrapcards.blogspot.com/2019/02/happy-birthday.html",null,1549873404],
["11311094","Grietje's Kaartenhoekje","https://grietje78.blogspot.com/2019/02/verjaardagskaartje.html",null,1549875518],
["11311107","jackie cornfield","https://getthejclook.blogspot.com/2019/02/forever-valentine.html",null,1549878674],
["11311149","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/02/citrus-love.html",null,1549886211],
["11311184","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/02/lief-meisje.html",null,1549892703],
["11311274","Monica C.","https://sunshinecreativity.blogspot.com/2019/02/a-sky-of-butterflies.html",null,1549904684],
["11311324","Crafty Purple Frog","https://amycraftypurplefrog.blogspot.com/2019/02/i-am-so-in-love-with-heffy-doodle.html",null,1549916004],
["11311325","Craftartista: Mia","https://craftartista.blogspot.com/2019/02/papercrafts-and-tote-bag.html",null,1549916246],
["11311479","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/02/buongiorno-tutti-oggi-bologna-e-una.html",null,1549961378],
["11311484","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com/2019/02/fluttering-by-to-say.html",null,1549961851],
["11311503","GerJanne","https://gerjanneke2.blogspot.com/2019/02/i-love-you.html",null,1549966701],
["11311546","Craftartista","https://craftartista.blogspot.com/2019/02/full-of-love.html",null,1549975593],
["11311576","Maria Rodriguez","https://swimbikerunandstamp.blogspot.com/2019/02/pretty-in-green.html",null,1549978054],
["11311613","Nisha","https://creationspersonalised.blogspot.com/2019/02/heart.html",null,1549981225],
["11311678","Lia","https://kreativ-lia.blogspot.com/2019/02/papierdrahtfigur-zum-80-geburtstag.html",null,1549989366],
["11311703","Silke","https://kartenkram.blogspot.com/2019/02/love-ewe.html",null,1549997466],
["11311748","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/01/sozalje.html",null,1550007925],
["11311772","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/02/squirrels-and-snow-ladies.html",null,1550013267],
["11311852","Jootje","https://jootjesscrapcards.blogspot.com/2019/02/65-years.html",null,1550044214],
["11311875","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/02/elegantly-yours.html",null,1550048519],
["11311936","Craftartista","https://craftartista.blogspot.com/2019/02/for-my-lovely-friend.html",null,1550057575],
["11311949","Craftartista","https://craftartista.blogspot.com/2019/02/romantic-candle.html",null,1550059050],
["11312006","Nelleke","https://farmerblog-nelleke.blogspot.com/2019/02/little-baby.html",null,1550066652],
["11312106","Ellie","https://www.ellibellescorner.com/2019/02/ellibelles-crafty-wednesday-more.html",null,1550073233],
["11312122","Melanie","https://creative-world-of-melanie.blogspot.com/2019/02/atc-herz-felix.html",null,1550075764],
["11312130","Melanie","https://creative-world-of-melanie.blogspot.com/2019/02/with-love-from-ellie.html",null,1550076874],
["11312136","Melanie","https://creative-world-of-melanie.blogspot.com/2019/02/dragon-birthday.html",null,1550077522],
["11312142","Deonna B","http://ialwayslovetomakecards.blogspot.com/2019/02/my-sons-birthday-card-with-elk-in.html",null,1550077790],
["11312206","Claudia","http://knutselmeisjes.blogspot.com/2019/02/beautiful-love.html",null,1550089742],
["11312212","Zora","https://lofquisten.blogspot.com/2019/02/rosor.html",null,1550091142],
["11312227","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/02/anything-goes-at-crafty-creations.html",null,1550099711],
["11312232","Monica C.","https://sunshinecreativity.blogspot.com/2019/02/fancy-flowers.html",null,1550100801],
["11312266","Seema saraf","https://craftsbyseema.blogpost.com",null,0],
["11312310","Plony","https://plonysbloggie.blogspot.com/2019/02/druk-druk-druk.html",null,1550139456],
["11312320","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/02/howdy-yall.html",null,1550143363],
["11312357","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/02/ik-heb-vandaag-een-mannenkaart-gemaakt.html",null,1550154660],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}