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("13Feb2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTNmZWIyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("2 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("13Feb2018");
blenza_linkies("thumb","lozzy","13Feb2018","849369005",3,
[
// MTNmZWIyMDE4
["11169367","Desire Fourie","http://desiref.blogspot.co.za/2018/02/yesterday-february-2018-reminder.html",null,1518683962],
["11169368","le idee di penelope ","https://ideedipenelope.blogspot.it/2018/02/una-piccola-cris-cros-per-san-valentino.html",null,1518684007],
["11169373","basslady","https://bassladycreations.blogspot.de/2018/02/blumen-karte-gepragt-und-coloriert-mit.html?m=1",null,1518686025],
["11169382","Ann Chuang","https://anncard.blogspot.tw/2018/02/as-you-wish.html",null,1518689598],
["11169405","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com.au/2018/02/warm-hugs-from-this-crafty-gals-corner.html",null,1518698361],
["11169430","Annette Stapylton","https://annetteshobbyrosettes.blogspot.com.au/2018/02/morgans-artworld-challenge-01.html",null,0],
["11169434","valerie-jael","http://abitmoretimetocraft.blogspot.de/",null,0],
["11169435","valerie-jael","https://bastelmania-craftattack.blogspot.de/2018/02/the-thoughts-in-my-head.html",null,1518701648],
["11169495","AUNTY SUE","http://auntysuescraftcavern.blogspot.co.uk/2018/02/a-simple-thank-you.html",null,1518711128],
["11169516","Nicola Gold","http://amethystlilydesigns.blogspot.ca/2018/02/colourful-patchwork-at-ching-chou-kuik.html",null,1518713645],
["11169529","PaperPlotterLotta","http://paperplotterlottas-craftchaos.blogspot.de/2018/02/oddball-video-tutorial-application-of.html",null,1518716183],
["11169532","Lizzie","https://lizziescraftingretreat.blogspot.co.at/2018/02/concrete-mixer-for-your-birthday.html",null,1518716449],
["11169544","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2018/02/vintage-series-day-2-of-3.html",null,1518718424],
["11169547","Kleido","https://kleidosbastelstueble.wordpress.com/2018/02/15/rock-n-roll-baby-dt/",null,1518719950],
["11169548","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2018/02/15/digistamps4joy-february-challenge-145-option-i-love-you/",null,1518720449],
["11169570","Jackie T","https://tinyrosecr.blogspot.co.uk/2018/02/craft-challenge-blog-challenge-455.html",null,1518723249],
["11169579","Monika Reeck","http://creativewithmonika.blogspot.de/2018/02/atsm-279-cas-valentine-card.html",null,1518724223],
["11169590","Pippa","https://pippapblog.wordpress.com/2018/02/15/scribbles-designs-goes-green/",null,1518725066],
["11169599","Monika Reeck","http://creativewithmonika.blogspot.de/2018/02/mid-month-inspiration-cws-23-i-miss-you.html",null,1518725849],
["11169610","Lucinda Lucker","http://petallu.blogspot.co.uk/2018/02/im-dropping-in-today-to-show-you.html",null,1518728697],
["11169649","Sharon Hudson","http://craftyhugs.blogspot.co.uk/2018/02/first-dt-post-for-moving-along-with.html?m=1",null,1518735865],
["11169651","Jill Tiffany","https://jiecraftbyjilltiffany.blogspot.co.id/2018/02/lollipop.html",null,1518738269],
["11169672","Sharon Hudson","http://craftyhugs.blogspot.co.uk/2018/02/box-for-cards.html?m=1",null,1518744228],
["11169674","Linda Mc Enery","https://lindamscreations.blogspot.com.au/2018/02/kitty-acrobatics.html",null,1518744363],
["11169685","patty","http://pattyskreativseite.blogspot.de/2018/02/fur-betty-zum-burzeltag-hatte-ich-diese.html",null,1518746714],
["11169689","Donna R","https://indianainking.blogspot.com/2018/02/wild-roses.html",null,1518747626],
["11169719","Pam Sebring","http://psebring.blogspot.com/2018/02/storms.html",null,1518753412],
["11169788","Anna","http://nonsolocard.blogspot.it/2018/02/le-mie-prime-atc.html",null,1518769722],
["11169797","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/02/ching-chou-kuiks-digital-stamps_16.html",null,1518772082],
["11169826","Kim Costello","http://paperbabe.blogspot.co.uk/2018/02/paperbabe-stamps-challenge-67-sketch.html",null,1518777717],
["11169834","Željka","https://creativemomanddaughter.blogspot.hr/2018/02/hello-my-friends-time-for-new-anything.html",null,1518779401],
["11169841","Lilly","http://lillys-craftcorner.blogspot.co.uk/2018/02/crafty-catz-challenge-use-pretty-ribbon.html",null,1518780286],
["11169941","Margreet","http://margreets-scrapcards.blogspot.nl/2018/02/margaret-live-in-toaster.html",null,1518792698],
["11169952","Dreja","http://drejasbastelwelt.blogspot.de/2018/02/katze-im-ballon.html",null,1518793708],
["11169960","Jodi - Kaboo Designs","http://kaboodesigns.blogspot.com/2018/02/crafty-catz-gdt-week-3.html",null,1518794614],
["11170011","Helen H","http://helenscraftyshed.blogspot.co.uk/2018/02/abigail.html",null,1518801875],
["11170018","Vannessa","http://saffiresstamping.blogspot.co.uk/2018/02/little-miss-muffet-stamps-guest.html",null,1518803289],
["11170034","PaperPlotterLotta","http://paperplotterlottas-craftchaos.blogspot.de/2018/02/dt-julia-spiri-princess-in-castle.html",null,1518806388],
["11170100","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/02/if-i-was-meant-to-pop-out-of-bed.html",null,1518813588],
["11170166","Cornelia (fun stamping)","https://fun-stamping.blogspot.com/2018/02/dont-be-prick.html",null,1518823733],
["11170212","Priya Satish","http://creativemotif.blogspot.in/2018/02/courage.html",null,1518838074],
["11170238","AndreaBastelmaus","https://andreabastelmaus.blogspot.de/2018/02/herzlichen-gluckwunsch-zum-jubilaum.html",null,1518846337],
["11170250","Tracey Brossart","https://brossartaddiction.blogspot.com/2018/02/wishing-you-most-lovely-day-sketchy.html",null,1518850181],
["11170256","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/02/een-zoon.html",null,1518851174],
["11170306","Michelle Lancaster","https://laughingducks2012.blogspot.co.uk/2018/02/hello.html",null,1518868920],
["11170462","Pippa","https://pippapblog.wordpress.com/2018/02/17/bingo-with-bugaboo/",null,1518887282],
["11170494","Pippa","https://pippapblog.wordpress.com/2018/02/17/engaging-times/",null,1518890423],
["11170519","Pam Sebring","http://psebring.blogspot.com/2018/02/joyful-penguin.html",null,1518894575],
["11170525","Pam Sebring","http://psebring.blogspot.com/2018/02/christmas-in-woods.html",null,1518895419],
["11170530","Pam Sebring","http://psebring.blogspot.com/2018/02/youre-29.html",null,1518896795],
["11170690","Cicci With The Pen","https://ciccividpennan.blogspot.com/2018/02/lacy-sunshine-dragons.html ",null,1518937214],
["11170704","Marina","http://myperfectlifeuk.blogspot.co.uk/2018/02/the-library-challenge-pride-and.html",null,1518939961],
["11170724","Margreet","http://margreets-scrapcards.blogspot.nl/2018/02/snoopy.html",null,1518944507],
["11170761","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/02/hello-baby.html",null,1518949947],
["11170880","Jane Willis","http://onionsandpaper.blogspot.co.uk/2018/02/the-tiger-who-came-to-tea.html",null,1518964896],
["11170885","Ellie","http://livelaughstamp.blogspot.com/2018/02/penny-black-and-more-midmonth-post.html",null,1518965629],
["11170923","Carol","https://justmeclm.blogspot.ca/2018/02/red-and-green-peacockthe-library.html",null,1518970412],
["11170942","elizabeth h","http://warmharted.blogspot.com/2018/02/just-for-you.html",null,1518972230],
["11170990","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/02/always-thinking-of-you-catch-bug.html",null,1518977721],
["11170993","jenimc","http://jenicraftroom.blogspot.co.uk/2018/02/lace-pearls-and-flowers.html",null,1518977888],
["11171009","Christi C","http://art-without-anxiety.blogspot.com/2018/02/week-2-and-chickens-of-janis-birthday.html",null,1518981137],
["11171032","pinky","https://pinky-pinkysworld.blogspot.co.uk/2018/02/flourishing-phrases.html",null,1518985800],
["11171111","Craftartista ","https://craftartista.blogspot.gr/2018/02/polar-bear.html",null,1519013349],
["11171149","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/02/het-is-jouw-verjaardag.html",null,1519027340],
["11171162","Sabina","http://artbysabina.blogspot.si/2018/02/tcccb-190-321-recipe.html",null,1519031028],
["11171171","Birgit","https://cardsrfun.blogspot.se/2018/02/fluttering-by-to-say-hi.html",null,1519034024],
["11171214","Beatriz","https://beascrapbooking.blogspot.com.es/2018/02/recordatorio-reto-febrero-colouring-in.html",null,1519042444],
["11171224","MARLENE","https://cardsmadebymarlene.blogspot.co.uk/2018/02/things-with-wings-at-dream-valley.html",null,1519043904],
["11171242","Sue T","https://suescraftycorner-sue.blogspot.co.uk/2018/02/21st-birthday-card.html",null,1519047885],
["11171251","Dawn S","https://cherrytreestudio.blogspot.co.uk/2018/02/bingo-just-little-bit-excited.html",null,1519049075],
["11171277","CarolG NZ","https://creationsnz.blogspot.co.nz/2018/02/ducky-friends.html",null,1519052475],
["11171279","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/02/good-luck-in-your-new-job-kevin.html",null,1519052736],
["11171344","Cheryl","http://www.cardsandclutter.com/2018/02/oceans-of-joy.html",null,1519059304],
["11171389","jenimc","http://jenicraftroom.blogspot.co.uk/2018/02/iranifoam-flower-circle.html",null,1519069880],
["11171396","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/02/hugs-on-valentines-day-monika-and.html",null,1519070716],
["11171401","Cath","https://katykrunch.blogspot.co.uk/2018/02/take-two.html",null,1519072372],
["11171427","America","https://cardsbyamerica.blogspot.com/2018/02/its-coffee-date.html",null,1519076110],
["11171541","Beverley","https://purplestormsblog.blogspot.co.uk/2018/02/my-favorite-things-youre-rawr-some.html",null,1519106321],
["11171551","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2018/02/sideshow.html",null,1519110056],
["11171564","le idee di penelope ","https://ideedipenelope.blogspot.it/2018/02/ospite-su-ttcrd-che-onoreeeeee.html",null,1519113374],
["11171591","Ina","http://vintagebyina.blogspot.nl/2018/02/b-day.html",null,0],
["11171604","Ina","https://vintagebyina.blogspot.nl/2018/02/b-day.html",null,1519125309],
["11171616","Pippa","https://pippapblog.wordpress.com/2018/02/19/shades-of-red-on-the-path-of-positivity/",null,1519129713],
["11171659","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/02/hoera-jij-bent-vandaag-jarig.html",null,1519138250],
["11171661","Kali","http://bastelgrotte.de/?p=9154",null,1519138294],
["11171697","Pippa","https://pippapblog.wordpress.com/2018/02/20/wild-roses-for-january/",null,1519141095],
["11171752","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/02/may-simple-joys-bugaboo-new-release.html",null,1519150393],
["11171824","Tracey","http://lalkygirl-my-creative-place.blogspot.co.uk/2018/02/all-my-love.html",null,1519161409],
["11171842","Angie J","https://angiescraftfusion.blogspot.com.au/2018/02/vls-arthur-ave-roller-girl-atc.html",null,1519164232],
["11171939","Lisa :D","https://royalpumpkinart.blogspot.com/2018/02/anything-goes-new-challenge-with_16.html",null,1519194626],
["11172003","Julie P","https://julieprice3.wordpress.com/2018/02/21/come-fly-with-me-2/",null,1519204116],
["11172104","sparkling pink","https://sparklingpinktitta.blogspot.it/2018/02/amici-gatti.html",null,1519222171],
["11172182","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/02/hugs-kisses-fopr-friend.html",null,1519229965],
["11172199","Rijacki: Dirty-Clean","http://rijacki.blogspot.com/2018/02/clean-dirty-TTCRD.html",null,1519231961],
["11172243","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/02/they-say-youre-only-young-once.html",null,1519235506],
["11172257","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/02/thank-you-for-many-wonderful-things-in.html",null,1519238469],
["11172269","Claudia","http://knutselmeisjes.blogspot.be/2018/02/fairy-tale.html",null,1519239703],
["11172381","Pippa","https://pippapblog.wordpress.com/2018/02/21/best-friends-day/",null,1519249451],
["11172426","Teresa","https://redobsessioncards.blogspot.co.uk/2018/02/butterflies.html",null,1519260804],
["11172515","Sheryl Hare","https://marchharecards.blogspot.co.uk/2018/02/anything-goes-at-i-love-promarkers.html",null,1519293000],
["11172517","Beatriz","http://beascrapbooking.blogspot.com.es/2018/02/reto-crafty-sentiments-designs-spring.html",null,1519293271],
["11172523","carol gill","https://crafty-stamper.blogspot.co.uk/2018/02/black-ice-atcs.html",null,1519294527],
["11172535","Elly Booij","https://ellyscardcreatief.blogspot.nl/2018/02/true.html",null,1519298273],
["11172539","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com.au/2018/02/nature-with-team-lou-at-southern-girls.html",null,1519299770],
["11172559","Julie Gearinger","http://stampingwithjuliegearinger.blogspot.com/2018/02/happy-together.html",null,1519306986],
["11172571","Dreja","http://drejasbastelwelt.blogspot.de/2018/02/zwei-osterkarten.html",null,1519309638],
["11172585","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/02/hot-stuff.html",null,1519313656],
["11172589","Lou Sims","https://lulucardmaking.blogspot.co.uk/2018/02/happy-anniversary-using-bubbly-funk.html",null,1519314224],
["11172621","Anna","http://nonsolocard.blogspot.it/2018/02/mini-album.html",null,1519319539],
["11172692","Debra","https://debs-eternity-cards.blogspot.co.uk/2018/02/peacock-queen-and-vines-and-berries.html",null,1519332320],
["11172719","Victoria R","https://victorias-crafting-creations.blogspot.co.uk/2018/02/cdd-boys-cool-treats-card.html?m=1",null,1519339442],
["11172741","Nicola Gold","https://amethystlilydesigns.blogspot.ca/2018/02/pocket-fairy-at-ching-chou-kuik.html",null,1519346411],
["11172754","Sharon Hudson","https://craftyhugs.blogspot.co.uk/2018/02/creative-moments-challenge-dt-post.html?m=1",null,1519349698],
["11172756","patty","https://pattyskreativseite.blogspot.de/2018/02/fur-die-challenge-bei-creative-moments.html",null,1519350241],
["11172769","Gail Hutchinson","https://hutcho53.blogspot.com.au/2018/02/oddball-art-stamps-img290-dino-girl.html",null,1519353647],
["11172846","Maria","http://maria-mood.blogspot.bg/2018/02/sew-happy.html",null,1519374514],
["11172867","Teresa","https://redobsessioncards.blogspot.co.uk/2018/02/ombre-flowers.html",null,1519379873],
["11172875","Tip Top","http://tiptoptoppers.blogspot.co.uk/2018/02/polkadoodle-chalenge-spring-colours-or.html",null,1519383063],
["11172944","debo","https://deboskaartenhoekje.blogspot.be/2018/02/special-deals-bij-scrappers-delights.html",null,1519392701],
["11172954","sweetpea","https://sweetpea-janscraftyspot.blogspot.co.uk/2018/02/beanie-girl.html",null,1519394374],
["11172975","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/02/colour-crazy-challenge-blog-friday-23.html",null,1519396066],
["11173008","Mindy Baxter","https://www.mycreativescoop.com/creating-a-light-source-from-a-certain-direction-using-copic-markers/",null,1519399292],
["11173065","Pippa","https://pippapblog.wordpress.com/2018/02/23/old-boots/",null,1519410183],
["11173080","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/02/happy-birthday-bugaboo-free-friday.html",null,1519411733],
["11173090","elizabeth h","http://warmharted.blogspot.com/2018/02/cocktail-girl.html",null,1519414172],
["11173098","Julie Reed","http://pumpkinbellycards.blogspot.co.uk/2018/02/peacock-queen.html",null,1519415277],
["11173107","Suze","http://craftysuze.blogspot.co.nz/2018/02/just-for-you.html",null,1519416457],
["11173152","Teresa","https://redobsessioncards.blogspot.co.uk/2018/02/purple-ribbon.html",null,1519427010],
["11173245","Aimeslee Winans","https://paper-paisleys.blogspot.com/2018/02/tag-back-love-and-post-card.html",null,0],
["11173246","Aimeslee Winans","https://paper-paisleys.blogspot.com/2018/02/mementos-and-alphas.html",null,1519454160],
["11173315","Pippa","https://pippapblog.wordpress.com/2018/02/24/sunny-flowers-for-mother/",null,1519472568],
["11173318","Karen Dunbrook","https://snippets-karen.blogspot.ca/2018/02/paper-weaving.html",null,1519473037],
["11173393","Nicolette","http://nicoletteskaarten.blogspot.nl/2018/02/wilma-is-jarig.html",null,1519479808],
["11173404","Marja","http://marjaskaarten.blogspot.nl/2018/02/baby-girl.html",null,1519480922],
["11173480","Ellie","http://livelaughstamp.blogspot.com/2018/02/allsorts-456-and-papercrafters-linky.html",null,1519488909],
["11173534","Wies*","http://wiescreablog.blogspot.nl/2018/02/vlinders-butterflies.html",null,1519497496],
["11173599","Craftartista","https://craftartista.blogspot.gr/2018/02/act-more.html",null,1519515264],
["11173627","Cathy P.","https://corysnana1.blogspot.com/2018/02/my-time-to-craft-challenge-365.html",null,1519519627],
["11173724","Rosina","http://rosina-scrapcards.blogspot.nl/2018/02/felicitatiekaartje.html",null,1519545240],
["11174047","Zora","http://lofquisten.blogspot.se/2018/02/graskala.html",null,1519595886],
["11174191","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/02/margo-is-jarig.html",null,1519633842],
["11174197","Ans Gilbert","http://dekaartenvanonsmam.blogspot.nl/2018/02/in-de-lappenmand.html",null,1519635528],
["11174199","Carole J","https://cjcrafty.blogspot.co.uk/2018/02/vera-lane-studio-little-houses.html",null,1519635537],
["11174216","Craftartista","https://craftartista.blogspot.gr/2018/02/owl.html",null,1519638852],
["11174229","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/02/i-have-been-asked-to-make-birthday-card.html",null,1519644850],
["11174244","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/02/wedding-rsvp.html",null,1519648290],
["11174247","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2018/02/hartelijk-gefeliciteerd.html",null,1519648748],
["11174280","Jenna","http://jennagallery.blogspot.cz/2018/02/pig-stamp-set-card-triangle-box.html",null,1519653675],
["11174414","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/02/i-love-you-waffle-lot.html",null,0],
["11174415","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/02/bbtb2_26.html",null,1519668612],
["11174477","Melanie","http://creative-world-of-melanie.blogspot.de/2018/02/valentines-sweets.html",null,1519675711],
["11174596","Ma-Mi","http://rilcekinkljuncek.blogspot.si/2018/02/pikcasti-zapiski.html",null,1519686193],
["11174667","Merlina","https://mycraftingstories.blogspot.co.id/2018/02/love-you.html",null,1519701257],
["11174715","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2018/02/keys-to-my-dreams.html",null,1519714784],
["11174859","Arpita","http://arpitashouseofcreation.blogspot.in/2018/02/mm-tag-one-true-love.html",null,1519744543],
["11174899","Suzana Čermelj","https://www.pinterest.com/pin/524669425333069058/",null,1519749064],
["11174907","Marie-louise","http://mirrescrap.blogspot.se/2018/02/blue-canvas.html",null,1519749901],
["11174918","Pippa","https://pippapblog.wordpress.com/2018/02/27/postal-love/",null,1519751354],
["11174924","Pippa","https://pippapblog.wordpress.com/2018/02/27/new-release-at-bugaboo-3/",null,1519751942],
["11174953","Larissa","https://car-d-elicious.blogspot.nl/2018/02/fairytale-challenge-188-rainbow-black.html",null,1519754929],
["11174972","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/02/hello-friend-bugaboo-new-release.html",null,1519757826],
["11175009","Melanie","http://creative-world-of-melanie.blogspot.de/2018/02/emily-showers-of-love.html",null,1519763254],
["11175010","Tone K.","http://tonesscrapperom.blogspot.no/2018/02/winter-scenic-card.html",null,1519763321],
["11175032","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/02/birthday-card_27.html",null,1519766113],
["11175051","Pippa","https://pippapblog.wordpress.com/2018/02/27/playing-with-my-prize/",null,1519769416],
["11175232","Nicolette","https://nicoletteskaarten.blogspot.nl/2018/02/baby-boy.html",null,1519799288],
["11175307","Pippa","https://pippapblog.wordpress.com/2018/02/28/christmas/",null,1519812365],
["11175313","Beatriz","https://beascrapbooking.blogspot.com.es/2018/02/tarjeta-par-anina-comunion-con-sello.html",null,1519814470],
["11175327","Pippa","https://pippapblog.wordpress.com/2018/02/28/rak-with-scrappers-delights/",null,1519816588],
["11175377","Lisa :D","https://royalpumpkinart.blogspot.com/2018/02/birthdays-for-boys.html",null,1519821759],
["11175392","Larissa","https://car-d-elicious.blogspot.nl/2018/02/gerda-steiner-designs-lettuce-be.html",null,1519822355],
["11175421","Lisa :D","https://royalpumpkinart.blogspot.com/2018/02/anything-goes-new-challenge-with_26.html",null,1519824002],
["11175452","TracyM 6773 (3)","https://tracyscraftyadventures.blogspot.com.au/2018/03/anything-goes-with-us-at-crafty-gals.html",null,1519827062],
["11175454","TracyM 6773 (4)","https://tracyscraftyadventures.blogspot.com.au/2018/03/more-anything-goes-at-crafty-gals-corner.html",null,1519827103],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}