document.write('\n');
document.write('\n');
var blenza_opt_namemax = 80;
var blenza_opt_linkmax = 152;
var bzloc_youfirst = "You're first";
var bzloc_younext = "You're next";
var bzloc_ifparticip = "If you are participating in";
var bzloc_toaddlink = "To add your entry to the list";
var bzloc_enter = "Enter";
var bzloc_next = "Next";
var bzloc_siteusing2a = "fill in the form below and press ";
var bzloc_siteusing2 = bzloc_siteusing2a + bzloc_enter + ".";
var bzloc_thumb2a = " to add your thumbnail.";
var bzloc_thumb2 = bzloc_siteusing2a + bzloc_next + bzloc_thumb2a;
var bzloc_siteusing3 = "click here and fill in the form that pops up";
var bzloc_yourname = "Your name";
var bzloc_yoururl = "Your URL";
var bzloc_comment = "Please leave a comment after linking... Thank you!";
var bzloc_checkname = "Please enter your name.";
var bzloc_namelength = "The length of your name must be less than or equal to";
var bzloc_checkurl = "Please enter your link URL.";
var bzloc_urllength = "The length of your URL must be less than or equal to";
var bzloc_urlprefix = "Link URL must begin with 'http://'";
var bzloc_sharedmeme = "Shared Meme - Click to Subscribe";
var bzloc_clicktodisp = "Click here to display the links for this post";
var bzloc_upgrademult = "You may upgrade to display more than one Linky at a time";
var bzloc_owner = "Blog Owner";
var bzloc_export = "If you wish to export this list to HTML, click here";
var bzloc_disablemsg = "Click here to disable this message";
var bzloc_whatthis = "What is this?";
var bzloc_expiry = "Linky Widget expiration";
var bzloc_winner = "Winning entry";
var bzloc_caching = "Caching system in use... links may take a minute to post";
var bzloc_thumbnext = "Click here to add your thumbnail if the pop-up does not appear.";
var bzloc_cktool = "Click here for Mister Linky's name/URL cookie removal tool.";
var bzloc_nopopwin = "Unable to open the thumbnail popup window. Check your browser settings.";
var bzloc_maint = "Please read about the upcoming system maintenance";
var bzloc_bugcheck = "An internal error has occurred. Please report this at http://www.misterlinky.net/helpdesk/";
var bzloc_dashboard = "Dashboard";
var bzloc_clickdisp = "Click to display the links and settings for this widget";
var bzloc_policy = "Check to accept use/privacy policy (click to read)";
var bzloc_nopolicy = "You must accept the use/privacy policy to use this widget.\n\nClick the link below to read the policy and check the box to accept.\n\nThen press Enter again to add your link to the list.\n\nNOTE: If you like, you can click a button on the policy page\nto save a cookie and remember you've accepted the policy.";
blenza_ifr = null;
var blenza_newwin = 1;
function getIEVersion(){
var agent = navigator.userAgent;
var reg = /MSIE\s?(\d+)(?:\.(\d+))?/i;
var matches = agent.match(reg);
if (matches != null) {
return { major: matches[1], minor: matches[2] };
}
return { major: "-1", minor: "-1" };
}
var ie_version = getIEVersion();
var is_ie10 = ie_version.major == 10;
var is_ie9e = ie_version.major > 0 && ie_version.major <= 9;
if (!blenza_inited) {
var blenza_whoName = null;
var blenza_whoEmail = null;
var blenza_whoURL = null;
var blenza_user = null;
var blenza_xurl = null;
var blenza_showredx = true;
var blenza_color = null;
var blenza_thumbGetter = null;
var blenza_thumbExternal = null;
var blenza_thumbRoot = new Array();
var blenza_thumbApprove = null;
var blenza_border = "#000";
var blenza_gray = "#888";
var blenza_meme_unset = new Array();
var blenza_meme_id = new Array();
var blenza_meme_name = new Array();
var blenza_meme_text = new Array();
var blenza_meme_shared = new Array();
var blenza_nourl = new Array();
var blenza_hideurl = new Array();
var blenza_ord = 0;
var blenza_expiration = null;
var blenza_memelinks = true;
var blenza_winnerName = null;
var blenza_winnerUrl = null;
var blenza_bycol = 1;
var blenza_fliplinks = 0;
var blenza_alphasort = 0;
blenza_dynamic = false;
var metas = document.getElementsByTagName("meta");
for (var i = 0; i < metas.length; i++) {
if (metas[i].name == "blogger-template")
blenza_dynamic = metas[i].content == "dynamic";
}
}
var blenza_ntu = new Array();
function blenza_xhr()
{
if (window.XMLHttpRequest) return new XMLHttpRequest();
else if (window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP");
else return null;
}
function blenza_xml(text)
{
if (text.message != null) text = text.message;
var xml;
if (text.length >= 5 && text.substring(0, 5) == "request-error" + text + "";
return blenza_parse(xml);
}
function blenza_parse(xml)
{
var doc;
if (window.DOMParser) {
var p = new DOMParser();
doc = p.parseFromString(xml,"text/xml");
}
else {
doc = new ActiveXObject("Microsoft.XMLDOM");
doc.async = false;
doc.loadXML(xml);
}
return doc;
}
function blenza_send(url, data, postid, cb)
{
// hack: if it's IE9 or earlier, just do a get and be done with it
if (is_ie9e) {
var img = document.getElementById("status-" + postid);
if (img != null) {
var now = new Date().getTime();
img.src = url + "?" + data + "&iehack=true&ts=" + now;
}
cb(blenza_xml("success"));
return;
}
try {
var method = data ? "POST" : "GET";
var req = blenza_xhr();
req.open(method, url, true);
if ("withCredentials" in req) {
req.withCredentials = true;
}
if (method == "POST")
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");
req.onreadystatechange = function() {
if (req.readyState !== 4) return;
if (req.status != 200) {
cb(blenza_xml("Unexpected request status " + req.status));
}
else if (req.responseXML != null) {
cb(req.responseXML);
}
else {
cb(blenza_xml(req.responseText));
}
};
req.send(data);
}
catch (e) {
msg = e.message;
if (msg == null || msg.length == 0) msg = "Unknown error";
cb(blenza_xml(msg));
}
}
function blenza_getValue(ele, name)
{
if (ele == null) return null;
var elems = ele.getElementsByTagName(name);
if (elems == null) return null;
var one = elems.item(0);
if (one == null || one.firstChild == null) return null;
if (one.firstChild.data != null) return one.firstChild.data;
else return null;
}
function blenza_checkStatus(ele)
{
if (ele == null) {
alert("Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: could not check status");
return false;
}
var sts = blenza_getValue(ele, "status");
if (sts == "success")
return true;
var err = blenza_getValue(ele, "error");
if (sts == "request-error")
msg = "An error occurred while processing the request:\n" + err + "\nPlease try your request again later";
else if (sts == "internal-error")
msg = "Internal error - please submit a help desk ticket at misterlinky.net/helpdesk and include the reason: " + err;
else if (err == "Duplicate entry")
msg = "That entry has already been added to the list";
else
msg = "Error: " + err;
alert(msg);
return false;
}
function blenza_doInsert(form, xurl, postid, cb)
{
var data = "";
for (i = 0; i < form.elements.length; i++) {
var ele = form.elements[i];
var name = ele.name;
if (name.length < 3 || name.substring(0,3) != "ml_") continue;
if (data.length > 0) data += "&";
data += name.substring(3) + "=";
var val;
if (ele.type == "checkbox") {
if (ele.checked) val = ele.value;
else val = "";
}
else val = ele.value;
data += escape(val);
}
blenza_send(xurl + "/entry_api.php", data, postid, cb);
}
function blenza_switcheroo(off, on)
{
var ele1 = blenza_elem(off);
ele1.style.display = "none";
var ele2 = blenza_elem(on);
ele2.style.display = "block";
}
function blenza_setNextone(pi, name, url)
{
var nx = blenza_elem("nextone-" + pi);
if (nx != null) {
nx.innerHTML = '' + name + '';
}
}
function blenza_reThumb(a, pi)
{
var form = document.getElementById("blenza_" + pi);
if (form == null) {
alert("Cannot locate form, please report internal error to Mister Linky");
return false;
}
form.action = blenza_xurl + "/thumbwin.php";
var name;
if (form.ml_name) name = form.ml_name.value;
else name = form.name.value;
if (! blenza_checkName(name)) return false;
var url;
if (form.ml_url) url = form.ml_url.value;
else url = form.url.value;
if (! blenza_checkUrl(pi, url)) return false;
a.href = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + escape(name) + "&url=" + escape(url);
return true;
}
function blenza_policyCheck(id)
{
var chk = document.getElementById("policy" + id);
if (chk) chk.checked = true;
}
// new and improved!
function blenza_doEnter(form) // false on error
{
if (!form) return;
try {
var name = null;
if (form.ml_name && form.ml_name.value) name = form.ml_name.value;
var url = null;
if (form.ml_url && form.ml_url.value) url = form.ml_url.value;
var pi = form.ml_postid.value;
var xurl = form.ml_xurl.value;
if (! blenza_checkName(name)) return false;
if (pi == null || xurl == null) {
alert(bzloc_bugcheck);
return false;
}
if (!form.policy.checked) {
alert(bzloc_nopolicy);
return false;
}
if (! blenza_checkUrl(pi, url)) return false;
if (form.ml_src.value != "thumb") {
var cb = function(doc) {
if (! blenza_checkStatus(doc)) return;
blenza_setNextone(pi, name, url);
blenza_switcheroo("theform-" + pi, "theform2-" + pi);
}
blenza_doInsert(form, xurl, pi, cb);
}
else {
var popurl = blenza_xurl + "/thumbwin.php?owner=" + escape(form.ml_owner.value) + "&postid=" + escape(pi) + "&name=" + name + "&url=" + escape(url);
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin == null) alert(bzloc_nopopwin);
}
}
catch (e) {
alert("Uncaught error: " + e.message + "\n" + e.stack);
}
return false;
}
function blenza_checkName(name)
{
if (name.length == 0) {
alert(bzloc_checkname);
return false;
}
if (name.length > blenza_opt_namemax) {
alert(bzloc_namelength + " " + blenza_opt_namemax);
return false;
}
return true;
}
function bz_starts(str, pre)
{ return (str.substring(0, pre.length) == pre); }
function blenza_checkUrl(pi, url)
{
if (blenza_nourl[pi] > 0) return true;
if (url.length == 0) {
alert(bzloc_checkurl);
return false;
}
if (url.length > blenza_opt_linkmax) {
alert(bzloc_urllength + " " + blenza_opt_linkmax);
return false;
}
if (!bz_starts(url, "http://") && !bz_starts(url, "https://")) {
alert(bzloc_urlprefix);
return false;
}
if (url == "http://www.") {
alert(bzloc_checkurl);
return false;
}
return true;
}
function blenza_elem(id)
{
return document.getElementById(id);
}
function blenza_display(xurl, owner, pi)
{
var popwin = window.open(xurl + "/display.php?owner=" + owner + "&postid=" + pi, "blenza_linkypop", "height=360,width=400,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null) {
return;
}
}
function blenza_getthumb(owner, pi, secret)
{
var popurl = blenza_thumbGetter + "getthumb.php?owner=" + owner + "&postid=" + pi + "&secret=" + secret + "&init=true";
var popwin = window.open(popurl, "blenza_linkypop", "height=400,width=480,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no");
if (popwin != null)
setTimeout(function(){ blenza_getthumb2(popwin, popurl); }, 3000);
}
function blenza_getthumb2(popwin, popurl)
{
try {
if (popwin == null) return;
if (popwin.innerHeight != null) return;
}
catch (err) {
return;
}
}
function blenza_setwho(n, e, u)
{
blenza_whoName = n;
blenza_whoEmail = e;
blenza_whoURL = u;
}
function blenza_setuser(v)
{
blenza_user = v;
}
function blenza_setredx(v)
{
blenza_showredx = v;
}
function blenza_setxurl(v)
{
blenza_xurl = v;
}
function blenza_setcolor(v)
{
blenza_color = v;
}
function blenza_setthumbs(pi, g, e, r, a)
{
blenza_thumbGetter = g;
blenza_thumbExternal = e;
blenza_thumbRoot[pi] = r;
blenza_thumbApprove = (a > 0);
}
function blenza_setmeme(pi, id, name, text, shared)
{
blenza_meme_unset[pi] = false;
blenza_meme_id[pi] = id;
blenza_meme_name[pi] = name;
blenza_meme_text[pi] = text;
blenza_meme_shared[pi] = shared;
}
function blenza_unsetmeme(pi)
{
blenza_meme_unset[pi] = true;
blenza_meme_id[pi] = null;
blenza_meme_name[pi] = null;
blenza_meme_text[pi] = null;
blenza_meme_shared[pi] = null;
}
function blenza_setYourUrl(pi, nourl, hideurl)
{
blenza_nourl[pi] = nourl;
blenza_hideurl[pi] = hideurl;
}
function blenza_setExpires(str)
{
blenza_expiration = str;
}
function blenza_setMemelinks(v)
{
blenza_memelinks = v;
}
function blenza_setWinner(name, url)
{
blenza_winnerName = name;
blenza_winnerUrl = url;
}
function blenza_setFliplinks(n)
{
blenza_fliplinks = n;
}
function blenza_setAlphasort(n)
{
blenza_alphasort = n;
}
function blenza_setBycol(n)
{
blenza_bycol = n;
}
function blenza_dispExpires()
{
if (blenza_expiration == null) return;
document.write("
" + bzloc_expiry + ": " + blenza_expiration + ".
");
if (blenza_winnerName == null) return;
document.write("' + afterComment + spanCktool);
if (is_ie9e) document.write('
');
if ((src != "easy") && (src != "thumb")) {
document.write("
" + bzloc_caching);
}
document.write('');
blenza_linkies_fini(src, owner, pi, secret, cols, data);
}
function blenza_linkies(src, owner, pi, secret, cols, data)
{
if (pi == "^Preview") data = previewData;
blenza_linkies_wrap1();
blenza_linkies_list(src, owner, pi, secret, cols, data);
if ((src == 'comm') || (src == 'disp')) return;
if (src == 'side')
blenza_linkies_side(src, owner, pi, secret, cols, data, "magic")
else
blenza_linkies_box(src, owner, pi, secret, cols, data, "magic")
blenza_linkies_wrap2();
}
var blenza_inited = true;
try {
blenza_setwho("","","");
blenza_setuser("");
blenza_setxurl("//www.blenza.com:443/linkies");
blenza_setthumbs("14Sep2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRzZXAyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("1.5 years ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Sep2018");
blenza_linkies("thumb","lozzy","14Sep2018","164433781",3,
[
// MTRzZXAyMDE4
["11254359","Granne","http://aavamaki.blogspot.com/2018/09/3d-birdie.html",null,1537007141],
["11254373","Meighan Wheller","https://meighanwheller.blogspot.com/2018/09/cc-anything-goes.html",null,1537009767],
["11254407","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/09/sparkles-monthly-challenges-ch108-dt.html",null,1537015741],
["11254423","My Other World","http://scrapsdamaryv.blogspot.com/2018/09/crative-with-stamps-inspiracao-de.html",null,1537018869],
["11254443","CarolG NZ","https://creationsnz.blogspot.com/2018/09/sew-special.html",null,1537021594],
["11254498","Priya Satish","https://creativemotif.blogspot.com/2018/09/meraki.html",null,1537026153],
["11254503","laurie","https://stampingupnorthwithlaurie.blogspot.com/2018/09/tutti-designs-bethlehem-ornaments.htm",null,1537027348],
["11254540","Shamita","https://spiralcreativity.blogspot.com/2018/09/fairy-love.html",null,1537032399],
["11254570","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/you-are-loved-creations-in-pink.html",null,1537038316],
["11254577","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/my-heart-is-fulled-with-thanks-creative.html",null,1537039919],
["11254579","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/you-light-up-my-christmas-merry.html",null,1537040772],
["11254605","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/heres-to-you-sunny-day-crafting.html",null,1537042559],
["11254732","Desire Fourie","http://desiref.blogspot.com/2018/09/sing-digistamps4joy-august-2018.html",null,1537080393],
["11254746","Wendy R","http://cartai.blogspot.com/2018/09/crafting-by-designs-encouragement.html",null,1537085016],
["11254780","jenimc","http://jenicraftroom.blogspot.com/2018/09/exploding-box.html",null,1537095656],
["11254831","Barbara Bruder","http://artandsoulcreations.blogspot.com/2018/09/celebrate-season.html",null,1537103135],
["11254845","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/dog-birthday-card.html",null,1537104600],
["11254869","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/09/hoera-jullie-gaan-trouwen.html",null,1537106935],
["11254891","Desire Fourie","http://desiref.blogspot.com/2018/09/sunkissed-reminder-project-september.html",null,1537108095],
["11254902","Rutscht","http://rutscht.blogspot.com/2018/09/atc-38-de-52.html",null,1537109413],
["11254959","Nicky","http://stiggyscrafts.blogspot.com/2018/09/anniversary-card.html",null,1537119575],
["11254971","Leona ","https://cardsbyleona.wordpress.com/2018/09/12/creative-moments-challenge-make-a-tag/",null,1537124190],
["11254979","Vannessa","http://saffiresstamping.blogspot.com/2018/09/ive-carved-out-time-to-say.html",null,1537126543],
["11254981","Vivi Casale","http://handmadebyvivi.blogspot.com/2018/09/angel.htm",null,1537127076],
["11255070","AndreaBastelmaus","https://andreabastelmaus.blogspot.com/2018/09/auf-neuen-wegen.html",null,1537155504],
["11255078","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2018/09/inspiration-post-for-floral-textures.html",null,1537159290],
["11255098","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/09/feest.html",null,1537165212],
["11255109","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/09/e-se-il-maestro-di-ballo-compie-gli-anni.html",null,1537168556],
["11255119","nnalorac","https://somethinggonemissing.blogspot.com/2018/09/congratulations.html",null,1537171535],
["11255125","cheiro urgia","https://cheirourgia.blogspot.com/2018/09/autumn-heart.html",null,1537172921],
["11255128","Jackie T","https://tinyrosecr.blogspot.com/2018/09/sent-with-love.html",null,1537176104],
["11255136","Craftartista","https://craftartista.blogspot.com/2018/09/in-woods.html",null,1537178729],
["11255149","Paper Profusion","https://paperprofusion.blogspot.com/2018/09/99-more-sleeps.html",null,1537181471],
["11255225","Mindy Baxter","https://www.mycreativescoop.com/holiday-backgrounds-class-available-for-a-limited-time/",null,1537192187],
["11255313","Wendy F","https://crazy4flowerscards.blogspot.com/2018/09/shades-of-autumnat-cutie-pie-challenge.html",null,1537201914],
["11255342","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/09/40-jaar.html",null,1537205054],
["11255354","Glenda Atkins","https://gilbyscorner.blogspot.com/2018/09/crafty-cardmakers-challenge-218-autumn.html",null,1537207479],
["11255372","sue","https://sue-hickey.blogspot.com/2018/09/creations-in-pink.html",null,1537214918],
["11255375","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/hello-friend-always-fun-challenge-76.html",null,1537215402],
["11255406","Nikki C","https://graphixanddesign.blogspot.com/2018/09/little-halloween-fun.html",null,1537223777],
["11255427","Alicia O'Bryant","https://goldengoddessdesigns.blogspot.com/2018/09/bonsai-in-art-nouveau-lotus-pot-for.html",null,1537235921],
["11255440","Pam Sebring","http://psebring.blogspot.com/2018/09/beary-christmas.html",null,1537241489],
["11255464","Doreen","https://doreensdream.blogspot.com/2018/09/you-are-wonderful.html",null,1537247232],
["11255477","Craftartista","https://craftartista.blogspot.com/2018/09/enjoy-your-coffee.html",null,1537254175],
["11255483","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/09/due-mcguire-inspirations.html",null,1537257051],
["11255484","Tip Top","http://tiptoptoppers.blogspot.com/2018/09/dads-70th-t-is-for.html",null,1537257170],
["11255509","BEASCRAPBOOKING","http://beascrapbooking.blogspot.com/2018/09/tarjeta-reto-crafty-sentiments-fall.html",null,1537266012],
["11255523","Larissa","https://car-d-elicious.blogspot.com/2018/09/merry-monday-snowman-and-robin.html",null,1537270548],
["11255536","Kali","https://bastelgrotte.de/?p=11111",null,1537274004],
["11255539","Lisa :D","https://royalpumpkinart.blogspot.com/2018/09/stamptember-day-sixteen-queens-birthday.html",null,1537274599],
["11255542","Pippa","https://pippapblog.wordpress.com/2018/09/17/a-bit-further-along-the-orange-path/ever-after/",null,0],
["11255543","Pippa","https://pippapblog.wordpress.com/2018/09/17/a-bit-further-along-the-orange-path/",null,1537274859],
["11255633","Rijacki Ledum: Witchin'","https://rijacki.blogspot.com/2018/09/witchin-TTCRD.html",null,1537286813],
["11255656","CreaNancy","https://creanancy.blogspot.com/2018/09/lief-schattig-zoet-klein.html",null,1537292204],
["11255664","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/09/welcome.html",null,1537293451],
["11255668","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/in-my-opinion-pc-stands-for-bugaboo-new.html",null,1537294146],
["11255674","Jootje","http://jootjesscrapcards.blogspot.com/2018/09/make-your-dreams-happen.html",null,1537295646],
["11255686","Pam Sebring","http://psebring.blogspot.com/2018/09/blue-bird.html",null,1537298719],
["11255696","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/hounds-birthday-card.html",null,1537300579],
["11255714","Pam Sebring","http://psebring.blogspot.com/2018/09/best-wishes.html",null,1537303490],
["11255732","Dawn Frost","http://stamp-n-play.blogspot.com/2018/09/bugaboo-candy-cane-bear.html",null,1537308258],
["11255753","Karthikha","http://loveforkrafts.blogspot.com/2018/09/explosion-pop-up-card.html",null,1537314539],
["11255765","Gloria Shirr ","https://purpleglocreations.blogspot.com/2018/09/birthday-card-using-conie-fong-puppy.html",null,1537317186],
["11255766","Gloria Shirr","https://purpleglocreations.blogspot.com",null,1537317350],
["11255863","Nicolette's kaarten","https://nicoletteskaarten.blogspot.com/2018/09/roel-18-jaar.html",null,1537345653],
["11255906","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/09/emerson-life-is-beautiful.html",null,1537356385],
["11255921","Craftartista","https://craftartista.blogspot.com/2018/09/blog-post.html",null,1537359790],
["11255922","AnnChuangCrafts","https://anncard.blogspot.com/2018/09/hello.html",null,1537359808],
["11256025","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/09/shabby-chic-christmas-card.html",null,1537369268],
["11256029","Monique","https://crealoetje.blogspot.com/2018/09/alweer.html",null,1537369578],
["11256071","Sherry Gibson","http://loosestitchesandunraveledthreads.blogspot.com/2018/09/the-creative-crafters-challenge-8.html",null,1537373249],
["11256076","Gerie","https://scraptastisch.blogspot.com/2018/09/gefeliciteerd-mave-en-kyte.html",null,1537375475],
["11256111","Hermien","https://handmadebyhermien.blogspot.com/2018/09/post.html",null,1537380751],
["11256173","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/im-fond-of-pigs-dogs-look-up-to-you.html",null,1537407323],
["11256191","Lisa :D","https://royalpumpkinart.blogspot.com/2018/09/anything-goes-new-challenge-with_17.html",null,1537426090],
["11256194","Lisa :D","https://royalpumpkinart.blogspot.com/2018/09/stamptember-day-seventeen-party-girl.html",null,1537426331],
["11256197","bianca's scrapcards","https://biancasscrapcards.blogspot.com/2018/09/vogelverschrikker.html",null,1537427126],
["11256203","Marja","http://marjaskaarten.blogspot.com/2018/09/the-happy-couple.html",null,1537433049],
["11256214","Harriet","https://harrietpater.wordpress.com/2018/09/20/hello-bird/",null,1537441390],
["11256237","mel-decorcraftdesign","https://decorcraftdesign.wordpress.com/2018/09/20/diy-fall-in-love-sign-with-ice-sticks/",null,1537448670],
["11256286","Kraftyscot (Donna)","http://kraftyscot.blogspot.com/2018/09/mythicalmagical-nixie-mermaid.html",null,1537460523],
["11256353","Tip Top","http://tiptoptoppers.blogspot.com/2018/09/little-miss-muffet-stamps-challenge-198.html",null,1537477141],
["11256358","ValeryAnne","https://itsanalienlife.blogspot.com/2018/09/all-seven.html",null,1537478151],
["11256375","Michelle M","https://chelleshocked2.blogspot.com/2018/09/conie-fong-dt-bowtie-in-my-hair.html",null,1537484873],
["11256382","Donna R","https://indianainking.blogspot.com/2018/09/birthday-flowers-for-birthday-girl.html",null,1537487992],
["11256404","Priyadarshini","https://simpleartcraft.wordpress.com/2018/09/17/cas-layered-card/",null,1537501048],
["11256419","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/09/een-tweeling.html",null,1537506903],
["11256429","Margreet","https://margreets-scrapcards.blogspot.com/2018/09/pioenrozen.html",null,1537509379],
["11256440","Larissa","https://car-d-elicious.blogspot.com/2018/09/gerda-steiner-designs-hey-friend.html",null,1537513633],
["11256450","Rutscht","http://rutscht.blogspot.com/2018/09/trick-or-treat-primera-parte.html",null,1537516102],
["11256452","monique","https://moniqueschattefor.blogspot.com/2018/09/pippi-liefs.html",null,1537516546],
["11256469","Maxine D","https://kiwimeskreations.blogspot.com/2018/09/dimensional-balloons.html",null,1537519814],
["11256528","Pat K","http://patkscards.blogspot.com/2018/09/white-on-white-fussy-and-fancy-friday.html",null,1537534349],
["11256546","Kym","https://kyms-crafty-cards.blogspot.com/2018/09/ching-chou-kuiks-digital-stamps_21.html",null,1537537343],
["11256573","Teresa","https://redobsessioncards.blogspot.com/2018/09/autumn-fairies.html",null,1537540068],
["11256625","Chandhini","https://thecreativetwins.blogspot.com/2018/09/greeting-card.html",null,1537548752],
["11256629","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/09/wishing-you-joys-of-christmas.html",null,1537549774],
["11256645","Kym","https://kyms-crafty-cards.blogspot.com/2018/09/colour-crazy-challenge-blog-friday-21.html",null,1537551857],
["11256648","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/are-we-there-yet-colour-crazy-challenge.html",null,1537552087],
["11256661","Jean Chaney","https://tanglestreetcolorway.blogspot.com/2018/09/alcohol-ink-transfer.html",null,1537552682],
["11256671","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/hello-birthday-girl-bugaboo-free-friday.html",null,1537553368],
["11256689","cheiro urgia","https://cheirourgia.blogspot.com/2018/09/treasure-box.html",null,1537557011],
["11256696","sweetpea","https://sweetpea-janscraftyspot.blogspot.com/2018/09/winged-feet.html",null,1537558099],
["11256734","Teresa","http://redobsessioncards.blogspot.com/2018/09/get-well-soon.html",null,1537569589],
["11256794","sue","https://sue-hickey.blogspot.com/2018/09/to-moon-and-back.html8/09/creations-in-pink.html",null,1537599766],
["11256838","sue","https://sue-hickey.blogspot.com/2018/09/new-release-bonus-event-for-dt.html",null,1537612451],
["11256891","Julie T","https://juliescraftyspot.blogspot.com/2018/09/noel-ornament-card.html",null,1537622612],
["11256919","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2018/09/tag-card.html",null,1537625848],
["11256921","Anna","http://nonsolocard.blogspot.com/2018/09/christmas-lantern.html",null,1537625840],
["11256957","Karen Dunbrook","https://snippets-karen.blogspot.com/2018/09/birthday-cheer.html",null,1537629145],
["11256993","Craftartista","https://craftartista.blogspot.com/2018/09/i-miss-you.html",null,1537631156],
["11257003","Deonna B","http://ialwayslovetomakecards.blogspot.com/2018/09/finally-finished-with-my-spooktacular.html?m=0",null,1537633243],
["11257028","Vivi Casale","https://handmadebyvivi.blogspot.com/2018/09/best-wishes.html",null,1537635529],
["11257046","mel-decorcraftdesign","https://decorcraftdesign.wordpress.com/2018/09/22/diy-gold-decorative-skeleton-leaves/",null,1537637059],
["11257065","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/cheers-happy-birthday-catch-bug.html",null,1537640598],
["11257071","paperplotterlotta","https://paperplotterlottas-craftchaos.blogspot.com/2018/09/all-dressed-up-new-release-with-nap-time.html",null,1537642524],
["11257083","Hazel","http://craftyhazelnut.blogspot.com/2018/09/chnc-challenge-403.html",null,1537648981],
["11257090","Hazel","http://craftyhazelnut.blogspot.com/2018/09/chnc-challenge-404.html",null,1537649950],
["11257104","Julie O","https://muddypawsinkyfingers.blogspot.com/2018/09/always-look-fore-ward-for-dis-digi.html",null,1537653019],
["11257111","Teresa","http://redobsessioncards.blogspot.com/2018/09/birthday-bunting-and-balloons.html",null,1537658620],
["11257128","Judy McKay","https://insearchofmycreativeside.blogspot.com/2018/09/joyous-christmas.html",null,1537668930],
["11257205","Craftartista","https://craftartista.blogspot.com/2018/09/you-make-my-heart-sing.html",null,1537688991],
["11257212","Tracey","http://lalkygirl-my-creative-place.blogspot.com/2018/09/best-wishes-card.html?m=1",null,1537690924],
["11257239","shellshearer","http://shellshearer.blogspot.com/2018/09/happy-new-home.html",null,1537697247],
["11257312","coops","https://coopsclutteredcorner.blogspot.com/2018/09/its-your-daycelebrate.html",null,1537707460],
["11257362","Cicci With the Pen","https://ciccividpennan.blogspot.com/2018/09/pumpkin-mo-manning-image-halloween.html ",null,1537713115],
["11257461","Mindy Baxter","https://www.mycreativescoop.com/white-line-coloring-tutorial-using-copic-markers/",null,1537724589],
["11257513","Teresa","http://redobsessioncards.blogspot.com/2018/09/winter-christmas-tree.html",null,1537739218],
["11257525","Craftartista","https://craftartista.blogspot.com/2018/09/lets-celebrate.html",null,1537743846],
["11257602","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/09/happy-birthday.html",null,1537771276],
["11257631","paperplotterlotta","https://paperplotterlottas-craftchaos.blogspot.com/2018/09/oddball-challenge-reminder-and-new.html",null,1537778522],
["11257632","monique","https://moniqueschattefor.blogspot.com/2018/09/herfst-beterschap.html",null,1537778774],
["11257635","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/09/sposi-di-settembre.html",null,1537779997],
["11257660","elizabeth h","http://warmharted.blogspot.com/2018/09/you-stack-up.html",null,1537787611],
["11257665","elizabeth h","http://warmharted.blogspot.com/2018/09/its-your-world.html",null,1537788533],
["11257792","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/happy-happy-birthday-always-fun.html",null,1537811319],
["11257894","Teresa","http://redobsessioncards.blogspot.com/2018/09/friends.html",null,1537827610],
["11257906","Claudia Martins ","https://1pandaideiascriativas.blogspot.com/2018/09/festive-fridays-challenge-outlawz_20.html",null,1537829519],
["11258026","Craftartista","https://craftartista.blogspot.com/2018/09/puppy-love.html",null,1537863675],
["11258049","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2018/09/passion-for-promarkers-challenge-463.html",null,1537869272],
["11258052","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/09/elephant-with-flowers.html",null,1537870181],
["11258086","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/birthday-card.html",null,1537878451],
["11258087","Rebecca Gillard","http://cardsbybeckie.blogspot.com/2018/09/christmas-exploding-box.html",null,1537878927],
["11258169","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/trick-or-treat-bugaboo-new-release-kinda.html",null,1537893728],
["11258253","Dorothy S","https://cardsbydorothy.blogspot.com/2018/09/some-new-old-items-to-use.html",null,1537919117],
["11258384","Shirley AC","https://nannieflash.blogspot.com/2018/09/challenge-355-colours-of-autumnfall.html",null,1537949765],
["11258425","Hazel","http://craftyhazelnut.blogspot.com/2018/09/another-halloween-birthday.html",null,1537960072],
["11258439","Hazel","http://craftyhazelnut.blogspot.com/2018/09/happy-birthday-sister.html",null,1537962570],
["11258502","Claudia","http://knutselmeisjes.blogspot.com/2018/09/sweet-dreams.html",null,1537970875],
["11258504","Anna","http://nonsolocard.blogspot.com/2018/09/winnie-angel-candle.html",null,1537971312],
["11258537","Julie Reed","https://pumpkinbellycards.blogspot.com/2018/09/decorations-up.html",null,1537976111],
["11258621","Rijacki: Weeds","https://rijacki.blogspot.com/2018/09/weeds.html",null,1537992007],
["11258656","Sharon Hudson","https://craftyhugs.blogspot.com/2018/09/light-up-3d-christmas-tree.html?m=1",null,1537996393],
["11258666","Suze","https://craftysuze.blogspot.com/2018/09/whooo.html",null,1537996569],
["11258690","Hazel","http://craftyhazelnut.blogspot.com/2018/09/happy-halloween-birthday-son.html",null,1537997143],
["11258691","Craftartista","https://craftartista.blogspot.com/2018/09/lovely-zen-flowers.html",null,1537997178],
["11258783","Tip Top","http://tiptoptoppers.blogspot.com/2018/09/little-miss-muffet-stamps-challenge-198_27.html",null,1538034193],
["11258784","Lisa :D","https://royalpumpkinart.blogspot.com/2018/09/stamptember-day-twenty-two-birthday.html",null,1538034595],
["11258873","Pippa","https://pippapblog.wordpress.com/2018/09/27/i-dont-do-halloween/",null,1538059595],
["11258877","Scatty Jan","https://scrappyscatty.blogspot.com/2018/09/polkadoodles-brand-new-heavenly-stamps.html",null,1538060229],
["11258888","Pippa","https://pippapblog.wordpress.com/2018/09/27/peter-pan/",null,1538065250],
["11258898","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/09/illustationer-till-boken-hilma-och-den.html",null,1538068944],
["11258907","Patty Sue2","https://patty-inkitup.blogspot.com/2018/09/fall-colors.html",null,1538070996],
["11258910","Pippa","https://pippapblog.wordpress.com/2018/09/27/skul-for-kats/",null,1538071830],
["11258920","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/seasons-greetings-aud-sentiments-213.html",null,1538073783],
["11258922","Andrea","http://cardsmadebyandrea.blogspot.com/2018/09/polkadoodles-forgotten-techniques.html",null,1538073897],
["11258926","Andrea","http://cardsmadebyandrea.blogspot.com/2018/09/polkadoodles-fancy-fold.html",null,1538074245],
["11258929","america","https://cardsbyamerica.blogspot.com/2018/09/its-fall-thank-you-card-for-dies-r-us.html",null,1538074830],
["11258930","america","https://cardsbyamerica.blogspot.com/2018/09/a-framed-expressions-card-set.html",null,1538074932],
["11258936","Angie's Creations","https://angiescreationsblog.blogspot.com/2018/09/pretty-rose-card.html#links",null,1538076571],
["11258971","Nicola Gold","https://amethystlilydesigns.blogspot.com/2018/09/guest-designer-at-craft-challenge.html",null,1538086342],
["11259059","Repolainen","https://pirjonpaivienpiristysta.blogspot.com/2018/09/3-x-pienelle-tytolle.html",null,1538108064],
["11259074","Ċ½eljka","https://creativemomanddaughter.blogspot.com/2018/09/addicted-to-stamps-and-more-challenge.html",null,1538112000],
["11259082","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/09/from-our-house-to-yours.html",null,1538113688],
["11259140","Aimeslee","https://paper-paisleys.blogspot.com/2018/09/tagging-little-peace-of-winter.html",null,1538131819],
["11259145","Jane Willis","https://onionsandpaper.blogspot.com/2018/09/its-impossible.html",null,1538132258],
["11259274","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/09/im-sorry-catch-bug-free-friday.html",null,1538154610],
["11259283","Ann-Marie S.","https://mylittlepatchofheaven-ams.blogspot.com/2018/09/polkadoodles-anything-goes-week-39.html",null,1538155815],
["11259352","Ma-Mi","http://rilcekinkljuncek.blogspot.com/2018/09/svet-je-lep-ker-je-pisan.html",null,1538166138],
["11259425","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2018/09/cas-layer-card_28.html",null,1538196518],
["11259431","Gloria Shirr - 2nd ","https://purpleglocreations.blogspot.com/2018/09/close-to-my-heart-christmas-shaker.html",null,1538197398],
["11259480","Marja","http://marjaskaarten.blogspot.com/2018/09/een-jongentje-luuk.html",null,1538214020],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}