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("19Feb2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "c/creativefingerschallenge/MTlmZWIyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("2 years ago");
blenza_setAlphasort("0");
blenza_unsetmeme("19Feb2018");
blenza_linkies("thumb","CreativeFingersChallenge","19Feb2018","2009786212",3,
[
// MTlmZWIyMDE4
["11172966","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/02/ching-chou-kuiks-digital-stamps_23.html",null,1519395457],
["11173012","Cristina","http://rutscht.blogspot.com/2018/02/thanks-my-lucky-stars.html",null,1519400360],
["11173019","Jackie T","https://tinyrosecr.blogspot.co.uk/2018/02/crafty-catz-challenge-405-anything-goes.html",null,1519400953],
["11173066","Pippa","https://pippapblog.wordpress.com/2018/02/23/old-boots/",null,1519410332],
["11173072","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/02/happy-birthday-bugaboo-free-friday.html",null,1519410894],
["11173146","Ann-Marie Johansson","https://systeryster-annemi.blogspot.com/2018/02/my-turn-to-try-to-inspire-you-on-behalf_23.html",null,1519423015],
["11173222","Maxine D","http://kiwimeskreations.blogspot.co.nz/2018/02/bottom-dwelling-exotic-fish.html",null,1519446622],
["11173266","Mervi","http://leikkaan.blogspot.fi/2018/02/butterfly-and-bow.html",null,1519460177],
["11173275","pinky","https://pinky-pinkysworld.blogspot.co.uk/2018/02/first-communion-crosses.html",null,1519462599],
["11173278","Dreja","http://drejasbastelwelt.blogspot.de/2018/02/hase-im-ei.html",null,1519462796],
["11173294","Lia","http://liadesignandso.blogspot.nl/2018/02/in-het-bos.html",null,1519466179],
["11173295","Grietje\\'s Kaartenhoekje","https://grietje78.blogspot.nl/2018/02/springtime.html",null,1519466236],
["11173312","Pippa","https://pippapblog.wordpress.com/2018/02/24/sunny-flowers-for-mother/",null,1519472307],
["11173325","Lozzy","http://ninspapercrafting.blogspot.co.uk/2018/02/paperbabe-stamps-blog-hop.html",null,1519474438],
["11173344","Maya","https://mayas-hobbyblogg.blogspot.no/2018/02/klemhug.html",null,1519477080],
["11173360","Craftdee Donna","https://craftdeedonna.blogspot.com.au/2018/02/wedding-wishes.html",null,1519478305],
["11173388","Darlene Pavlick","http://darscraftycreations.blogspot.com/2018/02/tea-bag-booklets.html",null,1519479324],
["11173409","Tone K.","http://tonesscrapperom.blogspot.no/2018/02/mannen-i-speilet-man-in-mirror.html",null,1519481436],
["11173421","Margreet","https://margreets-scrapcards.blogspot.nl/2018/02/turtles-flower.html",null,1519482851],
["11173423","Vannessa","https://saffiresstamping.blogspot.co.uk/2018/02/ching-chou-kuik-inspiration-post-free.html",null,1519483078],
["11173475","NanaConnie","http://mygrammysattic.blogspot.com/2018/02/party-hardy-bird.html",null,1519488864],
["11173518","Lou Sims","https://lulucardmaking.blogspot.co.uk/2018/02/happy-halloween-in-february-using.html",null,1519494377],
["11173525","Wies*","http://wiescreablog.blogspot.nl/2018/02/oude-vrachtauto-old-truck.html",null,1519495398],
["11173547","Ellen","http://ellen-startsscrapping.blogspot.nl/2018/02/the-sketchy-challenges-137-use-frame.html",null,1519499870],
["11173558","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2018/02/dashing-through-snow.html",null,1519501133],
["11173562","Damjana","https://damchy.blogspot.si/2018/02/metulji-za-malo-prijateljico.html",null,1519502727],
["11173565","Helen","http://craftinghelen.blogspot.co.uk/2018/02/new-simply-papercraft-challenge.html",null,1519503843],
["11173600","ingunn","https://ingunnsinekort.blogspot.no/2018/02/aaaa-jeg-fikk-sa-lyst-til-spise-et-tre.html",null,1519515300],
["11173609","patty","http://pattyskreativseite.blogspot.de/2018/02/wollte-mich-auch-mal-in-skuril.html",null,1519516772],
["11173631","Sharon Hudson","https://craftyhugs.blogspot.co.uk/2018/02/black-and-white-monochrome-card.html?m=1",null,1519521763],
["11173766","Kym","https://kyms-crafty-cards.blogspot.co.uk/2018/02/guest-designer-for-love-to-create.html",null,1519555734],
["11173866","Craftyjulie","https://craftyjulie57.blogspot.co.uk/2018/02/sunflower-song.html",null,1519567550],
["11173886","Paperesse","http://www.paperesse.com/2018/02/hang-in-there-cousin-sloth-get-well-card.html",null,1519570148],
["11173946","Julie T","https://juliescraftyspot.blogspot.com/2018/02/have-heart-birthday-card.html",null,1519577552],
["11173951","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2018/02/sunflowers.html",null,1519577923],
["11173987","~DEANNE~","https://littlebitopaper.blogspot.ca/2018/02/ahhhhh-coffee.html",null,1519582482],
["11174027","Vannessa","http://saffiresstamping.blogspot.co.uk/2018/02/nurse-marci-says-get-well-soon.html",null,1519591935],
["11174108","Heather Mills","http://wirewrapture.blogspot.com/2018/02/purrfect-birthday.html",null,1519609408],
["11174114","Karen C","http://busyinspirations.blogspot.com/2018/02/under-sea.html",null,1519611466],
["11174136","Karen C","http://busyinspirations.blogspot.com/2018/02/more-cards-for-men.html",null,1519619789],
["11174196","Kitty","https://intruderlady.blogspot.nl/2018/02/dds-bella-butterfly.html",null,1519635058],
["11174240","shuly","http://shulycartes.blogspot.fr/2018/02/hello-im-trying-new-technique-today.html",null,1519647153],
["11174242","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2018/02/i-have-been-asked-to-make-birthday-card.html",null,1519647752],
["11174322","Pippa","https://pippapblog.wordpress.com/2018/02/26/spring-bunny-friends/",null,1519657136],
["11174377","Glenda Atkins","https://gilbyscorner.blogspot.ca/2018/02/crafty-cardmakers-2018-206-floral.html",null,1519663589],
["11174394","ValeryAnne","https://itsanalienlife.blogspot.co.uk/2018/02/foam-flowers.html",null,1519665839],
["11174543","Plony","http://plonysbloggie.blogspot.nl/2018/02/vintage-woman-easel-card.html",null,1519681860],
["11174551","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2018/02/spring-bunnies-anniversary.html",null,1519682544],
["11174674","Janis in ID","http://herpeacefulgarden.blogspot.com/2018/02/baby-girl-card-graphic-45.html",null,1519702707],
["11174681","Janis in ID","http://herpeacefulgarden.blogspot.com/2018/02/baby-boy-card-graphic-45.html",null,1519706137],
["11174713","Janis in ID","http://stampedblessings.com/2018/02/heartful-stamping-challenge-anything-goes-32/",null,0],
["11174714","Janis in ID","http://herpeacefulgarden.blogspot.com/2018/02/cat-itude.html",null,1519714322],
["11174721","Glennis F NZ","https://creatingcards-grf.blogspot.co.nz/2018/02/best-wishes.html",null,1519717362],
["11174728","Linda Mc Enery","https://lindamscreations.blogspot.com.au/2018/02/digi-choosday-week-9.html",null,1519718551],
["11174744","Pam D","https://itisfinisheddesigns.blogspot.com/2018/02/for-someone-special.html",null,1519722779],
["11174762","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2018/02/passion-for-promarkers-dogs-cats.html",null,1519725231],
["11174770","creativEle","https://creativele.blogspot.it/2018/02/anything-goes-at-crafty-sentiment.html",null,1519727243],
["11174781","Katharina","http://creativekathi.blogspot.de/2018/02/zur-geburt.html#links",null,1519729623],
["11174813","Cathy P.","https://corysnana1.blogspot.com/2018/02/cas-colours-sketches-261-sketch.html",null,1519737255],
["11174926","Silke","http://kartenkram.blogspot.de/2018/02/we-celebrate.html",null,1519752099],
["11174969","Kym","http://kyms-crafty-cards.blogspot.co.uk/2018/02/lemon-shortbread-challenge-tuesday-27.html",null,1519757548],
["11175078","Vilinke ","http://vilinke123.blogspot.si/2018/02/pozornost-iz-srca.html",null,1519772734],
["11175099","~DEANNE~","https://littlebitopaper.blogspot.ca/2018/02/beautiful-fairy.html",null,1519774002],
["11175231","shartl","https://www.flickr.com/photos/75112453@N05/39576089905/in/dateposted-public/",null,1519799048],
["11175234","shartl","https://www.flickr.com/photos/75112453@N05/40504925561/in/dateposted-public/",null,1519799350],
["11175275","Margreet","http://margreets-scrapcards.blogspot.nl/2018/02/donkerblauw-en-licht-turquoise.html",null,1519806976],
["11175286","Rosina","http://rosina-scrapcards.blogspot.nl/2018/02/kleurenkaartje-schakel-2-2018.html",null,1519808388],
["11175302","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/02/new-atg-challenge-ttcrd-rick-st-dennis.html ",null,1519811669],
["11175303","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/02/for-magazine-ttcrd-march-april-book-worm.html",null,1519811703],
["11175349","Pippa","https://pippapblog.wordpress.com/2018/02/28/the-rabbit-and-the-dragon/",null,1519819053],
["11175525","Fikreta ","https://badkittyscraftroom.blogspot.hr/2018/02/my-hero.html",null,1519833658],
["11175695","coops","https://coopsclutteredcorner.blogspot.co.uk/2018/02/passion-for-promarkers-catsand-or-dogs.html",null,1519850146],
["11175735","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/02/frogs-are-always-happy-sunny-day.html",null,1519853833],
["11175751","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/02/i-love-you-more-than-all-stars.html",null,1519856505],
["11175753","Valerija","http://moje-veselje.blogspot.si/2018/02/praznicna-voscilnica-z-vilo.html",null,1519856820],
["11175781","shartl","https://www.flickr.com/photos/75112453@N05/39649296755/in/dateposted-public/",null,1519862554],
["11175782","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/02/pennys-challenge-369.html",null,1519862574],
["11175784","tina z. treebug","http://www.treebug.org/2018/02/tilda-s-piskoti.html",null,1519862886],
["11175808","Hazel","http://craftyhazelnut.blogspot.com/2018/03/craftyhazelnuts-patterned-paper-march.html",null,1519865632],
["11175886","Lia","http://liadesignandso.blogspot.nl/2018/03/coco-chanel.html",null,1519891952],
["11175893","Margreet","https://margreets-scrapcards.blogspot.nl/2018/03/something-new-en-een-nieuwtje.html",null,1519894717],
["11175898","Sharon","https://frommycraftdesk.blogspot.pt/2018/03/hot-colours-masterboard.html",null,1519896536],
["11175909","carol gill","https://crafty-stamper.blogspot.co.uk/2018/03/jane-austen-and-blankpage-muse.html",null,1519898201],
["11175913","carol gill","https://crafty-stamper.blogspot.co.uk/2018/03/small-canvas.html",null,1519898949],
["11175920","Wendy F","https://crazy4flowerscards.blogspot.co.uk/2018/02/mandalas-patterns-at-fabnfunky.html",null,1519900633],
["11175929","Cicci with the Pen","http://ciccividpennan.blogspot.se/2018/03/for-magazine-march-april-mo-manning.html",null,1519901885],
["11175943","Beebeebabs","http://beebeebabs2.blogspot.com/2018/02/beautiful.html",null,1519905582],
["11176044","sparkling pink","https://sparklingpinktitta.blogspot.it/2018/03/tilda-with-heart.html",null,1519927848],
["11176147","Hazel","https://craftyhazelnut.blogspot.co.uk/2018/03/a-bit-more-time-to-craft-challenge-63.html",null,1519947644],
["11176156","Heather Mills","http://wirewrapture.blogspot.com/2018/03/start-again.html",null,1519951969],
["11176281","karenladd","https://www.flickr.com/photos/33235863@N08/38714685680/in/dateposted-public/",null,1519986148],
["11176282","karenladd","https://www.flickr.com/photos/33235863@N08/26635806918/in/dateposted-public/",null,1519986338],
["11176331","Dorothy S","https://cardsbydorothy.blogspot.com/2018/03/dt-card-qkr-stampede-285-hearts-for.html",null,1519992200],
["11176485","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/03/liz-and-daves-wedding-card-and-box.html",null,1520008254],
["11176642","Nick","https://nicksscrapshack.blogspot.se/2018/03/dt-make-for-crafty-catzs-new-challenge.html",null,1520027282],
["11176657","Plony","http://plonysbloggie.blogspot.de/2018/03/maja-design.html",null,1520030384],
["11176751","karenladd","https://www.flickr.com/photos/33235863@N08/40524277972/in/dateposted-public/",null,1520062501],
["11176753","Maya","https://mayas-hobbyblogg.blogspot.no/2018/03/gratulerer-med-dagenhappy-birthday.html",null,1520063349],
["11176816","Claudia","http://knutselmeisjes.blogspot.be/2018/03/happy-birthday.html",null,1520078460],
["11176888","NanaConnie DT","http://mygrammysattic.blogspot.com/2018/03/when-cat-naps.html",null,1520087145],
["11177000","scrAPpamondo (AliceP)","http://volidicarta.blogspot.it/2018/02/card-rosa-e-verde-riciclo-avanzi.html",null,0],
["11177001","scrAPpamondo (AliceP)","https://volidicarta.blogspot.it/2018/03/thank-you-card-bits-and-bobs.html",null,1520110903],
["11177014","Vilinke 2","http://vilinke123.blogspot.si/2018/03/orodje.html",null,1520115297],
["11177064","Anet","https://anetscrafting.blogspot.com.au/2018/03/fashion-doll-country-paper-nest-dolls.html",null,1520127175],
["11177074","karenladd","https://www.flickr.com/photos/33235863@N08/39707543735/in/dateposted-public/",null,1520131086],
["11177076","Maxine D","http://kiwimeskreations.blogspot.co.nz/2018/03/turtle-y-awesome.html",null,1520131780],
["11177128","Desire Fourie","http://desiref.blogspot.co.za/2018/03/step-outside-digistamps4joy-march-2018.html",null,1520146582],
["11177257","Karthikha","http://loveforkrafts.blogspot.in/2018/03/baby-boy-card.html",null,1520170090],
["11177427","Craftyjulie","https://craftyjulie57.blogspot.co.uk/2018/03/your-wing-already-exist.html",null,1520191147],
["11177588","Mervi","http://leikkaan.blogspot.fi/2018/03/leimaillaan-ja-varitellaan-21-haaste.html",null,1520235317],
["11177613","Meighan Wheller","https://meighanwheller.blogspot.com.au/2018/03/bb-march.html",null,1520239574],
["11177627","Rosina","http://rosina-scrapcards.blogspot.nl/2018/03/liefs.html",null,1520241527],
["11177843","Gloria Lee","https://iiroom1004.blogspot.ca/2018/03/birdhouse-tag.html",null,1520270929],
["11177851","Larissa","https://car-d-elicious.blogspot.nl/2018/03/dis-digi-stamps-bunnysuit-bear-disguise.html",null,1520272085],
["11177925","Wies*","http://wiescreablog.blogspot.nl/2018/03/bench-fold-card-bureau.html",null,1520282730],
["11177990","Anet","https://anetscrafting.blogspot.com.au/2018/03/young-susan.html",null,1520292676],
["11178027","Marie Bingaman","http://anothercardmakingblog.blogspot.com/2018/03/sasayaki-glitter-march-challenge.html",null,1520303817],
["11178154","Craftyjulie","https://craftyjulie57.blogspot.co.uk/2018/03/creative-crafting-world-1st-challenge.html",null,1520340341],
["11178185","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/03/for-magazine-ttcrd-march-april-image.html",null,1520345564],
["11178205","Karen C","http://busyinspirations.blogspot.com/2018/03/steampunk-meow.html",null,1520348617],
["11178354","crafty","https://draper50.blogspot.com/2018/03/happy-mothers-day.html",null,1520364940],
["11178418","Vannessa","https://saffiresstamping.blogspot.co.uk/2018/03/whimsy-stamps-new-release-happy.html",null,1520373279],
["11178430","Angie J","https://angiescraftfusion.blogspot.com.au/2018/03/vls-old-mcdonald.html",null,1520375144],
["11178444","sparkling pink","https://sparklingpinktitta.blogspot.it/2018/03/craft-galore-encore.html",null,1520378272],
["11178489","Pam D","https://itisfinisheddesigns.blogspot.com/2018/03/happy-st-pats.html",null,1520386509],
["11178641","Kali","http://bastelgrotte.de/?p=10134",null,1520420566],
["11178699","Donna T","http://lakefrontstampingcreations.blogspot.com/",null,1520428612],
["11178824","Craftdee Donna","https://craftdeedonna.blogspot.com.au/2018/03/ruby-red.html",null,1520440306],
["11178922","Heather Mills","http://wirewrapture.blogspot.com/2018/03/lots-of-jars.html",null,1520447999],
["11179138","Valerija","http://moje-veselje.blogspot.si/2018/03/lilije.html",null,1520490886],
["11179554","debo","https://deboskaartenhoekje.blogspot.be/2018/03/new-releas-scrappers-delight.html",null,1520600672],
["11179706","Tip Top","http://tiptoptoppers.blogspot.co.uk/2018/03/colour-crazy-challenge-week-10-blog.html",null,1520621098],
["11179779","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2018/03/layering-it-up-at-crafty-catz-with-our.html",null,1520632357],
["11179815","Sharon Hudson","https://craftyhugs.blogspot.co.uk/2018/03/mothers-day-project.html?m=0",null,1520642777],
["11179877","Ann-Marie Johansson","https://systeryster-annemi.blogspot.com/2018/03/my-turn-to-try-to-inspire-you-on-behalf.html",null,1520667803],
["11179897","Larissa","https://car-d-elicious.blogspot.nl/2018/03/dis-digi-designs-challenge-lots-of-green.html",null,1520671866],
["11179899","Larissa","https://car-d-elicious.blogspot.nl/2018/03/dis-digi-stamps-rosebud-bears.html",null,1520672225],
["11179939","Jacki D","https://cookingupacard.blogspot.co.uk/2018/03/Flowers-4-u-on-Mothers-Day.html",null,1520681998],
["11180066","Denise P.","https://myinkimprint.blogspot.com/2018/03/inspiration-challenge.html",null,1520692103],
["11180086","Anna","http://nonsolocard.blogspot.it/2018/03/minialbum-per-uno-swap.html",null,1520695611],
["11180150","Wies*","http://wiescreablog.blogspot.nl/2018/03/bloemengroet.html",null,1520704771],
["11180294","Memas Crafts","http://memascrafts.blogspot.com/2018/03/international-womens-day.html",null,1520733053],
["11180344","Lovely Linda","https://lovelylindascraftcentral.blogspot.com.au/2018/03/little-birdie-crafts-happy-bird-day.html",null,1520747334],
["11180381","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2018/03/happy-mothers-day.html",null,1520756260],
["11180525","Dreja","http://drejasbastelwelt.blogspot.de/2018/03/mause-und-kreise.html",null,1520776861],
["11180593","Marilyn Webb","http://marilynscardsandmore.blogspot.ca/2018/03/release-day-blog-hop-kraftin-kimmie.html",null,1520784055],
["11180668","Darlene Pavlick","http://darscraftycreations.blogspot.com/2018/03/its-girl.html",null,1520798554],
["11180715","Karen C","http://busyinspirations.blogspot.com/2018/03/two-are-better-than-one.html",null,1520814055],
["11180824","Lisa :D","https://royalpumpkinart.blogspot.com/2018/03/31-days-of-crafting-day-one-new-ideas.html",null,1520846128],
["11180879","crafty","https://draper50.blogspot.com/2018/03/go-green.html",null,1520857719],
["11181012","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/03/difficult-roads.html",null,1520871196],
["11181091","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466.1073741829.722595467790055/1577525988963661/?type=3&theater",null,1520885461],
["11181216","karenladd","https://www.flickr.com/photos/33235863@N08/40735009242/in/dateposted-public/",null,1520915673],
["11181386","Vilinke","http://vilinke123.blogspot.si/2018/03/ribiski-brezrokavnik.html",null,1520949211],
["11181497","Craftyjulie","https://craftyjulie57.blogspot.co.uk/2018/03/thank-yoooo-hoooo.html",null,1520966752],
["11181609","Karen","http://karenscrafting.blogspot.co.uk/2018/03/amazing.html",null,1520978368],
["11181893","Em Fairley","http://www.creative-em.com/2018/03/rorys-lucky-clover.html",null,1521032245],
["11182060","Zora","https://lofquisten.blogspot.se/2018/03/tonarskort.html",null,1521048906],
["11182157","Monika Reeck","https://creativewithmonika.blogspot.de/2018/03/papercraft-challenge-7-hello-card-in.html",null,1521063562],
["11182209","Vilinke ","http://vilinke123.blogspot.si/2018/03/crafty-rd.html",null,1521075069],
["11182225","NanaConnie DT","http://mygrammysattic.blogspot.com/2018/03/spring-roses.html",null,1521077865],
["11182279","Alex","http://alexkreativeseite.blogspot.de/2018/03/reminder-bei-do-all-kreatives-und-den.html",null,1521097168],
["11182299","Einat","http://einat109.blogspot.co.il/2018/03/love-sring-tag.html",null,1521105622],
["11182307","carol gill","https://crafty-stamper.blogspot.co.uk/2018/03/atc-set-and-tag.html",null,1521107035],
["11182376","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.co.uk/2018/03/sparkles-monthly-challenges-ch102-dt.html",null,1521119377],
["11182393","Kinda Cute Cards","https://kindacutecards.blogspot.com/2018/03/anything-goes-challenge-over-at.html",null,1521122316],
["11182539","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466.1073741829.722595467790055/1580863308629929/?type=3&theater",null,1521139509],
["11182752","Pam D","https://itisfinisheddesigns.blogspot.com/2018/03/another-st-patricks-day-card.html",null,1521177689],
["11182874","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466.1073741829.722595467790055/1581699315212995/?type=3&theater",null,1521202355],
["11183049","Vilinke 3","http://vilinke123.blogspot.si/2018/03/zajcki-2018.html",null,1521217606],
["11183161","Silke","http://kartenkram.blogspot.de/2018/03/jemand-der-immer-fur-freude-sorgt.html",null,1521238909],
["11183183","Teresa","https://redobsessioncards.blogspot.co.uk/2018/03/my-dad-and-me.html",null,1521245087],
["11183256","Mervi","https://leikkaan.blogspot.fi/2018/03/bring-on-bling.html",null,1521274504],
["11183547","Teresa","https://redobsessioncards.blogspot.co.uk/2018/03/my-mum.html",null,1521328680],
["11183628","Karen C","http://busyinspirations.blogspot.com/2018/03/mermaid.html",null,1521354457],
["11183784","Victoria R","https://victorias-crafting-creations.blogspot.co.uk/2018/03/caab-march-inspiration-card.html?m=1",null,1521381403],
["11183792","Scatty Jan","https://scrappyscatty.blogspot.co.uk/2018/03/postcard.html",null,1521381992],
["11183824","Valerija","http://moje-veselje.blogspot.si/2018/03/moska-voscilnica.html",null,1521388513],
["11183834","Marjeta","https://marjetinaustvarjalnica.blogspot.si/2018/03/nasa-mala-ribica.html",null,1521389769],
["11183874","Tone K.","http://tonesscrapperom.blogspot.no/2018/03/bryllupskort-i-gratoner.html",null,1521396240],
["11183915","Maggie S","https://maggiescathouse.blogspot.com/2018/03/ugly-sweater-ias-29.html",null,1521402543],
["11183986","Teresa","https://redobsessioncards.blogspot.co.uk/2018/03/a-sparkling-christmas.html",null,1521414989],
["11184104","Jolanda","http://jolandasblogs.blogspot.nl/2018/03/katten-enof-honden.html",null,1521454202],
["11184126","shylaa","https://adhiraacreations.blogspot.com/2018/03/easterartisticinspiration.html",null,1521458052],
["11184130","Wendy F","http://crazy4flowerscards.blogspot.co.uk/2018/03/spring-cuties-at-cutie-pies.html",null,1521458438],
["11184132","Karen Dunbrook","https://snippets-karen.blogspot.ca/2018/03/coffee-time.html",null,1521458638],
["11184175","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/03/ccayr-march-challenge-flowers.html",null,1521464133],
["11184184","Hazel","http://craftyhazelnut.blogspot.co.uk/2018/03/chnc-challenge-377.html",null,1521465881],
["11184289","RoRa","https://roraaurelia.blogspot.co.id/2018/03/twilight-garden-from-ching-chou-kuik.html",null,1521480250],
["11184297","RoRa","https://roraaurelia.blogspot.co.id/2018/03/owlie-from-ching-chou-kuik.html",null,1521480744],
["11184300","Ellen","http://ellen-startsscrapping.blogspot.nl/2018/03/a-cookie-day.html",null,1521481422],
["11184385","Monika Reeck","http://creativewithmonika.blogspot.de/2018/03/billie-and-monikas-challenge-2-get-well.html",null,1521495146],
["11184445","Donna Mundinger","http://donnamundinger-popsicletoes.blogspot.com/2018/03/happy-4th-anniversary-awcb-lets.html",null,1521505295],
["11184464","Julie T","http://juliescraftyspot.blogspot.com/2018/03/birthday-card_19.html",null,1521510712],
["11184601","Lisbeth","https://krealis.blogspot.be/2018/03/red-black.html",null,1521547453],
["11184606","Craftyjulie","https://craftyjulie57.blogspot.co.uk/2018/03/journey-to-southern-hemisphere.html",null,1521548450],
["11184654","Julia","https://theglitterchick.blogspot.co.uk/2018/03/stampin-unicorn-wishing-you-world.html",null,1521555423],
["11184688","Kinda Cute Cards","https://kindacutecards.blogspot.com/2018/03/quick-and-cas.html",null,1521558999],
["11184829","Tip Top","http://tiptoptoppers.blogspot.co.uk/2018/03/hello-bouquet.html",null,1521582809],
["11185064","Plony","http://plonysbloggie.blogspot.nl/2018/03/185-midweek-magnolias.html",null,1521628383],
["11185335","Katharina","http://creativekathi.blogspot.de/2018/03/zur-geburt.html#links",null,1521659930],
["11185564","Kinda Cute Cards","http://kindacutecards.blogspot.com/2018/03/some-easter-tags.html",null,1521724124],
["11185801","ingunn","https://ingunnsinekort.blogspot.no/2018/03/gult-og-orange-glad-kort.html",null,0],
["11186186","Ma-Mi","http://rilcekinkljuncek.blogspot.si/2018/02/pikcasto-srce.html",null,1521832924],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}