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("14Nov2018", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "l/lozzy/MTRub3YyMDE4", "1");
blenza_setcolor("default");
blenza_setExpires("15 months ago");
blenza_setAlphasort("0");
blenza_setBycol("1");
blenza_setMemelinks(false);
blenza_unsetmeme("14Nov2018");
blenza_linkies("thumb","lozzy","14Nov2018","1813191986",3,
[
// MTRub3YyMDE4
["11278032","Caz Crafty Bits","https://cazcraftybits.blogspot.com/2018/11/little-miss-muffetanything-goes.html",null,1542270819],
["11278043","Cristina","https://rutscht.blogspot.com/2018/11/noel.html",null,1542274197],
["11278049","tinyworks","https://tinyworks81.blogspot.com/2018/11/tag-pallina-di-natale-designer-team.html",null,1542276637],
["11278073","pinky","https://pinkysworldsuprojects.blogspot.com/2018/11/pretty-candle-gift-boxes.html",null,1542283497],
["11278075","Varsha from India","https://cartsandcrafts.blogspot.com/2018/11/altered-old-pain-brush-with-sprinkle.html",null,1542284699],
["11278091","Daydream Believer","https://daydreambeliever-gina.blogspot.com/2018/11/finding-time.html",null,1542288065],
["11278129","Kraftyscot (Donna)","https://kraftyscot.blogspot.com/2018/11/iceys-tripple-dipper.html",null,1542292510],
["11278166","Michelle Lancaster","https://laughingducks2012.blogspot.com/2018/11/santa-teddy.html",null,1542296380],
["11278185","Cathy(Kraftykoolkat)","https://kraftykoolkat.blogspot.com/2018/11/sparkles-monthly-challenges-ch-110-dt.html",null,1542298118],
["11278238","Nicola Gold","https://amethystlilydesigns.blogspot.com/2018/11/fluttershine-at-ching-chou-kuik.html",null,1542307387],
["11278246","Donna R","https://indianainking.blogspot.com/2018/11/m-is-for-mother-mary-and-messiah.html",null,1542308604],
["11278259","AJ","https://ajcreativeenergy.blogspot.com/2018/11/mermaids-candy-cane.html",null,1542311030],
["11278319","monique","http://moniqueschattefor.blogspot.com/2018/11/winter.html",null,1542320203],
["11278320","Ines","https://inka-mojmalyswiat.blogspot.com/2018/11/inspiracja-dla-scrap-shopu_15.html",null,1542320316],
["11278467","Anna","https://nonsolocard.blogspot.com/2018/11/card-stellare-per-un-compleanno.html",null,1542355475],
["11278476","Jackie T","https://tinyrosecr.blogspot.com/2018/11/christmas-cardinal-easel-christmas-card.html",null,1542357143],
["11278478","Rainey's Craft Room","https://raineyscraftroom.blogspot.com/2018/11/fussy-fancy-guest-designer.html",null,1542357500],
["11278491","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/11/enjoy-your-birthday-en-marco-borsato.html",null,1542362221],
["11278511","Sarah Wills","http://mallowscrafts.blogspot.com/2018/11/naughty-or-nice.html",null,1542366552],
["11278553","Lori Podolsky","https://loripodolsky.blogspot.com/2018/11/flowers-in-vase.html",null,1542373588],
["11278554","Cathymac","http://goldeninkspirations.blogspot.com/2018/11/looking-back-at-odbd-november-release.html",null,1542373597],
["11278558","NanaConnie","http://mygrammysattic.blogspot.com/2018/11/nativity-night.html",null,1542374090],
["11278562","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/11/buon-compleanno-mirna.html",null,1542374458],
["11278622","https://jane-janesjournal.blogspot.com/2018/11/a-rainbow-reminder.html?m=1","http://jane-janesjournal.blogspot.com/2018/09/the-daydreamer.html?m=0",null,0],
["11278623","Janes Journal","https://jane-janesjournal.blogspot.com/2018/11/a-rainbow-reminder.html?m=1",null,1542379641],
["11278716","Jolanda","https://jolandasblogs.blogspot.com/2018/11/naughty-or-nice.html",null,1542393955],
["11278800","ValeryAnne","https://itsanalienlife.blogspot.com/2018/11/101112-lay-them-straight.html",null,1542415099],
["11278807","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/i-couldnt-fix-your-breaks-so-i-made.html",null,1542417707],
["11278808","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/heres-to-you-bugaboo-free-friday.html",null,1542417754],
["11278846","Shamita","https://spiralcreativity.blogspot.com/2018/11/winter-wonderland.html",null,1542426497],
["11278933","nnalorac","https://somethinggonemissing.blogspot.com/2018/11/dis-digi-designs-challenge-blog-include.html",null,1542447416],
["11278937","Kathyk","https://purpliciousprincessdiaries.blogspot.com/2018/11/saturday-and-some-more-pix.html",null,1542448130],
["11278963","Swissie","https://swissieliv.blogspot.com/2018/11/christmas-tags.html",null,1542456457],
["11278965","Aileen","http://colourandsparkle.blogspot.com/2018/11/the-flower-challenge-26-special.htmlwer-challenge-26-special-occasion.html",null,1542457062],
["11279037","Donna R","https://indianainking.blogspot.com/2018/11/day-17-letter-o.html",null,1542469718],
["11279072","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/so-much-to-be-thankful-for-catch-bug.html",null,1542475671],
["11279114","Maryann Scrapbooking","https://maryann-scrap.blogspot.com/2018/11/mixed-media-chat-tulle-et-dentelles.html",null,1542482675],
["11279204","Barbara Bruder","http://artandsoulcreations.blogspot.com/2018/11/merry-christmas.html",null,1542509016],
["11279212","Pam Sebring","http://psebring.blogspot.com/2018/11/brown-grateful-place-card.html",null,1542512266],
["11279220","Maxine D .","https://kiwimeskreations.blogspot.com/2018/11/mixed-media-and-bright-colours.html",null,1542513415],
["11279304","Julie P","https://julieprice3.wordpress.com/2018/11/18/portrait-of-a-lady-mini-album/",null,1542521900],
["11279317","Chandhini","https://thecreativetwins.blogspot.com/2018/11/bookmarks.html",null,1542525626],
["11279363","Lovely Linda","https://lovelylindascraftcentral.blogspot.com/2018/11/in-sympathy.html",null,1542537412],
["11279376","Craftartista","https://craftartista.blogspot.com/2018/11/butterfly-gift-bag-and-card.html",null,1542539994],
["11279378","jenimc","https://jenicraftroom.blogspot.com/2018/11/snowtime.html",null,1542540321],
["11279434","Teresa","http://redobsessioncards.blogspot.com/2018/11/christmas-window.html",null,1542549133],
["11279444","monique","https://moniqueschattefor.blogspot.com/2018/11/the-nutckacker.html",null,1542549855],
["11279473","Teresa","http://redobsessioncards.blogspot.com/2018/11/blossom.html",null,1542554412],
["11279524","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/so-incredibly-grateful-2-cards.html",null,1542564951],
["11279537","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/11/jingle-all-way.html",null,1542567734],
["11279563","Valeryanne","https://itsanalienlife.blogspot.com/2018/11/13141516-begin-again.html",null,1542576070],
["11279581","Vannessa","https://saffiresstamping.blogspot.com/2018/11/fantasy-friday-16-featuring-lili-of.html",null,1542579635],
["11279637","AndreaBastelmaus","https://andreabastelmaus.blogspot.com/2018/11/jetzt-aber-schnell.html",null,1542603002],
["11279675","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/11/for-magazine-nov-dec-polkadoodles.html",null,1542615546],
["11279676","Anna","https://nonsolocard.blogspot.com/2018/11/wedding-card-con-topolino.html",null,1542615618],
["11279678","Linda Mc Enery","https://lindamscreations.blogspot.com/2018/11/pet-lovers-christmas-2018-4.html",null,1542616191],
["11279727","Alysha","http://simply-angelic-crafts.blogspot.com/2018/11/dis-digi-designs-include-sentiment.html",null,1542628003],
["11279829","Annemi","https://systeryster-annemi.blogspot.com/2018/11/time-for-challenge-73-in-aurora-wings.html",null,1542642508],
["11279897","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/there-is-no-time-always-fun-challenges.html",null,1542652164],
["11279903","Laine","https://dreamlaine.blogspot.com/2018/11/christmas-candy-cane.html",null,1542654463],
["11279917","Bernadet","http://cardsbybernadet.blogspot.com/2018/11/noud-is-6-jaar.html",null,1542655657],
["11279927","Wies","https://wiescreablog.blogspot.com/2018/11/een-fleurige-pop-up-verjaardagskaart.html",null,1542657895],
["11279940","Lisa Bird","https://craftycard-designs.co.uk/you-are-my-world/",null,1542659318],
["11279974","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2018/11/lacy-sunshine-showcase-dt.html",null,1542665513],
["11279991","AJ","https://ajcreativeenergy.blogspot.com/2018/11/santa-called.html",null,1542669622],
["11279995","Donna R","https://indianainking.blogspot.com/2018/11/quarter-fold-card.html",null,1542670813],
["11280002","Asmah Zainal Abidin","https://qinaahanaartsandcrafts.blogspot.com/2018/11/mixed-media-art-journal-tutorial.html",null,1542672979],
["11280048","Granne","https://aavamaki.blogspot.com/2018/11/b-day-card-for-cat-lover.html",null,1542693446],
["11280068","Borqna","https://borqna-venkova.blogspot.com/2018/11/ikesworld-challenges114-colour.html",null,1542699394],
["11280083","Marja","https://marjaskaarten.blogspot.com/2018/11/sneeuwpop-op-je-kaart.html",null,1542702406],
["11280111","Priyadarshini","https://simpleartcraft-tips.blogspot.com/2018/11/floral-card-for-anniversary.html",null,1542711111],
["11280128","Pippa","https://pippapblog.wordpress.com/2018/11/19/path-of-positivity-challenge-shades-of-green/",null,1542714732],
["11280181","Kali","https://bastelgrotte.de/?p=11677",null,1542719831],
["11280211","Craftartista","https://craftartista.blogspot.com/2018/11/bee-my-honey.html",null,1542723971],
["11280296","AJ","https://ajcreativeenergy.blogspot.com/2018/11/winter-deer.html",null,1542734147],
["11280298","Shamita","https://spiralcreativity.blogspot.com/2018/11/winter-snow.html",null,1542735200],
["11280306","Silke","https://kartenkram.blogspot.com/2018/11/clara-und-der-nussknacker.html",null,1542737625],
["11280317","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/thanks-bugaboo-new-release.html",null,1542739443],
["11280327","Lola","https://littlecardmaker.blogspot.com/2018/11/fred-gnome-christmas-card.html",null,1542741978],
["11280361","Craftartista","https://craftartista.blogspot.com/2018/11/hey-gorgeous.html",null,1542745923],
["11280384","MARLENE","https://cardsmadebymarlene.blogspot.com/2018/11/anything-christmas-goes-at-thaic_20.html",null,1542749116],
["11280403","CreaNancy","https://creanancy.blogspot.com/2018/11/creative-sketchy-girls-30.html",null,1542752034],
["11280490","Pam Sebring","http://psebring.blogspot.com/2018/11/happy-holidays-bear.html",null,1542773540],
["11280497","Kleido","https://kleidosbastelstueble.wordpress.com/2018/11/21/alle-jahre-wieder/",null,1542775387],
["11280524","monique","https://moniqueschattefor.blogspot.com/2018/11/witte-kaart.html",null,1542781078],
["11280591","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/11/hartelijk-gefeliciteerd.html",null,1542790832],
["11280600","Scrapacrolles (Fr)","http://scrapacrolles.over-blog.com/2018/11/une-nouvelle-carte-de-voeux.html",null,1542792273],
["11280691","Ella","https://mojeszydelkoweprzygody.blogspot.com/2018/11/creative-moments-2111.html",null,1542805409],
["11280735","le idee di penelope ","https://ideedipenelope.blogspot.com/2018/11/per-il-compleanno-del-suocero-nessun.html",null,1542809886],
["11280742","Emma R","https://emgoescardmaking.blogspot.com/2018/11/cinnamon-with-stocking-at-whimsy.html",null,1542811143],
["11280746","Katrine ","https://katrinehspapirverden.blogspot.com/2018/11/julekort-i-blatoner.html",null,1542811813],
["11280853","Teresa","http://redobsessioncards.blogspot.com/2018/11/just-for-you-birthday-cake.html",null,1542823518],
["11280945","Teresa","http://redobsessioncards.blogspot.com/2018/11/pumpkin-mice.html?m=1",null,1542834563],
["11280962","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/sprinkle-little-kindness-catch-bug.html",null,1542838944],
["11280996","Pam Sebring","http://psebring.blogspot.com/2018/11/adu-pup.html",null,1542850791],
["11281005","Pam Sebring","http://psebring.blogspot.com/2018/11/christmas-in.html",null,1542851785],
["11281046","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com/2018/11/fall-colours-with-crafty-gals-corner.html",null,1542863118],
["11281047","TracyM 6773 (2)","https://tracyscraftyadventures.blogspot.com/2018/11/e-is-for-easel.html",null,1542863197],
["11281048","TracyM 6773 (3)","https://tracyscraftyadventures.blogspot.com/2018/11/j-is-for-jolly-snowman-jigsaw.html",null,1542863261],
["11281050","TracyM 6773 (4)","https://tracyscraftyadventures.blogspot.com/2018/11/h-is-for-holly.html",null,1542863870],
["11281051","TracyM 6773 (5)","https://tracyscraftyadventures.blogspot.com/2018/11/d-is-for-digital-stamps-again.html",null,1542863977],
["11281052","TracyM 6773 (6)","https://tracyscraftyadventures.blogspot.com/2018/11/c-is-for-more-cute-candy-cane-christmas.html",null,1542864048],
["11281088","Maya","https://mayas-hobbyblogg.blogspot.com/2018/11/oi.html",null,1542877542],
["11281089","Tip Top","http://tiptoptoppers.blogspot.com/2018/11/little-miss-muffet-challenge-202.html",null,1542877610],
["11281097","Teresa","http://redobsessioncards.blogspot.com/2018/11/christmas-angel.html?m=1",null,1542880803],
["11281156","Maria Giselle B.","https://ienjoywhatido.blogspot.com/2018/11/customize-stamp-sentiment-card.html",null,1542902276],
["11281167","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/deck-halls-aud-sentiments.html",null,1542908316],
["11281173","Claudia","http://knutselmeisjes.blogspot.com/2018/11/een-geliefd-persoon.html",null,1542910115],
["11281187","Mynn xx","https://mynnettekitchenonastampage.blogspot.com/2018/11/happy-thanksgiving.html",null,1542913892],
["11281365","tina föcking","https://paperplotterlottas-craftchaos.blogspot.com/2018/11/oddball-interactice-sliding-box-card.html",null,1542976147],
["11281387","Craftartista","https://craftartista.blogspot.com/2018/11/christmas-lights.html",null,1542981084],
["11281394","Kym","https://kyms-crafty-cards.blogspot.com/2018/11/ching-chou-kuiks-digital-stamps_23.html",null,1542983067],
["11281425","Leslie Turner","http://lovetoscrap2.com/2018/11/16/let-it-snow-2",null,1542991627],
["11281436","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/warmest-winter-wishes-colour-crazy.html",null,1542994106],
["11281470","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/cow-pile-bugaboo-free-friday.html",null,1542999475],
["11281491","ValeryAnne","https://itsanalienlife.blogspot.com/2018/11/jasmine-and-jazzberry.html",null,1543003549],
["11281539","Pam Sebring","http://psebring.blogspot.com/2018/11/happiness-gal.html",null,1543013209],
["11281575","Claudia Martins","https://1pandaideiascriativas.blogspot.com/2018/11/projeto-dt-twisted-thursday_20.html",null,0],
["11281576","Claudia Martins","https://1pandaideiascriativas.blogspot.com/2018/11/projeto-dt-lembrete-desafio-your.html",null,1543025907],
["11281577","Claudia Martins","https://1pandaideiascriativas.blogspot.com/2018/11/projeto-dt-scrapping4fun-challenges_23.html",null,1543026065],
["11281579","Craftartista","https://craftartista.blogspot.com/2018/11/golden-dog-brooch.html",null,1543029175],
["11281584","JL","https://craftinggallery.blogspot.com/2018/11/snowman-christmas-card.html",null,1543029787],
["11281607","Patty Sue2","https://patty-inkitup.blogspot.com/2018/11/let-it-snow.html",null,1543033473],
["11281681","Wendy Batchen","https://wenscreations.blogspot.com/2018/11/scrappers-delights-new-release-24th.html",null,1543059339],
["11281753","Natasa","https://najboljsezelje.blogspot.com/2018/11/mavricne-smrecice.html",null,1543072335],
["11281935","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2018/11/give-thanks-catch-bug-3-cards.html",null,1543089612],
["11282139","Melanie","https://creative-world-of-melanie.blogspot.com/2018/11/penguin-fishy-present.html",null,1543145446],
["11282178","Hazel L","http://hazel-hazelshappyhouse.blogspot.com/2018/11/iaas-funny-christmas.html",null,1543153015],
["11282196","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/11/een-gezellige-kerst.html",null,1543156361],
["11282281","Gina","https://ginascards.blogspot.com/2018/11/new-challenge-at-polkadoodles-crafting_23.html",null,1543169491],
["11282312","Vivi Casale","http://handmadebyvivi.blogspot.com/2018/11/por-ai.html",null,1543175411],
["11282390","Karthikha","http://loveforkrafts.blogspot.com/2018/11/thank-you-card-tag-pcm-guest-designing.html",null,1543193679],
["11282444","Ans Gilbert","https://dekaartenvanonsmam.blogspot.com/2018/11/thinking-of-you.html",null,1543217309],
["11282472","Rosina","https://rosina-scrapcards.blogspot.com/2018/11/fijne-verjaardag.html",null,1543225279],
["11282478","tina föcking","https://paperplotterlottas-craftchaos.blogspot.com/2018/11/oddball-new-release-with-sagittarius.html",null,1543226145],
["11282520","Craftartista","https://craftartista.blogspot.com/2018/11/snowflakes.html",null,1543234560],
["11282530","Hazel","https://craftyhazelnut.blogspot.com/2018/11/chnc-challenge-413.html",null,1543235965],
["11282676","Silke","https://kartenkram.blogspot.com/2018/11/ho-ho-ho.html",null,1543257523],
["11282705","niki1","https://www.splitcoaststampers.com/gallery/photo/2901927?&cat=500&ppuser=205884",null,1543262974],
["11282711","Nisha","https://creationspersonalised.blogspot.com/2018/11/love.html",null,1543265007],
["11282818","Leslie Turner","http://lovetoscrap2.com/2018/11/01/merry-everything-happy-always",null,1543282162],
["11282821","Leslie Turner","http://lovetoscrap2.com/2018/11/14/to-a-great-friend",null,1543282307],
["11282892","Nicolette's kaarten","http://nicoletteskaarten.blogspot.com/2018/11/coffebreak-en-top-2000-cafe.html",null,1543305972],
["11282949","Cicci with the Pen","https://ciccividpennan.blogspot.com/2018/11/new-atg-challene-ttcrd-sponsor-decosses.html",null,1543320131],
["11283009","Craftartista","https://craftartista.blogspot.com/2018/11/christmas-cheer.html",null,1543330128],
["11283063","Caroline's Creaties","https://caroline-creaties.blogspot.com/2018/11/voor-gerjanne.html",null,1543334361],
["11283069","Angela B","https://tastecraftiness.blogspot.com/2018/11/decosses-dynamite-doodles-at-ttcrd.html",null,1543334785],
["11283105","Chandhini","https://thecreativetwins.blogspot.com/2018/11/quilled-shadow-box.html",null,1543339569],
["11283150","Steffi H.","https://www.flickr.com/photos/spinkymausi/46077712231/in/dateposted/",null,1543347662],
["11283167","Ma-Mi","https://rilcekinkljuncek.blogspot.com/2018/11/feeling-sketchy-zlata-mandala.html",null,1543351630],
["11283187","Shamita","https://spiralcreativity.blogspot.com/2018/11/cardinal-bird.html",null,1543354196],
["11283277","Junebug Creations","https://junebugcreations.wordpress.com/2018/11/27/snowflakes-abound",null,1543378342],
["11283401","Sheryl Hare","https://marchharecards.blogspot.com/2018/11/deer-duo.html",null,1543405325],
["11283431","Katrine","https://katrinehspapirverden.blogspot.com/2018/11/julekort-med-reinsdyr.html",null,1543409988],
["11283434","Donna R","https://indianainking.blogspot.com/2018/11/day-28-letter-y.html",null,1543410141],
["11283491","Craftartista","https://craftartista.blogspot.com/2018/11/what-is-meant-to-be_28.html",null,1543414645],
["11283618","Rosina","http://rosina-scrapcards.blogspot.com/2018/11/beterschap.html",null,1543428659],
["11283642","Craftartista","https://craftartista.blogspot.com/2018/11/mice-and-horse.html",null,1543435406],
["11283856","Claudia Martins","https://1pandaideiascriativas.blogspot.com/2018/11/progressive-freebie-challenge-november.html",null,1543500729],
["11283857","Claudia Martins","https://1pandaideiascriativas.blogspot.com/2018/11/projeto-dt-creative-knockouts_22.html",null,1543500794],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}