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("13Jan2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTNqYW4yMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("13 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("13Jan2019");
blenza_linkies("thumb","lozzy","13Jan2019","1909300865",3,
[
// MTNqYW4yMDE5
["11300352","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/01/shakeriamo.html",null,1547544593],
["11300358","tinyworks","https://tinyworks81.blogspot.com/2019/01/card-new-winter-skates-gdt-crafty.html",null,1547546035],
["11300359","tinyworks","https://tinyworks81.blogspot.com/2019/01/shaker-card-happy-birthday-designer.html",null,1547546053],
["11300363","Rutscht","https://rutscht.blogspot.com/2019/01/always.html",null,1547547304],
["11300415","Elena V","https://0-nubesdeazucar-0.blogspot.com/2019/01/dulce-invierno.html",null,1547553058],
["11300489","ScrappyHorses","https://scrappyhorses.blogspot.com/2019/01/mammoth-love.html",null,1547562272],
["11300544","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2019/01/15/digistamps4joy-january-challenge-156-option-four-seasons/",null,1547570524],
["11300584","Shamita","https://spiralcreativity.blogspot.com/2019/01/balloons-girl.html",null,1547576481],
["11300588","Karen","https://craftykarenj.blogspot.com/2019/01/masculine-cards.html",null,1547577733],
["11300661","Teresa","http://redobsessioncards.blogspot.com/2019/01/congratulations.html?m=1",null,1547593074],
["11300682","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/01/spellbinders-blue-for-you.html",null,1547597554],
["11300764","Rijacki Ledum","https://rijacki.blogspot.com/2019/01/winter-magic.html",null,1547614810],
["11300842","tinyworks","http://tinyworks81.blogspot.com/2019/01/card-he-loves-me-gdt-crafty-sentiment.html",null,1547631429],
["11300849","Janes Journal","https://jane-janesjournal.blogspot.com/2019/01/searching-for-snowdrops.html",null,1547633533],
["11300852","Beatriz","https://beascrapbooking.blogspot.com/2019/01/reto-winter-crafty-sentiments-designs.html",null,1547634593],
["11300873","The craetive twins","https://thecreativetwins.blogspot.com/2019/01/magic-slider-card.html",null,1547638324],
["11300874","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2019/01/invitation-carte-de-voeux.premiere.html",null,1547638537],
["11300889","Linda Mc Enery","https://lindamscreations.blogspot.com/2019/01/pennys-paper-crafty-challenge-413.html",null,1547640232],
["11300991","Clare","https://abitmoretimetocraft.blogspot.com/",null,0],
["11300996","Clare","https://clarelloyd.blogspot.com/2019/01/little-heart.html",null,1547649069],
["11301002","Gerie","https://scraptastisch.blogspot.com/2019/01/label.html",null,1547649514],
["11301047","Majda","https://majdinustvarjalninemir.blogspot.com/2019/01/skupno-ustvarjanje-tako-ali-drugace.html",null,1547656472],
["11301061","Paperesse","http://www.paperesse.com/2019/01/masculine-birthday-card-featuring.html",null,1547659018],
["11301086","Michelle Lancaster","https://laughingducks2012.blogspot.com/2019/01/pennys-paper-crafty-challenge-no-413.html",null,1547663026],
["11301095","Patty Sue2","https://patty-inkitup.blogspot.com/2019/01/birthday-for-friend.html",null,1547665294],
["11301121","CreaNancy","https://creanancy.blogspot.com/2019/01/catch-bug-birthday-bash-dag-5.html",null,1547667671],
["11301252","Junebug Creations","https://junebugcreations.wordpress.com/2019/01/16/a-fairy-celebration",null,1547697296],
["11301254","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/01/simple-fairy-card.html",null,1547698499],
["11301293","Craftartista","https://craftartista.blogspot.com/2019/01/package-delivered-to-pilar-and.html",null,1547714025],
["11301299","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/01/kerstkaart-week-3.html",null,1547716142],
["11301331","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/01/hey-cupcake.html",null,1547721447],
["11301379","marie","http://marieraly.blogspot.com/2019/01/blog-post_17.html",null,1547730459],
["11301384","Caroline's Creaties","http://caroline-creaties.blogspot.com/2019/01/kerst-week-3.html",null,1547731511],
["11301454","Rachel Taylor","https://blossomcards.blogspot.com/2019/01/time-for-some-wine.html#links",null,1547749780],
["11301456","Blue Daisy","http://bluedaisycrafts.blogspot.com/2019/01/forever-lovely.html",null,1547751337],
["11301460","CreaNancy","http://creanancy.blogspot.com/2019/01/catch-bug-birthday-bash-dag-6.html",null,1547752069],
["11301473","AJ","https://ajcreativeenergy.blogspot.com/2019/01/monster-birthdays-donuts.html",null,1547758137],
["11301474","Larissa","https://car-d-elicious.blogspot.com/2019/01/as-you-like-it-challenge-148-pearls-or.html",null,1547758206],
["11301486","Hermien","https://handmadebyhermien.blogspot.com/2019/01/casettebandjes.html",null,1547761638],
["11301550","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/01/cas-kaartje.html",null,1547794375],
["11301559","Maya","https://mayas-hobbyblogg.blogspot.com/2019/01/the-artist.html",null,1547797702],
["11301570","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/01/cas.html",null,1547801202],
["11301606","monique","https://moniqueschattefor.blogspot.com/2019/01/love-and-best-wishes.html",null,1547810509],
["11301616","Craftartista: Mia","https://craftartista.blogspot.com/2019/01/will-you-marry-me-again.html",null,1547815309],
["11301650","Cathymac","https://goldeninkspirations.blogspot.com/2019/01/hello-friends.html",null,1547824157],
["11301698","jenimc","https://jenicraftroom.blogspot.com/2019/01/monster-cake.html",null,1547830035],
["11301747","Kym","http://kyms-crafty-cards.blogspot.com/2019/01/ching-chou-kuiks-digital-stamps_18.html",null,1547837844],
["11301758","Janes Journal","https://jane-janesjournal.blogspot.com/2019/01/january-birds-for-stamplorations.html?m=1",null,1547839993],
["11301807","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2019/01/the-creative-crafters-challenge-12.html",null,1547858395],
["11301822","ingunn","https://ingunnsinekort.blogspot.com/2019/01/en-overdose-hjerter.html",null,1547864524],
["11301912","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/01/sympathy-cards.html",null,1547895546],
["11301924","Hazel","https://craftyhazelnut.blogspot.com/2019/01/chnc-challenge-421.html",null,1547897346],
["11302054","Renate kaarten","https://renatekaarten.blogspot.com/2019/01/liefs.html",null,1547916279],
["11302110","Silke","https://kartenkram.blogspot.com/2019/01/yummi-in-my-tummy.html",null,1547923440],
["11302147","Donna R","https://indianainking.blogspot.com/2019/01/hippo-bird-day.html",null,1547932699],
["11302177","Craftartista: Mia","https://craftartista.blogspot.com/2019/01/package-delivered-to-delfinaki.html",null,1547944096],
["11302220","Megan Flynn","https://meganshappycraftcreations.blogspot.com/2019/01/time-for-cake.html",null,0],
["11302221","Megan Flynn","https://meganshappycraftcreations.blogspot.com/2019/01/you-make-me-smile-card.html",null,1547959088],
["11302236","Leslie Turner","http://lovetoscrap2.com/2019/01/18/sending-special-happy-birthday-wishes",null,1547962042],
["11302265","Michelle","https://michelledees.blogspot.com/2019/01/valentijn-valentine.html",null,1547971415],
["11302277","Einat","http://einat109.blogspot.com/2019/01/with-love-card.html",null,1547972868],
["11302292","Marja","https://marjaskaarten.blogspot.com/2019/01/bunny-maan.html",null,1547975639],
["11302294","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/01/29-jaar-getrouwd.html",null,1547976160],
["11302314","Sharon","https://frommycraftdesk.blogspot.com/2019/01/less-is-more-387-sketch-25.html",null,1547980751],
["11302399","Hazel L","http://hazel-hazelshappyhouse.blogspot.com/2019/01/iaas-cat-or-dog.htmlhttp://hazel-hazelshappyhouse.blogspot.com/2019/01/iaas-choose-movie.html",null,0],
["11302400","Hazel L","http://hazel-hazelshappyhouse.blogspot.com/2019/01/iaas-choose-movie.html",null,1547994213],
["11302411","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/01/beterschap_20.html",null,1547995579],
["11302453","decorcraftdesign","https://decorcraftdesign.wordpress.com/2019/01/17/roses-of-love-painting/",null,1548001414],
["11302506","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2019/01/happy-birthday.html",null,1548013594],
["11302548","elizabeth h","http://warmharted.blogspot.com/2019/01/penguins-fly-high.html",null,1548022611],
["11302564","Craftartista: Mia","https://craftartista.blogspot.com/2019/01/love-and-teddy.html",null,1548026611],
["11302601","Rijacki Ledum","https://rijacki.blogspot.com/2019/01/believe.html",null,1548038122],
["11302637","America","https://cardsbyamerica.blogspot.com/2019/01/love-you-forever.html",null,1548043805],
["11302675","Barbara Bruder","http://artandsoulcreations.blogspot.com/2019/01/singing-in-rain.html",null,1548053992],
["11302680","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/01/liefs.html",null,1548055262],
["11302687","Janes Journal","https://jane-janesjournal.blogspot.com/2019/01/a-thank-you-bottle-tag-from-billy.html",null,1548056617],
["11302775","Melanie","https://creative-world-of-melanie.blogspot.com/2019/01/liberty-birthday.html",null,1548080669],
["11302793","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/01/ik-heb-een-kaart-gemaakt-in-de-vorm-van.html",null,1548082031],
["11302805","Elena V","https://0-nubesdeazucar-0.blogspot.com/2019/01/always-and-forever.html",null,1548083341],
["11302849","decorcraftdesign","https://decorcraftdesign.wordpress.com/2019/01/21/diy-valentines-gift-hourglass/",null,1548090089],
["11302861","Jolanda","http://jolandasblogs.blogspot.com/2019/01/dancing-with-daffodils.html",null,1548095207],
["11302891","Lisa Bird","https://craftycard-designs.co.uk/british-wildlife-volume-iii-the-hare/",null,1548100281],
["11302932","*Vicki*","https://stampedsmiles.com/2019/01/21/sympathy-banish-the-blues/",null,1548105370],
["11302939","America","https://cardsbyamerica.blogspot.com/2019/01/sue-wilson-cutting-dies-best-wishes.html",null,1548106134],
["11302960","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/01/doily-and-brad-at-dream-valley.html",null,1548111498],
["11302968","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2019/01/heather-valentin-colour-of-love_21.html",null,1548112490],
["11302977","Julene Matthews (Australia)","https://julenebydesign.blogspot.com/2019/01/pile-it-on-plus-others.html",null,1548115635],
["11302998","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/01/farmhouse-greetings.html",null,1548124834],
["11303046","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/01/beterschap_20.htmlhttps://nicoletteskaarten.blogspot.com/2019/01/happy-birthday.html",null,0],
["11303047","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/01/happy-birthday.html",null,1548143899],
["11303052","Maya","https://mayas-hobbyblogg.blogspot.com/2019/01/nsker-degwish-you.html",null,1548145150],
["11303055","jackie cornfield","https://getthejclook.blogspot.com/2019/01/wedding-or-anniversary-afc.html",null,1548147746],
["11303063","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2019/01/passion-for-promarkers-challenge-floral.html",null,1548151186],
["11303065","Teresa","http://redobsessioncards.blogspot.com/2019/01/anniversary-cake.html",null,1548151884],
["11303070","tinyworks","http://tinyworks81.blogspot.com/2019/01/card-to-recycle-dress-dt-digi-choosday.html",null,1548154630],
["11303071","Laine","https://dreamlaine.blogspot.com/2019/01/a-vision-in-blue.html",null,0],
["11303089","Cicci with the Pen","https://ciccividpennan.blogspot.com/2019/01/bluegreen-combo.html",null,1548158708],
["11303091","Cicci with the Pen","https://ciccividpennan.blogspot.com/2019/01/new-atg-challenge-ttcrd-2019-morgans.html",null,1548158919],
["11303093","monique","https://moniqueschattefor.blogspot.com/2019/01/zwemdiploma-a.html",null,1548159245],
["11303103","Teresa","http://redobsessioncards.blogspot.com/2019/01/a-monster-party.html?m=1",null,1548161312],
["11303110","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/01/kaartje-voor-mijn-moeder.html",null,1548162176],
["11303127","Anna","https://nonsolocard.blogspot.com/2019/01/love-baby.html",null,1548165631],
["11303128","Angelina Rogers","https://townshipcrafts.blogspot.com/2019/01/pure-innocence-love-you-bunch-002.html",null,1548165922],
["11303180","coops","https://coopsclutteredcorner.blogspot.com/2019/01/passion-for-promarkers-flowers.html",null,1548175418],
["11303206","Silke","https://kartenkram.blogspot.com/2019/01/geburtstags-standchen.html",null,1548182145],
["11303216","AJ","https://ajcreativeenergy.blogspot.com/2019/01/new-year-baby.html",null,1548186225],
["11303223","Jackie T","https://tinyrosecr.blogspot.com/2019/01/through-craft-room-door-ttcrd-guest.html",null,1548186733],
["11303248","Craftartista: Mia","https://craftartista.blogspot.com/2019/01/what.html",null,1548191021],
["11303375","Teresa","http://redobsessioncards.blogspot.com/2019/01/the-golf-lover.html?m=1",null,1548226115],
["11303399","Sheryl Hare","https://marchharecards.blogspot.com/2019/01/i-love-promarkers-love-wedding.html",null,1548230965],
["11303411","Teresa","http://redobsessioncards.blogspot.com/2019/01/sparkling-snowflake.html?m=1",null,1548232764],
["11303431","Lisa :D","https://royalpumpkinart.blogspot.com/2019/01/anything-goes-new-challenge-with_22.html",null,1548240768],
["11303539","Mindy Baxter","https://www.mycreativescoop.com/use-a-heart-featuring-my-favorite-things-no-line-copic-video-tutorial/",null,1548254160],
["11303656","elizabeth h","http://warmharted.blogspot.com/2019/01/vintage-skates.html",null,1548274767],
["11303748","Michelle","https://keencrafter.blogspot.com/2019/01/whimsy-stamps-new-release-digital-image_21.html",null,1548314635],
["11303761","Suze","https://craftysuze.blogspot.com/2019/01/roses.html",null,1548318085],
["11303769","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/01/spellbinders-thanks-bunch.html",null,1548322823],
["11303779","Meighan Wheller","https://meighanwheller.blogspot.com/2019/01/sg-love-is-in-air.html",null,1548325591],
["11303785","Keen Crafter","http://keencrafter.blogspot.com/2019/01/whimsy-stamps-new-release-digital-image.html",null,1548325988],
["11303801","Valeryanne","https://itsanalienlife.blogspot.com/2019/01/not-so-square.html",null,1548330203],
["11303858","Julie T","https://juliescraftyspot.blogspot.com/2019/01/science-geek-from-polkadoodles.html",null,1548343749],
["11303939","jenimc","https://jenicraftroom.blogspot.com/2019/01/purple-birthday.html",null,1548361986],
["11303995","Craftartista: Mia","https://craftartista.blogspot.com/2019/01/enjoy.html",null,1548376545],
["11304026","Karthikha","https://loveforkrafts.blogspot.com/2019/01/altenew-layered-medallion-card-4.html",null,1548389099],
["11304057","Marciava Warrell","https://theuniquescrapper.blogspot.com/2019/01/beautiful-spring-card.html",null,1548399967],
["11304073","Koraliki Beaty","https://koralikibeaty.blogspot.com/2019/01/kolejny-blejtram-dla-cherry-craft.html",null,1548404295],
["11304082","Leona B","https://cardsbyleona.wordpress.com/2019/01/25/creative-moments-challenge-9/",null,1548407763],
["11304096","Marjan H","https://hobbyhoogland.blogspot.com/2019/01/verjaardag.html",null,1548410561],
["11304117","Suzi Mac","https://wwwsuzies.blogspot.com/2019/01/polkadoodles-dt-challenge-week-4.html",null,1548416278],
["11304207","Kali","https://bastelgrotte.de/?p=11115",null,1548428131],
["11304212","niki1","https://www.splitcoaststampers.com/gallery/photo/2910476?&cat=500&ppuser=205884",null,1548428898],
["11304279","Tip Top","http://tiptoptoppers.blogspot.com/2019/01/nigels-30th-part-3.html",null,1548441771],
["11304341","Kym","https://kyms-crafty-cards.blogspot.com/2019/01/ching-chou-kuiks-digital-stamps_25.html",null,1548457506],
["11304352","Kym","http://kyms-crafty-cards.blogspot.com/2019/01/colour-crazy-challenge-blog-friday-25.html",null,1548458339],
["11304480","pinkclover","https://pinkclovercards.blogspot.com/2019/01/cosmos-happy-birthday.html",null,1548499183],
["11304517","Cathymac","https://goldeninkspirations.blogspot.com/2019/01/christmas-card-throwdown.html",null,1548504097],
["11304595","Ines","https://inka-mojmalyswiat.blogspot.com/2019/01/inspiracja-dla-scrap-shopu_18.html",null,1548514648],
["11304599","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/01/borduurkaartje.html",null,1548515029],
["11304707","Hazel","https://craftyhazelnut.blogspot.com/2019/01/chnc-challenge-422.html",null,1548536393],
["11304721","Nicky","https://stiggyscrafts.blogspot.com/2019/01/fireman-birthday-card.html",null,1548539101],
["11304756","Craftartista: Mia","https://craftartista.blogspot.com/2019/01/beautiful-butterflies.html",null,1548552783],
["11304832","Birgit","https://cardsrfun.blogspot.com/2019/01/all-is-calm.html",null,1548580463],
["11304838","Jasmina","https://handmadebyjasmina.blogspot.com/2019/01/2-mixed-media-tagca-2-mixed-media-tags.html",null,1548582997],
["11304861","Tone K.","http://tonesscrapperom.blogspot.com/2019/01/bursdagskort-til-gutt-birthday-card-to.html",null,1548589458],
["11304911","Epie","https://cards-by-epie.blogspot.com/2019/01/van-alles-en-nog-wat.html",null,1548597214],
["11304936","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/01/radovedni-medvedek.html",null,1548601490],
["11305021","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/01/beterschap_27.html",null,1548611272],
["11305050","marleen v wetten","http://marleenvanwetten.blogspot.com/2019/01/coffee-hug-in-mug.html",null,1548616630],
["11305068","corry","https://corryscreart.blogspot.com/2019/01/vandaag-een-druilerige-dag-wat-is-er.html",null,1548619562],
["11305095","Craftartista: Mia","https://craftartista.blogspot.com/2019/01/penguin-with-scarf.html",null,1548626042],
["11305172","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/01/sending-you.html",null,1548660321],
["11305196","Rosina","http://rosina-scrapcards.blogspot.com/2019/01/gefeliciteerd_28.html",null,1548666489],
["11305215","jenimc","https://jenicraftroom.blogspot.com/2019/01/couple-valentine.html",null,1548670404],
["11305290","Silke","https://kartenkram.blogspot.com/2019/01/du-bist-in-all-meinen.htmlhttps://kartenkram.blogspot.com/2019/01/anemonen.html",null,1548688293],
["11305387","Nisha","https://creationspersonalised.blogspot.com/2019/01/congratulations.html",null,1548705905],
["11305392","Nisha","https://creationspersonalised.blogspot.com/2019/01/love.html",null,1548706018],
["11305393","Nisha","https://creationspersonalised.blogspot.com/2019/01/adventure-begins.html",null,1548706215],
["11305491","Leslie Turner","http://lovetoscrap2.com/2019/01/18/sending-special-happy-birthday-wisheshttp://lovetoscrap2.com/2019/01/21/truly-grateful",null,1548726212],
["11305492","Leslie Turner","http://lovetoscrap2.com/2019/01/24/life-is-full-of-wonderful",null,1548726321],
["11305580","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/01/making-it-sparkle-at-crafty-gals-corner.html",null,1548760426],
["11305608","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/01/quando-fiorisce-la-carta-craft.html",null,1548767213],
["11305635","Aimeslee Winans","https://paper-paisleys.blogspot.com/2019/01/in-lieu-of-flowers-sharing-in-sorrow.html",null,1548774706],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}