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("30May2019", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MzBtYXkyMDE5", "1");
blenza_setcolor("default");
blenza_setExpires("9 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("30May2019");
blenza_linkies("thumb","lozzy","30May2019","1454182810",3,
[
// MzBtYXkyMDE5
["11351277","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/06/a-merry-christmas.html",null,1559373204],
["11351316","nnalorac","https://somethinggonemissing.blogspot.com/2019/06/dis-digi-designs-challenge-add.html",null,1559380691],
["11351329","Ella","https://mojeszydelkoweprzygody.blogspot.com/2019/06/challenge-30-bei-do-all-kreatives.html",null,1559385020],
["11351350","Kym","http://kyms-crafty-cards.blogspot.com/2019/06/ching-chou-kuik-digital-stamps-june.html",null,1559388632],
["11351355","Jackie T","http://tinyrosecr.blogspot.com/2019/06/crafts-galore-encore-challenge-64.html",null,1559388915],
["11351380","Granne","https://aavamaki.blogspot.com/2019/06/sheepski-designs-for-someone-special.html",null,1559394008],
["11351409","My Other World","https://scrapsdamaryv.blogspot.com/2019/06/creative-with-stamps-39.html",null,1559397873],
["11351454","Irene","https://madeinborgo.blogspot.com/2019/06/atc-serie-57-strike-pose.html",null,1559405686],
["11351455","Alex","https://alexkreativeseite.blogspot.com/2019/06/muttertag.html",null,1559405730],
["11351468","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/06/lotv-christmas-day-five.html",null,1559407965],
["11351469","Jasmina","https://handmadebyjasmina.blogspot.com/2019/06/fb-papirckarice-36-izziv-mixed-media.html",null,1559408028],
["11351504","tinyworks","http://tinyworks81.blogspot.com/2019/06/card-hello-friend-designer-team.html",null,1559411109],
["11351546","elizabeth","https://worldofelizabeth.blogspot.com/2019/06/il-mio-progetto-per-il-68-challenge-di.html",null,1559417582],
["11351577","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/06/pretty-best-wishes-card.html",null,1559421697],
["11351588","Hazel","https://craftyhazelnut.blogspot.com/2019/06/craftyhazelnuts-patterned-paper-june.html",null,1559422736],
["11351594","Hazel","https://craftyhazelnut.blogspot.com/2019/06/chnc-challenge-440.html",null,1559423614],
["11351597","cheiro urgia","https://cheirourgia.blogspot.com/2019/06/summer-treasures.html",null,1559424371],
["11351624","Carole J","https://cjcrafty.blogspot.com/2019/06/crafts-galore-encore-super-girl.html",null,1559433725],
["11351636","DIANA L.","https://dianamlarson.blogspot.com/2019/06/dlart-june-2019-linky-challenge-always.html",null,1559437273],
["11351674","Granne","https://aavamaki.blogspot.com/2019/06/foiled-mermaid.html",null,1559449982],
["11351747","Cristina","https://rutscht.blogspot.com/2019/06/atc-23-de-52.html",null,1559468969],
["11351751","Desire Fourie","https://desiref.blogspot.com/2019/06/a-lot-of-happy-design-team-project-june.html",null,1559469806],
["11351752","davinia","https://ifindoubtbling.blogspot.com/2019/06/life-is-beachy.html",null,1559470156],
["11351771","Helen","https://helenscrafthaven.blogspot.com/2019/06/pile-it-on-challenge-transportation.html",null,1559473867],
["11351794","Dreja","https://drejasbastelwelt.blogspot.com/2019/06/etwas-andere-trauerkarten.html",null,1559477490],
["11351819","Jacki D","https://cookingupacard.blogspot.com/2019/06/mo-manning-june-challenge.html",null,1559481166],
["11351864","Julie T","https://juliescraftyspot.blogspot.com/2019/06/penny-black-fly-away.html",null,1559486034],
["11351887","Rachelle Oltean ","https://redcre8s.blogspot.com/2019/06/anniversary-card-my-favorite-things-in.html",null,1559488681],
["11351901","Katie Tate","https://bothsidesofthepaper.blogspot.com/2019/06/more-than-one-score-at-scor-pal-60.html",null,1559491743],
["11351922","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2019/06/lotv-christmas-card-day-six.html",null,1559493949],
["11351949","elizabeth h","http://warmharted.blogspot.com/2019/06/off-we-go.html",null,1559500328],
["11351963","elizabeth h","http://warmharted.blogspot.com/2019/06/dino-days.html",null,1559503898],
["11351991","Gale K","https://galesstampingcorner.blogspot.com/2019/06/a-bit-gothic.html",null,1559510062],
["11352034","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/06/anna-griffin-birthday.html",null,1559532026],
["11352061","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/06/happy-birthday.html",null,1559543205],
["11352071","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/06/gefeliciteerd.html",null,1559547360],
["11352080","pinky","https://pinkysworldsuprojects.blogspot.com/2019/06/package-up-gift.html",null,1559549560],
["11352094","Victoria R","http://victorias-crafting-creations.blogspot.com/2019/06/caab-moonlight-swim-card.html?m=1",null,1559554522],
["11352097","Ine (creaine)","http://creaine-cards.blogspot.com/2019/06/kaartje-voor-rainbow-blog.html",null,1559554682],
["11352106","Anna","https://nonsolocard.blogspot.com/2019/06/flowers-tag.html",null,1559556036],
["11352113","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/06/simply-magnolia.html",null,1559557095],
["11352117","le idee di penelope ","https://ideedipenelope.blogspot.com/2019/06/nuovo-challenge-forever-magnolia.html",null,1559557476],
["11352133","Repolainen","https://repolainenreissaa.blogspot.com/2019/06/voimaa-metsasta.html",null,1559562006],
["11352148","Lisa :D","https://royalpumpkinart.blogspot.com/2019/06/anything-goesfun-in-sun-new-challenge.html",null,1559566333],
["11352150","Diane Ahlers","http://ahlers5.blogspot.com/2019/06/beautiful-woman.html",null,1559566390],
["11352153","elizabeth","https://worldofelizabeth.blogspot.com/2019/06/il-mio-primo-progetto-come-dt-per-ccc.html",null,0],
["11352167","Larissa","https://car-d-elicious.blogspot.com/2019/06/dis-digi-stamps-merry-christmas.html",null,1559570662],
["11352230","jenimc","https://jenicraftroom.blogspot.com/2019/06/the-hungry-caterpillar.html",null,1559586807],
["11352234","Spiral Creativity","https://spiralcreativity.blogspot.com/2019/05/anime-mia-headphone-gal.html",null,1559587314],
["11352245","Carole J","https://cjcrafty.blogspot.com/2019/06/vera-lane-studio-back-to-back.html",null,1559589998],
["11352281","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/06/sympathy-card.html",null,1559596385],
["11352285","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/06/i-have-made-this-dl-wedding-invitation.html",null,1559596827],
["11352322","Karthikha","https://loveforkrafts.blogspot.com/2019/06/infinite-pulli-kolam-for-diwali.html",null,1559606306],
["11352336","Donna R","https://indianainking.blogspot.com/2019/06/its-all-about-cake.html",null,1559612592],
["11352350","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/06/altered-art-using-oldbroken-tablet.html",null,1559616317],
["11352407","Craftartista","https://craftartista.blogspot.com/2019/06/you-lift-me-up.html",null,1559634865],
["11352437","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/06/er-is-weer-een-nieuwe-wedstrijd.html",null,1559639406],
["11352473","elizabeth","https://worldofelizabeth.blogspot.com/2019/06/happiness.html",null,1559641832],
["11352525","ScrappyHorses","https://scrappyhorses.blogspot.com/2019/06/hey-honey.html",null,1559653657],
["11352542","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/06/verjaardagskaarten-voor-oa-diny-en.html",null,1559656946],
["11352557","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/06/encouragement-on-path-of-positivity.html",null,1559659795],
["11352596","AJ","https://ajcreativeenhttps://ajcreativeenergy.blogspot.com/2019/06/ballerina.htmlergy.blogspot.com/2019/06/sweet-elephant.html",null,0],
["11352597","AJ","https://ajcreativeenergy.blogspot.com/2019/06/ballerina.html",null,1559667511],
["11352636","Judy V","https://jvzcreations.blogspot.com/2019/06/digi-doodles-studios-challenge-17.html",null,1559670704],
["11352673","elizabeth","https://worldofelizabeth.blogspot.com/2019/06/pirati.html",null,1559676656],
["11352716","Rebecca Gillard","https://cardsbybeckie.blogspot.com/2019/06/2nd-birthday-card.html",null,1559684985],
["11352734","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2206196349429952/?type=3&theater",null,1559689539],
["11352773","Lisa :D","https://royalpumpkinart.blogspot.com/2019/06/anything-goesfavorite-color-combo-new.html",null,1559699088],
["11352784","Cass","https://casscreatingnow.blogspot.com/2019/06/let-band-begin.html",null,1559704258],
["11352822","Barbara Bruder","http://artandsoulcreations.blogspot.com/2019/06/thinking-of-you.html",null,1559712147],
["11352869","Lilian B","https://lillyb46.blogspot.com/2019/06/woywdw.html",null,1559720089],
["11352875","Claudia","https://knutselmeisjes.blogspot.com/2019/06/hoera-een-tweeling.html",null,1559721281],
["11352885","Craftartista","https://craftartista.blogspot.com/2019/06/work-for-it.html",null,1559723217],
["11353001","Dawn S","https://dawnscraftybits.blogspot.com/2019/06/everyones-favourite-anything-goes.html",null,1559745695],
["11353015","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/06/gastdesigner-bij-creative-sketchy-girls.html",null,1559748238],
["11353116","Larissa","https://car-d-elicious.blogspot.com/2019/06/gerda-steiner-designs-i-like-you-beary.html",null,1559758910],
["11353160","Amelia B","https://otomys.wordpress.com/2019/06/05/rose-garden-2/",null,1559763851],
["11353247","elizabeth h","http://warmharted.blogspot.com/2019/06/wedding-bliss.html",null,1559791452],
["11353267","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2019/06/adele.html",null,1559801225],
["11353270","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/06/merry-christmas.html",null,1559802561],
["11353292","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2019/06/out-of-this-world-birthday-wishes.html",null,1559813503],
["11353304","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/06/wonderful-day.html",null,1559819483],
["11353309","Birgit","https://cardsrfun.blogspot.com/2019/06/have-nice-day.html",null,1559821557],
["11353325","NanaConnie","https://mygrammysattic.blogspot.com/2019/06/correspondence-school.html",null,1559825500],
["11353331","*Vicki*","https://stampedsmiles.com/2019/06/06/anything-goes-at-cute-card-thursday-with-curly/",null,1559827007],
["11353415","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/06/challenge-51-anything-christmas-goes-at.html",null,1559840507],
["11353436","AJ","https://ajcreativeenergy.blogspot.com/2019/06/hey-chickie.html",null,1559845995],
["11353605","Maria Vachkova","https://marymarins.blogspot.com/2019/06/there-are-flowers-even-in-darkest.html",null,1559910933],
["11353677","Pippa","https://viewsfrommycraftroom.blogspot.com/2019/06/just-for-you.html",null,1559920262],
["11353678","monique","http://moniqueschattefor.blogspot.com/2019/06/swinging-by.html",null,1559920292],
["11353692","Kym","https://kyms-crafty-cards.blogspot.com/2019/06/ching-chou-kuiks-digital-stamps.html",null,1559923354],
["11353699","Larissa","https://car-d-elicious.blogspot.com/2019/06/as-you-like-it-challenge-favourite.html",null,1559924225],
["11353742","jenimc","https://jenicraftroom.blogspot.com/2019/06/rainbow-colours.html",null,1559933922],
["11353763","marleen","https://marleenvanwetten.blogspot.com/2019/06/sweet-lil-lisa-fairy.html",null,1559937552],
["11353772","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466/2211578485558405/?type=3&theater",null,1559940096],
["11353828","Karthikha","https://loveforkrafts.blogspot.com/2019/06/wall-decor-upcycled-sweet-box-night-sky.html",null,1559949521],
["11353833","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2019/06/chibi-new-release-june-scrappers.html",null,1559953840],
["11353922","Hazel","https://craftyhazelnut.blogspot.com/2019/06/chnc-challenge-441.html",null,1559984051],
["11353923","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/06/zomers-geel-kaartje-maar-met-paraplu.html",null,1559984413],
["11353932","Kym","http://kyms-crafty-cards.blogspot.com/2019/06/colour-crazy-challenge-blog-friday-7.html",null,1559985575],
["11353934","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/06/hoera.html",null,1559986118],
["11354106","Judy V","https://jvzcreations.blogspot.com/2019/06/polkadoodles-craft-challenge-week-23.html",null,1560011155],
["11354134","ScrappyHorses","https://scrappyhorses.blogspot.com/2019/06/time-to-celebrate.html",null,1560014905],
["11354157","Monica C.","https://www.sunshinecreativity.com/2019/06/for-dad.html",null,1560022843],
["11354228","Mynn xx","https://mynnettekitchenonastampage.blogspot.com/2019/06/washi-tape-series-02-monochromatic.html",null,1560049916],
["11354236","Crafty Kiwi Mama","https://craftykiwimama.blogspot.com/2019/06/sweet-stampin-fathers-day.html",null,1560053904],
["11354241","Crafty Kiwi Mama","https://craftykiwimama.blogspot.com/2019/06/sweet-stampin-nautical.html",null,1560054730],
["11354242","Crafty Kiwi Mama","https://craftykiwimama.blogspot.com/2019/06/whimsy-stamps-june-digital-new-release.html",null,1560055170],
["11354252","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2019/06/ways-to-use-critter-sheets.html",null,1560058516],
["11354357","Linda Mc Enery","http://lindamscreations.blogspot.com/2019/06/digi-doodle-studios-theas-birthday-cake.html",null,1560081949],
["11354363","Creative Smiles","https://creativesmiles2.blogspot.com/2019/06/anything-goes-at-lavinia-world-challenge.html",null,1560082583],
["11354364","Hazel L","http://hazel-hazelshappyhouse.blogspot.com/2019/06/iaas-pool-party.html",null,1560082683],
["11354441","Judy V","https://jvzcreations.blogspot.com/2019/06/cute-as-button-june-challenge.html",null,1560089608],
["11354641","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2019/06/voor-jou.html",null,1560145990],
["11354701","Carole j","https://cjcrafty.blogspot.com/2019/06/vera-lane-studio-ticket-to-ride.html",null,1560159504],
["11354703","Caroline's Creaties","https://caroline-creaties.blogspot.com/2019/06/jarig-gefelicteerd.html",null,1560160474],
["11354711","Monica","https://handmadecardswithlove.blogspot.com/2019/06/yellow-rose-of-texas.html",null,1560162279],
["11354723","basslady","https://bassladycreations.blogspot.com/2019/06/botanic-hello-one-layer-card-mit.html?m=0",null,1560163736],
["11354746","Pat K","https://patkscards.blogspot.com/2019/06/ribbons-and-bows-at-cutie-pie-challenge.html",null,1560171124],
["11354828","Twisted Witch - Lin","https://twisted-witch.blogspot.com/2019/06/dv-204-summer-colours.html",null,1560190144],
["11354974","Angie's Creations","https://angiescreationsblog.blogspot.com/2019/06/red-cupcake-card.html#links",null,1560218860],
["11354991","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2019/06/one-of-kind.html",null,1560228365],
["11355013","Diny","http://dinys-scrapkaarten.blogspot.com/2019/06/hieperdepiep.html",null,1560239670],
["11355022","meg","https://bitsandpiecec.blogspot.com/2019/06/flowers-at-mmm.html",null,1560242549],
["11355054","Jackie T","https://tinyrosecr.blogspot.com/2019/06/not-just-cards-challenge-blog-june.html",null,1560252915],
["11355098","shellshearer","https://shellshearer.blogspot.com/2019/06/chicago-rock.html",null,1560258274],
["11355106","Craftartista: Mia","https://craftartista.blogspot.com/2019/06/coffee-tag-and-bookmark.html",null,1560258958],
["11355131","Jolanda","https://jolandasblogs.blogspot.com/2019/06/hedgie-party.html",null,1560267746],
["11355152","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2019/06/happy-birthday.html",null,1560272628],
["11355161","CreaNancy","https://creanancy.blogspot.com/2019/06/happy-birthday.html",null,1560274279],
["11355162","Cinderella 1","https://cinderellasdreamcardsblog.blogspot.com/2019/06/envelopje-gemaakt-made-envelope.html",null,1560274443],
["11355173","Ann-Marie S.","https://mylittlepatchofheaven-ams.blogspot.com/2019/06/i-beg-your-pardon-i-never-promised-you.html",null,1560278092],
["11355192","Sally Bownes","https://sallysbitz2.blogspot.com/2019/06/christmas-wedding-favour.html",null,1560282369],
["11355211","Rijacki: Tiny Fairy","https://rijacki.blogspot.com/2019/06/tiny-fairy-ttcrd.html",null,1560289059],
["11355282","Noelene Apap","https://noeleneapap.blogspot.com/2019/06/pretty-kitty-cat-treats.html",null,1560307412],
["11355375","Tip Top","http://tiptoptoppers.blogspot.com/2019/06/50th-birthday-final-page.html",null,1560332723],
["11355381","Made By Mandy","https://amandacruxton2.blogspot.com/2019/06/silver-wedding-anniversary.html",null,1560334191],
["11355387","Monique","https://crealoetje.blogspot.com/2019/06/een-zoon.html",null,1560337154],
["11355391","Saphron","https://www.lemonbiscuit.blog/crafts/pennys-paper-crafty-challenge-434/",null,1560337515],
["11355406","jenimc","https://jenicraftroom.blogspot.com/2019/06/lots-of-flowers.html",null,1560339910],
["11355421","Crafty Cards by Marg","https://craftycardsbymarg.blogspot.com/2019/06/its-dt-time-again.html",null,1560342633],
["11355523","monique","http://moniqueschattefor.blogspot.com/2019/06/fijne-vakantie.html",null,1560351351],
["11355550","Made By Mandy","https://amandacruxton2.blogspot.com/2019/06/fathers-day-golf-nut.html",null,1560355162],
["11355636","Rosina","https://rosina-scrapcards.blogspot.com/",null,0],
["11355641","Rosina","http://rosina-scrapcards.blogspot.com/",null,0],
["11355649","MARLENE","https://cardsmadebymarlene.blogspot.com/2019/06/anything-goes-at-crafty-creations.html",null,1560367947],
["11355651","Rijacki: Rainbow Blizzard","https://rijacki.blogspot.com/2019/06/rainbow-blizzard.html",null,1560368152],
["11355782","Rosina","http://rosina-scrapcards.blogspot.com/2019/06/merry-christmas.html",null,1560404691],
["11355807","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2019/06/a-holly-jolly.html",null,1560407833],
["11355816","Sharon","https://frommycraftdesk.blogspot.com/2019/06/celestial-faerie.html",null,1560410160],
["11355869","Meighan Wheller","https://meighanwheller.blogspot.com/2019/06/sg-spots-and-dots.html",null,1560430124],
["11355886","Vivian Foo","https://www.facebook.com/photo.php?fbid=1527944774007972&set=a.753827484753042&type=3&theater",null,1560434240],
["11355988","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2019/06/cas-si-je-treba-vzeti.html",null,1560451635],
["11356043","Teresa","http://redobsessioncards.blogspot.com/2019/06/worlds-greatest-dad.html?m=1",null,1560459278],
["11356045","Zora","https://lofquisten.blogspot.com/2019/06/lollipop.html",null,1560459413],
["11356048","Teresa","http://redobsessioncards.blogspot.com/2019/06/baby-birds.html?m=1",null,1560459737],
["11356127","Teresa","https://redobsessioncards.blogspot.com/2019/06/the-little-mermaid.html?m=1",null,1560485407],
["11356269","yvonne krijgsman","https://yvonne1965shamina.blogspot.com/2019/06/een-kaart-gemaakt-van-een-bloemenzaak.html",null,1560517442],
["11356369","Dawn Frost","http://stamp-n-play.blogspot.com/2019/06/bugaboo-youre-one-in-melon.html",null,1560527157],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}