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("15Jul2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTVqdWwyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("2 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("15Jul2018");
blenza_linkies("thumb","lozzy","15Jul2018","1998507944",3,
[
// MTVqdWwyMDE4
["11232323","Priya Satish","https://creativemotif.blogspot.com/2018/07/simple-pleasures.html",null,1531660351],
["11232385","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/07/sparkles-monthly-challenges-ch106-dt.html",null,1531670776],
["11232424","elizabeth h","http://warmharted.blogspot.com/2018/07/mermaid-teacup.html",null,1531676832],
["11232438","Rijacki: Fairy Box","https://rijacki.blogspot.com/2018/07/fairy-box.html",null,1531678917],
["11232583","Pam Sebring","http://psebring.blogspot.com/2018/07/adorable.html",null,1531710393],
["11232615","Ans Gilbert","http://dekaartenvanonsmam.blogspot.com/2018/07/happy-birthday.html",null,1531723284],
["11232628","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/07/per-due-sposini.html",null,1531730462],
["11232631","Cristina","http://rutscht.blogspot.com/2018/07/atc-29-de-52.html",null,1531731320],
["11232731","nnalorac","https://somethinggonemissing.blogspot.com/2018/07/birthday-girl.html",null,1531747025],
["11232761","Olga Dendrinou Fink","https://creatingwitholga.wordpress.com/2018/07/15/digistamps4joy-july-challenge-150-option-summer-or-winter/",null,1531750979],
["11232855","Irene","https://madeinborgo.blogspot.com/2018/07/artist-trading-coins.html",null,1531766094],
["11232877","Nicolette","http://nicoletteskaarten.blogspot.com/2018/07/gefeliciteerd-met-je-verjaardag.html",null,1531770419],
["11232921","Gloria Shirr - 2nd ","https://purpleglocreations.blogspot.com/2018/07/christmas-card-using-conie-fong-ellies.html",null,1531777771],
["11232975","Julie P","https://julieprice3.wordpress.com/2018/07/17/love-and-cherish/",null,1531790384],
["11233005","Daydream Believer","https://daydreambeliever-gina.blogspot.com/2018/07/i-love-to-boobie.html",null,1531810401],
["11233015","Janes Journal","http://jane-janesjournal.blogspot.com/2018/07/billy-is-10-today.html",null,1531813236],
["11233030","Desire Fourie","http://desiref.blogspot.com/2018/07/trust-me-july-2018-reminder-project-for.html",null,1531818111],
["11233037","jackie cornfield","https://getthejclook.blogspot.com/2018/07/paper-piecing.html",null,1531819923],
["11233042","Ċ½eljka","https://creativemomanddaughter.blogspot.com/2018/07/29-digi-choosday-challenge-christmas.html",null,1531821110],
["11233047","Jane Willis","http://onionsandpaper.blogspot.com/2018/07/mens-fashion-at-cardz-4-guyz.html",null,1531823910],
["11233061","Kym","http://kyms-crafty-cards.blogspot.com/2018/07/lemon-shortbread-challenge-tuesday-17.html",null,1531825554],
["11233076","Julie T","https://juliescraftyspot.blogspot.com/2018/07/christmas-elf.html",null,1531830243],
["11233078","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/07/happy-birthday.html",null,1531830766],
["11233103","Paperesse","http://www.paperesse.com/2018/07/happy-summer-card-with-qkr-stampede.html",null,1531836080],
["11233123","Mindy Baxter","https://www.mycreativescoop.com/how-to-color-a-puppy-using-copic-markers-free-digi-stamp/",null,1531837663],
["11233131","Janis Lewis","https://pausedreamenjoy.blogspot.com/2018/07/bonnie-ctmh-scrapbook-layout.html",null,1531839497],
["11233135","Anna","http://nonsolocard.blogspot.com/2018/07/un-orsetto-sulla-spiaggia.html",null,1531840041],
["11233196","Lisa Bird","https://craftycard-designs.co.uk/happy-birthday-a-beautiful-garden/",null,1531855285],
["11233214","DebiB","https://thatmightlookgoodonacard.blogspot.com/2018/07/tuesday-throwdown-challenge-401-with.html",null,1531858426],
["11233294","Pam Sebring","http://psebring.blogspot.com/2018/07/bee-baby.html",null,1531886560],
["11233331","Doreen","https://doreensdream.blogspot.com/2018/07/simply-best.html",null,1531894163],
["11233351","Patty Sue2","https://patty-inkitup.blogspot.com/2018/07/the-wizard-of-oz.html",null,1531897935],
["11233362","Dreja","https://drejasbastelwelt.blogspot.com/2018/07/vier-babykarten.html",null,1531899025],
["11233383","tinyworks","http://tinyworks81.blogspot.com/2018/07/tri-fold-card-joys-of-season-dt-digi.html",null,1531903621],
["11233393","jenimc","http://jenicraftroom.blogspot.com/2018/07/mr-and-mrs-z-card.html",null,1531907800],
["11233402","AUNTY SUE","http://auntysuescraftcavern.blogspot.com/2018/07/time-for-tea-new-release-and-challenge.html",null,1531909709],
["11233420","Linda Mc Enery","https://lindamscreations.blogspot.com/2018/07/pennys-paper-crafty-challenge-389.html",null,1531911845],
["11233448","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/07/on-brave-wings-she-flies.html",null,1531916499],
["11233468","Janette Fuller","https://janettefuller.blogspot.com/2018/07/handmade-make-wish-birthday-card.html",null,1531919365],
["11233470","Elena","https://creativele.blogspot.com/2018/07/buon-giorno-e-ben-ritrovati-carissimi.html",null,1531919382],
["11233523","Mindy Baxter","https://www.mycreativescoop.com/1-tip-when-card-making/",null,1531924225],
["11233559","Wies*","https://wiescreablog.blogspot.com/2018/07/borduren-in-t-paars.html",null,1531926775],
["11233563","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/07/lifes-wonderful-moments.html",null,1531927659],
["11233632","Teresa","http://redobsessioncards.blogspot.com/2018/07/my-pink-surf-board.html",null,1531931390],
["11233674","Tammi","http://www.acraftygalslife.com/2018/07/yay-tuesday.html",null,1531941449],
["11233679","Cristina","http://rutscht.blogspot.com/2018/07/love-you-more.html",null,1531942590],
["11233683","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/07/the-heart-always-finds-its-way.html",null,1531943312],
["11233767","Doreen","https://doreensdream.blogspot.com/2018/07/rustic-charm.html",null,1531983055],
["11233771","Sharon","https://frommycraftdesk.blogspot.com/2018/07/are-you-quirky.html?m=1",null,1531984936],
["11233777","Irene","https://madeinborgo.blogspot.com/2018/07/atc-50-learn-to-fly.html",null,1531987981],
["11233779","Teresa","http://redobsessioncards.blogspot.com/2018/07/floral-birthday.html",null,1531988810],
["11233809","Asawari Padhye","http://sawarisbliss.wordpress.com/2018/07/17/the-magic-named-you/",null,1532002475],
["11233813","jenimc","http://jenicraftroom.blogspot.com/2018/07/anemones.html",null,1532004195],
["11233815","Caz Crafty Bits","http://cazcraftybits.blogspot.com/2018/07/all-about-wild-animals-over-at-mawtt.html",null,1532006148],
["11233831","Irene","https://madeinborgo.blogspot.com/2018/07/atc-51-all-my-troubles-wash-away-in.html",null,1532010372],
["11233839","cheiro urgia","https://cheirourgia.blogspot.com/2018/07/summer-wristband.html",null,1532015682],
["11233846","Priya Chajjed ","https://palchincreationbypriyachajjed.blogspot.com/2018/07/mixed-media-art-shine-brightly.html?m=1",null,0],
["11233848","Frezja","http://fioridifantasia.blogspot.com/2018/07/having-dream-planner-page.html?m=1",null,1532019390],
["11233870","Vannessa","http://saffiresstamping.blogspot.com/2018/07/little-miss-muffet-stamps-inspiration_19.html",null,1532026675],
["11233904","Teresa","http://redobsessioncards.blogspot.com/2018/07/winter-love.html",null,1532040294],
["11233932","Pam Sebring","http://psebring.blogspot.com/2018/07/thinking-of-you.html",null,1532055973],
["11233991","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/07/e-se-gli-regalo-un-esperienza-in.html",null,1532078417],
["11234008","Janes Journal","https://jane-janesjournal.blogspot.com/2018/07/mermaids-and-gin.html",null,1532082459],
["11234055","Birgit","https://cardsrfun.blogspot.com/2018/07/show-stopper.html",null,1532091659],
["11234064","Kym","https://kyms-crafty-cards.blogspot.com/2018/07/ching-chou-kuiks-digital-stamps_20.html",null,1532092202],
["11234076","Kym","http://kyms-crafty-cards.blogspot.com/2018/07/27-years-ago-today-i-said-i-do.html",null,1532093264],
["11234078","Suzi Mac","https://wwwsuzies.blogspot.com/2018/07/polkadoodles-challenge-anything-goes.html",null,1532093592],
["11234133","Alysha","http://simply-angelic-crafts.blogspot.com/2018/07/whimsy-digi-stamps.html",null,1532101836],
["11234155","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/07/voor-nancy.html",null,1532106655],
["11234157","Nicolette","http://nicoletteskaarten.blogspot.com/2018/07/ik-ga-op-vakantie-en-neem-niet-mee.html",null,1532106991],
["11234187","Alysha","http://simply-angelic-crafts.blogspot.com/2018/07/does-my-bum-look-big-in-this.html",null,1532114038],
["11234225","Altered Fairy Tales","https://alteredfairytales.blogspot.com/2018/06/project-share-happy-camper.html",null,0],
["11234226","Altered Fairy Tales","https://alteredfairytales.blogspot.com/2018/07/project-share-sea-tales.html",null,1532121307],
["11234243","Teresa","http://redobsessioncards.blogspot.com/2018/07/christmas-ted.html",null,1532128048],
["11234276","Norma","http://creatingandsharingit.blogspot.com/2018/07/christmas-in-july-with-polkadoodles.html",null,0],
["11234328","Hazel","https://craftyhazelnut.blogspot.com/2018/07/chnc-challenge-395.html",null,1532163425],
["11234537","Claudia Martins","https://1pandaideiascriativas.blogspot.com/2018/07/cores-do-meu-pais.html",null,1532188724],
["11234581","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/07/broer-en-zus-zijn-jarig.html",null,1532195815],
["11234646","Plony","http://plonysbloggie.blogspot.com/2018/07/explosie-box.html",null,1532211471],
["11234664","Craftartista","https://craftartista.blogspot.com/2018/07/beautiful-flowers-for-you.html",null,1532225107],
["11234666","Cass","https://casscreatingnow.blogspot.com/2018/07/chnc-christmas-395.html",null,1532225588],
["11234730","Rose Street","https://tatteredrosecrafts.blogspot.com/2018/07/just-for-you-card.html",null,1532245746],
["11234754","tinyworks","https://tinyworks81.blogspot.com/2018/07/card-sweet-nectar-dt-le-anns-world-101.html",null,1532251776],
["11234766","Nicolette","http://nicoletteskaarten.blogspot.com/2018/07/van-harte.html",null,1532255594],
["11234857","Jootje","http://jootjesscrapcards.blogspot.com/2018/07/zwemdiploma-a.html",null,1532270956],
["11234986","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2018/07/embossed-background-with-dies.html",null,1532321552],
["11234987","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2018/07/cas-succulent-card.html",null,1532321681],
["11235003","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.com/2018/07/artists-tools.html",null,1532326818],
["11235009","Janes Journal","https://jane-janesjournal.blogspot.com/2018/07/the-wonderful-world-of-wonderland.html",null,1532328154],
["11235018","Ans Gilbert","http://dekaartenvanonsmam.blogspot.com/2018/07/happy-birthday_23.html",null,1532332835],
["11235233","Betenshi","http://betenshi.blogspot.com/2018/07/sea-horsey-quick-and-simple-card.html",null,1532372894],
["11235238","Pippa","https://pippapblog.wordpress.com/2018/07/23/could-do-with-some-snow-its-so-hot/",null,1532373307],
["11235346","Christine A","https://itsacarddaysnight.blogspot.com/2018/07/pixelated-dress.html",null,1532394078],
["11235366","Cathymac","http://goldeninkspirations.blogspot.com/2018/07/stuck-on-you.html",null,1532405050],
["11235371","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2018/07/2-cards-with-one-image.html",null,1532406015],
["11235402","Bisse","https://vasemmalkadella.blogspot.com/2018/07/tilauskortti-rippijuhliin.html",null,1532418578],
["11235417","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/07/golf-good-luck-card.html",null,1532422563],
["11235427","Doreen","https://doreensdream.blogspot.com/2018/07/varied-vase.html",null,1532427390],
["11235431","Teresa","http://redobsessioncards.blogspot.com/2018/07/life-saving-coffee.html",null,1532428208],
["11235489","Dreja","https://drejasbastelwelt.blogspot.com/2018/07/zwei-herbstkarten.html",null,1532441334],
["11235716","Angie J","https://angiescraftfusion.blogspot.com/2018/07/vls-christmas-baubles.html",null,1532468623],
["11235722","Dawn Frost","http://stamp-n-play.blogspot.com/2018/07/bugaboos-christmas-in-july-day-4-nr.html",null,1532469790],
["11235736","Donna R","https://indianainking.blogspot.com/2018/07/christmas-in-july-day-3.html",null,1532472621],
["11235757","Donna Flowers","https://duncanstreetdesigns.blogspot.com/2018/07/happy-birthday-challenges-for-days.html",null,1532476709],
["11235804","Barbara Bruder","http://artandsoulcreations.blogspot.com/2018/07/thinking-of-you.html",null,1532493663],
["11235818","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2018/07/feeling-sketchy-knjizna-vila.html",null,1532496433],
["11235838","Doreen","https://doreensdream.blogspot.com/2018/07/sending-hugs.html",null,1532500304],
["11235902","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/07/layered-stamping-techniue.html",null,1532516623],
["11235942","Jennifer Scull","http://justcoffeepleasestampsribbonspaper.blogspot.com/2018/07/so-proud-of-you-steampunk-chemistry-card.html",null,1532522179],
["11235977","Dawn Frost","http://stamp-n-play.blogspot.com/2018/07/bugaboos-christmas-in-july-day-5-make.html",null,1532526083],
["11236021","Mindy Baxter","https://www.mycreativescoop.com/simon-says-stamp-anything-goes-featuring-art-impressions/",null,1532528243],
["11236184","J. Atterbury Creations","http://jatterburycreations.blogspot.com/2018/07/scripture-series-like-watered-garden.html",null,1532552869],
["11236186","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/07/christmas-card.html",null,1532553250],
["11236216","elizabeth h","http://warmharted.blogspot.com/2018/07/camp-out.html",null,1532562574],
["11236220","Donna R","https://indianainking.blogspot.com/2018/07/day-4-5-at-catch-bug.html",null,1532566162],
["11236247","Meighan Wheller","https://meighanwheller.blogspot.com/2018/07/sg-flower-power.html",null,1532580004],
["11236296","Ines","https://inka-mojmalyswiat.blogspot.com/2018/07/inspiracja-dla-crafty-moly_19.html",null,1532599652],
["11236312","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/07/16th-birthday-card.html",null,1532612874],
["11236389","DebiB","https://thatmightlookgoodonacard.blogspot.com/2018/07/bugaboo-christmas-in-july-day-6.html",null,1532629384],
["11236438","Creative Smiles","http://creativesmiles2.blogspot.com/2018/07/embossing-folder-back-to-basics-and.html",null,1532641277],
["11236449","Angies Creations","http://angiescreationsblog.blogspot.com/2018/07/two-cards-done.html#links",null,1532644235],
["11236464","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/07/more-christmas-in-july-christabelle.html",null,1532650083],
["11236542","Priyadarshini Ramakrishnan","https://simpleartcraft-tips.blogspot.com/2018/07/christmas-in-july-card.html",null,1532679702],
["11236543","Priyadarshini Ramakrishnan","https://simpleartcraft-tips.blogspot.com/2018/07/rainbow-colour-cards.html",null,1532680091],
["11236545","Julie P","https://julieprice3.wordpress.com/2018/07/27/christmas-in-july-4/",null,1532681393],
["11236837","Olivia","http://ormcraftynights.blogspot.com/2018/07/kraftin-kimmie-hello.html",null,1532741618],
["11236889","America","https://cardsbyamerica.blogspot.com/2018/07/gone-but-not-forgotten-cat-sympathy-card.html",null,1532762236],
["11237023","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/07/hoera-een-kleinzoon-geboren.html",null,1532787206],
["11237103","cheiro urgia","https://cheirourgia.blogspot.com/2018/07/ahoy.html",null,1532803675],
["11237113","Hazel","https://craftyhazelnut.blogspot.com/2018/07/chnc-challenge-396.html",null,1532807359],
["11237146","Craftartista","https://craftartista.blogspot.com/2018/07/need-more-coffee.html",null,1532820282],
["11237149","Christi C","http://art-without-anxiety.blogspot.com/2018/07/rose-panel-bookmark.html",null,1532820679],
["11237265","Marie-louise","http://mirrescrap.blogspot.com/2018/07/samma-teknik.html",null,1532848127],
["11237386","Arpita","http://arpitashouseofcreation.blogspot.com/2018/07/hello-my-crafty-friends_29.html",null,1532874921],
["11237386","Arpita","http://arpitashouseofcreation.blogspot.com/2018/07/hello-my-crafty-friends_29.html",null,0],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}