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("14Jun2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRqdW4yMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("2 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Jun2018");
blenza_linkies("thumb","lozzy","14Jun2018","1855192614",3,
[
// MTRqdW4yMDE4
["11221396","Annette","http://annetteshobbyrosettes.blogspot.com/2018/06/world-wide-open-design-team-challenge.html",null,0],
["11221398","pinky","https://pinkysworldsuprojects.blogspot.com/2018/06/sheltering-tree-of-sympathy.html",null,1529052562],
["11221416","Cristina","http://rutscht.blogspot.com/2018/06/good-day.html",null,1529056891],
["11221428","Hazel","http://craftyhazelnut.blogspot.com/2018/06/christmas-cheer.html",null,1529058508],
["11221452","Hazel","http://craftyhazelnut.blogspot.com/2018/06/just-purple.html",null,1529062455],
["11221464","Beebeebabs","http://beebeebabs2.blogspot.com/2018/06/prom-night.html",null,1529064372],
["11221472","Michelle Lancaster","https://laughingducks2012.blogspot.com/2018/06/kitty-fun-sweet-image-for-little-blue.html",null,1529065255],
["11221478","Jackie T","https://tinyrosecr.blogspot.com/2018/06/crafty-catz-challenge-blog-anything_15.html",null,1529065617],
["11221594","Kym","https://kyms-crafty-cards.blogspot.com/2018/06/ching-chou-kuiks-digital-stamps_15.html",null,1529080819],
["11221597","tinyworks","https://tinyworks81.blogspot.com/2018/06/card-roses-dt-blog-storie-di-timbri.html",null,1529081102],
["11221602","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/06/summer-in-paris.html",null,1529081402],
["11221611","Hazel","http://craftyhazelnut.blogspot.com/2018/06/im-really-not-sure-how-im-fitting-in.html",null,1529082293],
["11221643","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2018/06/15/digistamps4joy-june-challenge-149-option-for-the-man-in-your-life/",null,1529086224],
["11221712","Judy V","https://jvzcreations.blogspot.com",null,1529099593],
["11221713","elizabeth h","http://warmharted.blogspot.com/2018/06/hedgehog-greeting.html",null,1529100290],
["11221715","Ginny B","http://homespuncards.blogspot.com/2018/06/masculine-card-2.html",null,1529100743],
["11221801","priyadarshini ramakrishnan","https://simpleartcraft-tips.blogspot.com/",null,1529136791],
["11221807","Hazel","http://craftyhazelnut.blogspot.com/2018/06/chnc-challenge-390.html",null,1529138585],
["11221815","nnalorac","http://somethinggonemissing.blogspot.com/2018/06/dis-digi-designs-challenge-summer-fun.html",null,1529142065],
["11221889","Ginny B","http://homespuncards.blogspot.com/2018/06/monochromatic-blue-birthday.html",null,1529156909],
["11221896","Cathy P.","https://corysnana1.blogspot.com/2018/06/my-time-to-craft-373-stamp-your-own.html",null,1529157111],
["11221947","Hazel","http://craftyhazelnut.blogspot.com/2018/06/simply-stamps.html",null,1529163439],
["11221978","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/06/sparkles-monthly-challenges-ch105-dt.html",null,1529168636],
["11221995","Janette Fuller","https://janettefuller.blogspot.com/2018/06/fathers-day-card-for-beefather.html",null,1529175898],
["11222016","Elena","https://creativele.blogspot.com/2018/06/congratulazioni-con-stamping-bella.html",null,1529182811],
["11222024","Hazel","http://craftyhazelnut.blogspot.com/2018/06/feeling-sketchy.html",null,1529185065],
["11222077","Helene","https://lescreationsdhelene.blogspot.com/2018/06/une-carte_16.html",null,1529200491],
["11222097","Michelle","https://michelledees.blogspot.com/2018/06/een-meisje-babygirl.html",null,1529211543],
["11222131","Rosina","https://rosina-scrapcards.blogspot.com/2018/06/felicitatiekaartje.html",null,1529218482],
["11222138","Claudia","http://knutselmeisjes.blogspot.com/2018/06/bruidspaar-van-harte.html",null,1529219684],
["11222143","AnnChuangCrafts","https://anncard.blogspot.com/2018/06/bumblebeeatc.html",null,1529220409],
["11222145","AnnChuangCrafts","https://anncard.blogspot.com/2018/06/sending-hugs.html",null,1529220879],
["11222165","Nicolette","https://nicoletteskaarten.blogspot.com/2018/06/het-is-jouw-verjaardag.html",null,1529224917],
["11222174","Jootje","http://jootjesscrapcards.blogspot.com/2018/06/black-and-white.html",null,1529227420],
["11222182","jenimc","http://jenicraftroom.blogspot.com/2018/06/izzy-at-seaside.html",null,1529229075],
["11222186","Grietje's Kaartenhoekje","https://grietje78.blogspot.com/2018/06/reminder-kaartjes-inspiratie-challenges.html",null,1529231395],
["11222192","Helen","http://helenscrafthaven.blogspot.com/2018/06/pile-it-on-challenge-holidays-andor.html",null,1529233969],
["11222207","Caz Crafty Bits","http://cazcraftybits.blogspot.com/2018/06/dial-calender.html",null,1529236506],
["11222236","Birgit","https://cardsrfun.blogspot.com/2018/06/kite-card.html",null,1529241645],
["11222256","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/06/happy-fathers-day.html",null,1529245570],
["11222261","Crealientje","https://isocrealientje.blogspot.com/2018/06/criss-cross-kaart-met-vlinders.html",null,1529246572],
["11222276","Craftartista","https://craftartista.blogspot.com/2018/06/birthday-wishes.html",null,1529248699],
["11222291","Jenna","https://jennagallery.blogspot.com/2018/06/hello-my-creative-friends-i-have-had.html",null,1529250507],
["11222309","elizabeth h","http://warmharted.blogspot.com/2018/06/popping-in.html",null,1529253456],
["11222315","Donna R","https://indianainking.blogspot.com/2018/06/dueling-darlings-everything-is-coming.html",null,1529254288],
["11222350","Nikki C","https://graphixanddesign.blogspot.com/2018/06/very-pink-card.html",null,1529263433],
["11222376","Hazel","http://craftyhazelnut.blogspot.com/2018/06/friends.html",null,1529267855],
["11222411","Craftartista","https://craftartista.blogspot.com/2018/06/summer-wreath.html",null,1529279886],
["11222459","Ans Gilbert","http://dekaartenvanonsmam.blogspot.com/2018/06/may-your-days.html",null,1529302242],
["11222465","Janes Journal","https://jane-janesjournal.blogspot.com/2018/06/grow-strong.html",null,1529304080],
["11222474","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/06/new-baby-card.html",null,1529305924],
["11222481","Lilian B","http://lillyb46.blogspot.com/2018/06/had-good-weekend.html",null,1529308628],
["11222520","Hazel","http://craftyhazelnut.blogspot.com/2018/06/inspired-by-song.html",null,1529319988],
["11222540","Hazel","http://craftyhazelnut.blogspot.com/2018/06/a-summer-daisy-birthday.html",null,1529324398],
["11222607","Hazel","http://craftyhazelnut.blogspot.com/2018/06/sunny-birthday.html",null,1529331604],
["11222636","Amelia B","https://otomys.wordpress.com/2018/06/18/lovely-lace-2/",null,1529335179],
["11222641","Dawn S","https://cherrytreestudio.blogspot.com/2018/06/once-upon-time.html",null,1529335673],
["11222655","tinyworks","https://tinyworks81.blogspot.com/2018/06/card-dance-dt-le-anns-world-101.html",null,1529338782],
["11222659","Donna Mundinger","http://donnamundinger-popsicletoes.blogspot.com/2018/06/new-challenge-at-aurora-wings.html",null,1529339701],
["11222686","cheiro urgia","https://cheirourgia.blogspot.com/2018/06/simple-beads.html",null,1529347889],
["11222726","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2018/06/2-cute-mice.html",null,1529356124],
["11222738","Hazel","http://craftyhazelnut.blogspot.com/2018/06/christmas-wishes.html",null,1529358209],
["11222780","Craftartista","https://craftartista.blogspot.com/2018/06/be-free.html",null,1529370013],
["11222793","Pam Sebring","http://psebring.blogspot.com/2018/06/livelaughlove.html",null,1529376928],
["11222804","Christine A","https://itsacarddaysnight.blogspot.com/2018/06/dirty-pour.html",null,1529381296],
["11222833","Hazel","http://craftyhazelnut.blogspot.com/2018/06/to-lovely-lady.html",null,1529392077],
["11222843","Hazel","http://craftyhazelnut.blogspot.com/2018/06/happy-birtthday.html",null,1529393808],
["11222851","Kym","http://kyms-crafty-cards.blogspot.com/2018/06/lemon-shortbread-challenge-tuesday-19.html",null,1529394838],
["11222858","Linda Mc Enery","https://lindamscreations.blogspot.com/2018/06/passion-for-promarkers-challenge-449.html",null,1529395430],
["11222870","Hazel","http://craftyhazelnut.blogspot.com/2018/06/decoupaged-happy-birthday.html",null,1529398415],
["11222891","jenimc","http://jenicraftroom.blogspot.com/2018/06/frogs-and-snails.html",null,1529402536],
["11222900","Jane Willis","http://onionsandpaper.blogspot.com/2018/06/happy-birthday-lara.html",null,1529403861],
["11222919","Aileen Ryan","https://colourandsparkle.blogspot.com/2018/06/reminder-post-for-flower-challenge.html",null,1529407548],
["11222933","Jolanda","https://jolandasblogs.blogspot.com/2018/06/ponsen.html",null,1529409292],
["11222957","Pippa","https://pippapblog.wordpress.com/2018/06/18/path-of-positivity-midway-reminder/",null,1529413378],
["11222986","cheiro urgia","https://cheirourgia.blogspot.com/2018/06/pen-storage.html",null,1529417456],
["11222989","Rijacki: Dew Drop Inn","http://rijacki.blogspot.com/2018/06/dew-drop-inn-TTCRD.html",null,1529417743],
["11223011","DebiB","https://thatmightlookgoodonacard.blogspot.com/2018/06/tuesday-throwdown-challenge-397-with.html",null,1529423282],
["11223031","Bridie","http://bgpaynecrafts.blogspot.com/2018/06/papermania-art-deco-cardmaking-project.html",null,1529425926],
["11223069","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/06/a-wonderful-birthday.html?m=1",null,1529437126],
["11223100","Hazel","http://craftyhazelnut.blogspot.com/2018/06/birthday-dream.html",null,1529444264],
["11223112","Ginny B","http://homespuncards.blogspot.com/2018/06/pink-roses-and-polka-dots.html",null,1529448209],
["11223195","Angie J","https://angiescraftfusion.blogspot.com/2018/06/vls-brown-eyed-susan_20.html",null,1529474618],
["11223229","Larissa","https://car-d-elicious.blogspot.com/2018/06/merry-monday-joy-to-world.html",null,1529479012],
["11223263","Cicci with the Pen","http://ciccividpennan.blogspot.com/2018/06/lacy-sunshine-rom-summer-romantique.html",null,1529484619],
["11223264","Cicci with the Pen","http://ciccividpennan.blogspot.com/2018/06/new-atg-challenge-ttcrd-patties.html",null,1529484646],
["11223296","Beebeebabs","http://beebeebabs2.blogspot.com/2018/06/birthday-card_20.html",null,1529493149],
["11223306","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/06/vintage-flowers.html",null,1529494055],
["11223384","Marja","http://marjaskaarten.blogspot.com/2018/06/zomaar-een-kaart-voor-jou.html",null,1529504114],
["11223415","Caroline's creaties","https://caroline-creaties.blogspot.com/2018/06/60-jaar.html",null,0],
["11223429","Donna","https://lakefrontstampingcreations.blogspot.com/2018/06/the-house-that-stamps-built-inspiration.html",null,1529510643],
["11223501","Carol","https://carol-paperplay-carol.blogspot.com/2018/06/i-am-still-enjoying-altering-these-at.html",null,1529520027],
["11223509","Donna Mundinger","https://donnamundinger-popsicletoes.blogspot.com/2018/06/guest-designing-for-sheepski-designs-fb.html",null,1529522526],
["11223591","Hazel","http://craftyhazelnut.blogspot.com/2018/06/happy-birthday-card-for-guitarist.html",null,1529561579],
["11223597","Hazel","https://craftyhazelnut.blogspot.com/2018/06/birthday-card-for-husband.html",null,1529563812],
["11223601","Hazel","http://craftyhazelnut.blogspot.com/2018/06/happy-anniversary_21.html",null,1529567876],
["11223620","Melanie Gee","https://melgeecrafts.com/2018/06/21/crafty-sentiments-designs-june-new-release-day-3/",null,1529577375],
["11223676","Nicola Gold","https://amethystlilydesigns.blogspot.com/2018/06/fairy-wishes-at-ching-chou-kuik.html",null,1529594815],
["11223724","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/06/key-18th-birthday-card.html",null,1529605836],
["11223740","Caroline","http://caroline-creaties.blogspot.com/2018/06/60-jaar.html",null,1529610715],
["11223777","Hazel","http://craftyhazelnut.blogspot.com/2018/06/birthday-wishes.html",null,1529614869],
["11223792","Hazel","http://craftyhazelnut.blogspot.com/2018/06/glad-tidings.html",null,1529619698],
["11223799","Hazel","http://craftyhazelnut.blogspot.com/2018/06/we-wish-you-merry-christmas.html",null,1529621953],
["11223876","Hazel","http://craftyhazelnut.blogspot.com/2018/06/from-our-house-to-yours.html",null,1529652163],
["11223882","Hazel","http://craftyhazelnut.blogspot.com/2018/06/joyeux-noel.html",null,1529652854],
["11223884","Nicolette","http://caroline-creaties.blogspot.com/2018/06/60-jaar.htmlhttps://nicoletteskaarten.blogspot.com/2018/06/babys-op-komst.html",null,1529653255],
["11223955","Hazel","http://craftyhazelnut.blogspot.com/2018/06/have-very-merry-christmas.html",null,1529671373],
["11223977","Dorothy S","https://cardsbydorothy.blogspot.com/2018/06/youve-been-on-my-heart.html",null,1529674815],
["11223998","Sherry G","http://loosestitchesandunraveledthreads.blogspot.com/2018/06/the-paper-nest-dolls-inspiration.html",null,1529679071],
["11224055","Pallavi Jain","https://craftocraftbypallavijain.blogspot.com/2018/06/altered-mixed-media-bottle.html",null,1529690243],
["11224101","Hazel","http://craftyhazelnut.blogspot.com/2018/06/joy-to-world.html",null,1529699218],
["11224147","Hazel","http://craftyhazelnut.blogspot.com/2018/06/merry-christmas.html",null,1529709207],
["11224152","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2018/06/t4t-inspiration-post-and-challenge.html",null,1529713759],
["11224159","Pam Sebring","http://psebring.blogspot.com/2018/06/holy-cow.html",null,1529716601],
["11224161","Pam Sebring","http://psebring.blogspot.com/2018/06/sending-warm-wishes.html",null,1529717093],
["11224177","Vidhi Jadeja","https://arterycrate.blogspot.com/2018/06/scrapping4fun-challenge-118-birthday.html",null,1529729398],
["11224211","Hazel","https://craftyhazelnut.blogspot.com/2018/06/chnc-challenge-391.html",null,1529741811],
["11224235","Hazel","http://craftyhazelnut.blogspot.com/2018/06/seasons-greetings.html",null,1529747177],
["11224250","Hazel","http://craftyhazelnut.blogspot.com/2018/06/simply-joyeux-noel.html",null,1529749883],
["11224254","Sharon Hudson","https://craftyhugs.blogspot.com/2018/06/3d-scene-bow-front-card.html?m=1",null,1529750235],
["11224258","Hazel","http://craftyhazelnut.blogspot.com/2018/06/simply-seasons-greetings.html",null,1529750568],
["11224276","Pippa","https://pippapblog.wordpress.com/2018/06/23/a-new-progressive-challenge/",null,1529755331],
["11224393","Hazel","http://craftyhazelnut.blogspot.com/2018/06/happy-christmas.html",null,1529767422],
["11224398","Hazel","https://craftyhazelnut.blogspot.com/2018/06/pearl-anniversary.html",null,1529767753],
["11224442","Norma","http://creatingandsharingit.blogspot.com/2018/06/polkadoodles-anytihng-goes-challenge.html",null,1529778880],
["11224527","Craftartista","https://craftartista.blogspot.com/2018/06/elegant-lady.html",null,1529812106],
["11224642","Hazel","http://craftyhazelnut.blogspot.com/2018/06/viola-for-lucy.html",null,1529844327],
["11224692","Teresa","http://redobsessioncards.blogspot.com/2018/06/flower-sprite.html",null,1529850112],
["11224704","Hazel","http://craftyhazelnut.blogspot.com/2018/06/happy-birthday-hyacinth.html",null,1529851796],
["11224786","Hazel","http://craftyhazelnut.blogspot.com/2018/06/this-is-another-card-commissioned-by.html",null,1529857910],
["11224808","Craftartista","https://craftartista.blogspot.com/2018/06/a-cup-of-tea.html",null,1529860706],
["11224845","Amelia B","https://otomys.wordpress.com/2018/06/20/butterflies-2/",null,1529868288],
["11224853","Hazel","http://craftyhazelnut.blogspot.com/2018/06/another-85th-birthday-card.html",null,1529869424],
["11224998","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/06/its-boy.html",null,1529908511],
["11225033","Hazel","http://craftyhazelnut.blogspot.com/2018/06/wishing-you-very-happy-anniversary.html",null,1529918898],
["11225054","Hazel","http://craftyhazelnut.blogspot.com/2018/06/hope-you-have-wheelie-good-day.html",null,1529922264],
["11225071","Hazel","http://craftyhazelnut.blogspot.com/2018/06/with-sympathy_25.html",null,1529924599],
["11225086","Hazel","http://craftyhazelnut.blogspot.com/2018/06/thinking-of-you-in-deepest-sympathy.html",null,1529928377],
["11225139","basslady ","https://bassladycreations.blogspot.com/2018/06/eistuten-kindergarten-projekt.html",null,1529933768],
["11225155","Kym","https://kyms-crafty-cards.blogspot.com/2018/06/ching-chou-kuiks-digital-stamps_22.html",null,1529935848],
["11225177","Teresa","http://redobsessioncards.blogspot.com/2018/06/christmas-robin.html",null,1529937875],
["11225190","Nicolette","https://nicoletteskaarten.blogspot.com/2018/06/50-jaar.html",null,1529939246],
["11225274","Donna R","https://indianainking.blogspot.com/2018/06/hey-dude.html",null,1529950462],
["11225283","Lilly","http://lillys-craftcorner.blogspot.com/2018/06/sparkle-and-shine.html",null,1529952997],
["11225350","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/06/twinkle-twinkle-little-star-christening.html",null,1529963405],
["11225358","Craftartista","https://craftartista.blogspot.com/2018/06/enjoy-spring.html",null,1529964839],
["11225461","Hazel","http://craftyhazelnut.blogspot.com/2018/06/a-quick-christmas-card.html",null,1530001950],
["11225470","Teresa","http://redobsessioncards.blogspot.com/2018/06/pond-love.html",null,1530004394],
["11225475","Hazel","http://craftyhazelnut.blogspot.com/2018/06/wishing-you-peace-love-joy.html",null,1530005880],
["11225547","Subhashini","http://thecreativetwins.blogspot.com/2018/06/celebration-card.html",null,1530021873],
["11225595","Hazel","http://craftyhazelnut.blogspot.com/2018/06/sending-joy-at-christmas.html",null,1530024787],
["11225612","Hazel","http://craftyhazelnut.blogspot.com/2018/06/lets-celebrate.html",null,1530025384],
["11225660","Teresa","http://redobsessioncards.blogspot.com/2018/06/yellow-flowers.html",null,1530031485],
["11225720","Rachelle Olaridge","http://scrapping247365.blogspot.com/2018/05/card-challenge-at-tuesday-throwdown.html",null,1530046214],
["11225732","Hazel","http://craftyhazelnut.blogspot.com/2018/06/have-wonderful-christmas.html",null,1530048678],
["11225753","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/06/pig-13th-birthday-card.html",null,1530053010],
["11225788","Craftartista","https://craftartista.blogspot.com/2018/06/daisy.html",null,1530056907],
["11225836","elizabeth h","http://warmharted.blogspot.com/2018/06/on-my-mind.html",null,1530074822],
["11225885","J. Atterbury Creations","http://jatterburycreations.blogspot.com/2018/06/scripture-series-work-of-thy-hand-card.html",null,1530083170],
["11225910","Julie P","https://julieprice3.wordpress.com/2018/06/27/going-digital/",null,1530087138],
["11225927","Wendy Batchen","http://wenscreations.blogspot.com/2018/06/jeanette.html",null,1530090632],
["11225933","Jackie T","https://tinyrosecr.blogspot.com/2018/06/robin-christmas-card.html",null,1530091496],
["11225974","Jootje","http://jootjesscrapcards.blogspot.com/2018/06/birthday-girl.html",null,1530099909],
["11225980","Kali","https://bastelgrotte.de/?p=11118",null,1530100428],
["11226039","Liz McGuire","http://buttonsforbrains.blogspot.com/2018/06/you-rock-et-my-world.html",null,1530105617],
["11226251","Ma-Mi","http://rilcekinkljuncek.blogspot.com/2018/06/odtisi-morja.html",null,1530127622],
["11226255","Hazel","http://craftyhazelnut.blogspot.com/2018/06/quick-and-easy-christmas-card.html",null,1530128726],
["11226269","Hazel","http://craftyhazelnut.blogspot.com/2018/06/yuletide-greetings.html",null,1530131641],
["11226274","Hazel","http://craftyhazelnut.blogspot.com/2018/06/to-both-of-you.html",null,1530132684],
["11226310","Teresa","http://redobsessioncards.blogspot.com/2018/06/vintage-wedding.html",null,1530138716],
["11226358","America","https://cardsbyamerica.blogspot.com/2018/06/a-happy-christmas-for-dies-r-us.html",null,1530165852],
["11226376","Hazel","http://craftyhazelnut.blogspot.com/2018/06/peace-love-joy.html",null,1530172943],
["11226382","Hazel","http://craftyhazelnut.blogspot.com/2018/06/happy-christmas_28.html",null,1530174153],
["11226385","Hazel","http://craftyhazelnut.blogspot.com/2018/06/christmas-greetings.html",null,1530174561],
["11226388","Hazel","http://craftyhazelnut.blogspot.com/2018/06/sending-christmas-wishes.html",null,1530174976],
["11226391","Hazel","http://craftyhazelnut.blogspot.com/2018/06/from-our-home-to-yours.html",null,1530176612],
["11226396","Hazel","http://craftyhazelnut.blogspot.com/2018/06/noel.html",null,1530177200],
["11226444","Michelle","https://michelledees.blogspot.com/2018/06/strik-bow.html",null,1530189722],
["11226503","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/06/shabby-chic-candelabra.html",null,1530201351],
["11226558","Majda","https://majdinustvarjalninemir.blogspot.com/2018/06/porocna-easel-cestitka.html",null,1530209445],
["11226565","Altered Fairy Tales","https://alteredfairytales.blogspot.com/2018/06/project-share-happy-camper.html",null,1530210598],
["11226593","Pippa","https://pippapblog.wordpress.com/2018/06/28/playing-at-being-artistic/",null,1530217294],
["11226605","UrooCreations: Dr Monika Shukla (India) 1","https://uroocreations.blogspot.com/2018/06/for-you-papa-scrap-boys-june-card.html",null,1530220195],
["11226606","UrooCreations: Dr Monika Shukla (India) 2","https://uroocreations.blogspot.com/2018/06/sending-love-creative-fingers-dt.html",null,1530220848],
["11226608","Pippa","https://pippapblog.wordpress.com/2018/06/28/wimbledon-ready/",null,1530220955],
["11226609","UrooCreations: Dr Monika Shukla (India) 3","https://uroocreations.blogspot.com/2018/06/scrapping4fun-challenges-dt-challenge.html",null,1530220963],
["11226610","UrooCreations: Dr Monika Shukla (India) 4","https://uroocreations.blogspot.com/2018/06/you-fill-my-heart-crafting-with-friends.html",null,1530221070],
["11226611","UrooCreations: Dr Monika Shukla (India) 5","https://uroocreations.blogspot.com/2018/06/happy-birthday-card-crafty-cardmakers.html",null,1530221431],
["11226690","Julie P","https://julieprice3.wordpress.com/2018/06/29/friendship-5/",null,1530255553],
["11226704","Hazel","http://craftyhazelnut.blogspot.com/2018/06/noel-noel.html",null,1530258465],
["11226706","Hazel","http://craftyhazelnut.blogspot.com/2018/06/merry-christmas_29.html",null,1530258820],
["11226811","Hazel","http://craftyhazelnut.blogspot.com/2018/06/happy-birthday-90-year-old.html",null,1530279497],
["11226872","Pippa","https://pippapblog.wordpress.com/2018/06/29/cupcake-time-with-limited-runs/",null,1530285952],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}