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/linkies");
blenza_setthumbs("16Nov2017", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "c/creativefingerschallenge/MTZub3YyMDE3", "1");
blenza_setcolor("default");
blenza_setExpires("4 years ago");
blenza_setAlphasort("0");
blenza_unsetmeme("16Nov2017");
blenza_linkies("thumb","CreativeFingersChallenge","16Nov2017","2020139563",3,
[
// MTZub3YyMDE3
["11131323","Jackie T","https://tinyrosecr.blogspot.co.uk/2017/11/crafty-catz-weekly-challenge-blog_17.html",null,1510915713],
["11131336","Beebeebabs","http://beebeebabs2.blogspot.com/2017/11/christmas-card_52.html",null,1510918675],
["11131423","Kym","https://kyms-crafty-cards.blogspot.co.uk/2017/11/ching-chou-kuiks-digital-stamps_17.html",null,1510930264],
["11131424","Kym","https://kyms-crafty-cards.blogspot.co.uk/2017/11/colour-crazy-challenge-blog-friday-17.html",null,1510930358],
["11131450","Caroline\\'s Creaties 3","http://caroline-creaties.blogspot.nl/2017/11/walking-in-winter-wonderland.html",null,1510932577],
["11131478","Pippa","https://pippapblog.wordpress.com/2017/11/17/new-kid-on-the-block/",null,1510934766],
["11131487","Pippa","https://pippapblog.wordpress.com/2017/11/17/freebie-friday-at-bugaboo/",null,1510936502],
["11131536","Marilyn S","https://onestampingfool.blogspot.ca/2017/11/fairy-garden-house-stampingbella.html",null,1510943411],
["11131542","Marilyn S","https://onestampingfool.blogspot.ca/2017/11/christmas-hair-do-all-dressed-up.html",null,1510944183],
["11131557","niki1","https://www.splitcoaststampers.com/gallery/photo/2837276?&cat=500&ppuser=205884",null,0],
["11131590","Sharon","https://uksharon-colouringforpleasure.blogspot.co.uk/2017/11/christmas-card.html",null,1510951025],
["11131620","Claudia","http://knutselmeisjes.blogspot.be/2017/11/project-life-6.html",null,1510956981],
["11131642","NanaConnie","http://mygrammysattic.blogspot.com/2017/11/a-partridge-in-pear-tree.html",null,1510963294],
["11131678","Aunty Sue","https://auntysuescraftcavern.blogspot.co.uk/2017/11/crafty-catz-challenge-anything-goes.html?m=1",null,1510974524],
["11131722","Crealientje","https://isocrealientje.blogspot.nl/2017/11/borduurkaartje.html",null,1510986710],
["11131738","Janice","https://mycraftroommakes.blogspot.co.uk/2017/11/male-birthday-card.html",null,1510991015],
["11131747","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2017/11/thanks-bunch.html",null,1510994607],
["11131753","Shirley AC1","https://nannieflash.blogspot.co.uk/2017/11/dt-card-for-crafty-friends-add-sentiment.html",null,1510996682],
["11131762","Dreja","http://drejasbastelwelt.blogspot.de/2017/11/zum-hochzeitstag.html",null,1510999057],
["11131835","patty","http://pattyskreativseite.blogspot.de/2017/11/und-noch-eine-version-meiner-wurfel-hihi.html",null,1511012568],
["11131862","scrAPpamondo (AliceP)","http://volidicarta.blogspot.it/2017/11/block-notes-con-fata.html",null,1511016131],
["11131951","Mary Marsh","https://thecharmedlife-maryr917.blogspot.com/2017/11/feel-better.html",null,1511030711],
["11131954","ingunn","http://ingunnsinekort.blogspot.no/2017/11/cas-kort-med-stempel-fra-corea.html",null,1511031742],
["11131958","Larissa","https://car-d-elicious.blogspot.nl/2017/11/dis-digi-designs-challenge-things-with.html",null,1511032075],
["11131964","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2017/11/im-here-for-you-anytime-catch-bug.html",null,1511033442],
["11131982","Hazel","http://craftyhazelnut.blogspot.co.uk/2017/11/chnc-challenge-360.html",null,1511037928],
["11132018","Karen C","http://busyinspirations.blogspot.com/2017/11/its-all-about-love.html",null,1511049512],
["11132043","Heather Mills","http://wirewrapture.blogspot.com/2017/11/sweet-friends.html",null,1511057628],
["11132050","Barbara Bruder","http://artandsoulcreations.blogspot.com/2017/11/have-beary-christmas.html",null,1511059994],
["11132082","Desire Fourie","http://desiref.blogspot.co.za/2017/11/ho-ho-ho-november-2017-reminder-project.html",null,1511069664],
["11132116","Rosina","http://rosina-scrapcards.blogspot.nl/2017/11/van-harte-beterschap.html",null,1511077616],
["11132157","Marja","http://marjaskaarten.blogspot.nl/2017/11/penguins-build-snowman.html",null,1511086697],
["11132202","Dianas Creation","http://dianascreation.blogspot.nl/2017/11/sunflower.html",null,1511095149],
["11132242","Deonna B","http://ialwayslovetomakecards.blogspot.com/2017/11/my-moms-birthday-card-winter-style.html?m=0",null,1511098057],
["11132248","Keti\\'s Projects","https://ketrinslittleprojects.blogspot.si/2017/11/pio-135-large-sentiments-andor-things.html",null,1511098519],
["11132301","Bonnie Garby","http://maketime2craft.com/2017/11/november-craft-hoarders-anonymous-blog-hop.html",null,1511105919],
["11132396","Dawn Frost","http://stamp-n-play.blogspot.ca/2017/11/bugaboo-buckle-up-buttercup.html",null,1511111058],
["11132453","Wies*","http://wiescreablog.blogspot.nl/2017/11/beterschap.html",null,1511121019],
["11132468","Vilinke","http://vilinke123.blogspot.si/2017/11/veseli-snezak.html",null,1511123496],
["11132480","Vic","http://brightandbreezycrafts.blogspot.co.uk/2017/11/a-guest-designer-spot.html",null,1511124637],
["11132608","Pam D","https://itisfinisheddesigns.blogspot.com/2017/11/love-and-appreciation.html",null,1511140769],
["11132656","Karen C","http://busyinspirations.blogspot.com/2017/11/winter-wolf.html",null,1511144769],
["11132807","Mel C","https://www.splitcoaststampers.com/gallery/photo/2837601?&cat=500&ppuser=38654",null,1511152731],
["11132810","Gloria Shirr ","https://purpleglocreations.blogspot.com/2017/11/christmas-card-using-conie-fong.html",null,1511153456],
["11132813","Linda Mc Enery","https://lindamscreations.blogspot.com.au/2017/11/pet-lovers-christmas-2017-16.html",null,1511154126],
["11132821","Chriss","https://chrissandlou.blogspot.com/2017/11/international-art-soul-challenge-21.html",null,0],
["11132854","heike","https://heikesart.blogspot.com/2017/11/let-it-snow.html",null,1511166230],
["11132869","Carole J","https://cjcrafty.blogspot.co.uk/2017/11/scrapbook-stamp-society-white-card.html",null,1511169292],
["11132871","Angela ","http://mijnhobbyhonk.blogspot.nl/2017/11/snel-beter-worden.html",null,1511169723],
["11132879","Scatty Jan","https://scrappyscatty.blogspot.co.uk/2017/11/have-hoot-this-christmas.html",null,1511172856],
["11132902","Ine (creaine)","http://creaine-cards.blogspot.nl/2017/11/nieuwe-challenge-bij-sketchy-girls.html",null,1511178020],
["11132920","Kitty","https://intruderlady.blogspot.nl/2017/11/stardust-christmas-star.html",null,1511180121],
["11132931","Beebeebabs","http://beebeebabs2.blogspot.com/2017/11/shop-til-you-drop.html",null,1511181494],
["11132952","Caroline\\'s Creaties","http://caroline-creaties.blogspot.nl/2017/11/warme-wintergroetjes.html",null,1511184144],
["11132954","Deonna B","http://ialwayslovetomakecards.blogspot.com/2017/11/tree-christmas-tags-day-6.html?m=0",null,1511184436],
["11133007","Marilyn Webb","http://marilynscardsandmore.blogspot.ca/2017/11/christmas-tags.html",null,1511191398],
["11133011","Rutscht","http://rutscht.blogspot.com/2017/11/simple-pleasures.html",null,1511191572],
["11133015","pat k","http://patkscards.blogspot.ca/2017/11/thank-you-fussy-and-fancy-friday.html",null,0],
["11133016","pat k","http://patkscards.blogspot.ca/2017/11/bear-hugs.html",null,1511192409],
["11133031","Donna Mundinger","http://donnamundinger-popsicletoes.blogspot.com/2017/11/new-little-reindeer-sprite-gift-with.html",null,1511194356],
["11133036","Monika Reeck","https://creativewithmonika.blogspot.de/2017/11/billie-and-me-challenge-birthday-flower.html",null,1511195124],
["11133051","Chriss","https://chrissandlou.blogspot.com/2017/11/autumn-paper-sculpture.html",null,1511197639],
["11133061","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2017/11/its-your-birthday-billie-and-monika.html",null,1511198304],
["11133096","Donna Mundinger","http://donnamundinger-popsicletoes.blogspot.com/2017/11/new-challenge-at-aurora-wings_20.html",null,1511202275],
["11133125","Vic","http://brightandbreezycrafts.blogspot.co.uk/2017/11/thankyou.html",null,1511207627],
["11133127","Jane","https://mistybluescreations.blogspot.com/2017/11/thrifty-thursday-at-scrappers-delights.html",null,1511207937],
["11133133","Vannessa","https://saffiresstamping.blogspot.co.uk/2017/11/ching-chou-kuik-inspiration-post-autumn.html",null,1511208461],
["11133202","heike","https://heikesart.blogspot.com/2017/11/x-mas-shopping-in-yorkshire.html",null,1511216092],
["11133223","Carole J","http://cjcrafty.blogspot.co.uk/2017/11/vera-lane-studio-wonderland-2.html",null,1511219071],
["11133225","Angie J","https://angiescraftfusion.blogspot.com.au/2017/11/snowman-head-stand.html",null,1511219100],
["11133242","Gloria Shirr - 2nd ","https://purpleglocreations.blogspot.com/2017/11/christmas-card-using-ctmh-beary.html",null,1511224097],
["11133297","Anet","https://anetscrafting.blogspot.com.au/2017/11/christmas-penguin-sasayaki-glitter.html",null,1511242995],
["11133340","Janice","https://mycraftroommakes.blogspot.co.uk/2017/11/another-male-birthday-card_21.html",null,1511255287],
["11133354","Nick","https://nicksscrapshack.blogspot.se/2017/11/new-challenge-over-at-lacy-sunshines-fb.html",null,1511257799],
["11133431","Beatriz","http://beascrapbooking.blogspot.com.es/2017/11/reto-crafty-sentiments-designs-baby-its.html",null,1511268243],
["11133461","Pippa","https://pippapblog.wordpress.com/2017/11/20/surround-yourself-with-music/",null,1511274742],
["11133468","heike","https://heikesart.blogspot.com/2017/11/creepy-present.html",null,1511275303],
["11133482","Silke","http://kartenkram.blogspot.de/2017/11/zauber-der-weihnachtszeit.html",null,1511277389],
["11133566","Kym","https://kyms-crafty-cards.blogspot.co.uk/2017/11/lemon-shortbread-challenge-tuesday-21.html",null,1511289963],
["11133579","Billie A","https://stampinwithinkonmyfingers.blogspot.com/2017/11/snowy-greetings-bugaboo-new-release.html",null,1511292040],
["11133636","carol gill","https://crafty-stamper.blogspot.co.uk/2017/11/butterflies-and-caterpillars.html",null,1511304477],
["11133673","ingunn","https://ingunnsinekort.blogspot.no/2017/11/rd-coreansk-kjole-kort.html",null,1511313990],
["11133763","Linda Mc Enery","https://lindamscreations.blogspot.com.au/2017/11/balancing-act.html",null,1511336483],
["11133764","Galina","https://perunikadream.blogspot.bg/2017/11/santa-claus-is-coming-sizzix.html",null,0],
["11133822","Cicci with the Pen","https://ciccividpennan.blogspot.com/2017/11/make-it-crafty-girls-ice-skating.html ",null,1511346204],
["11133823","Cicci with the Pen","http://ciccividpennan.blogspot.com/2017/11/new-challenge-over-at-ttcrd-pickled.html",null,1511346270],
["11133923","Beth Brovold","http://becontagiouscrafts.blogspot.ca/2017/11/midweek-magnolia-challenge-178.html",null,1511359275],
["11133925","Marilyn Webb","http://marilynscardsandmore.blogspot.ca/2017/11/wonderful-wednesday-challenge.html",null,1511359595],
["11133973","Mel C","https://www.splitcoaststampers.com/gallery/photo/2838053?&cat=500&ppuser=38654",null,1511363198],
["11134015","Kinda Cute Cards","http://kindacutecards.blogspot.com/2017/11/happy-holidays-with-chick.html",null,1511364328],
["11134115","Andrea Norris","https://sheepskidesigns.blogspot.co.uk/2017/11/christmas-deer.html",null,1511376347],
["11134120","Heather Mills","http://wirewrapture.blogspot.com/2017/11/i-ate-him.html",null,1511376558],
["11134133","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466.1073741829.722595467790055/1469210336461894/?type=3&theater",null,1511377708],
["11134207","Hazel","http://craftyhazelnut.blogspot.co.uk/2017/11/pennys-challenge-356.html",null,1511393567],
["11134380","Kali","http://bastelgrotte.de/?p=9311",null,1511432463],
["11134443","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466.1073741829.722595467790055/1469975376385390/?type=3&theater",null,1511445268],
["11134518","PaperPlotterLotta","http://paperplotterlottas-craftchaos.blogspot.de/2017/11/julia-spiri-new-release-unicorn.html",null,1511462441],
["11134529","niki1","https://images.splitcoaststampers.com/data/gallery/500/2017/11/23/Blokjeskaart_by_niki1.jpg?ts=1511442495",null,0],
["11134530","niki1","https://www.splitcoaststampers.com/gallery/photo/2838192?&cat=500&ppuser=205884",null,0],
["11134565","Angie J","https://angiescraftfusion.blogspot.com.au/2017/11/jacks-box-of-horror-gift-card-holder.html",null,1511474753],
["11134615","Mel C","https://www.splitcoaststampers.com/gallery/photo/2838283?&cat=500&ppuser=38654",null,1511503703],
["11134646","Teresa","http://redobsessioncards.blogspot.co.uk/2017/11/christmas-friends.html",null,1511511287],
["11134679","carol gill","https://crafty-stamper.blogspot.co.uk/2017/11/construction-site.html",null,1511519299],
["11134733","crafty","https://draper50.blogspot.com/2017/11/carpenter.html",null,1511530339],
["11134796","Mari K.","https://marikocreations.blogspot.com/2017/11/thankful-hearts.html",null,1511541676],
["11134946","Angela","https://inspired4ucrafts.blogspot.co.uk/2017/11/pretty-kitties-thinking-of-you.html",null,1511569160],
["11135004","AndreaBastelmaus","https://andreabastelmaus.blogspot.de/2017/11/ganz-liebe-grue.html",null,1511592724],
["11135007","Margreet","https://margreets-scrapcards.blogspot.nl/2017/11/v-is-for-vintage.html",null,1511593061],
["11135015","Maya","https://mayas-hobbyblogg.blogspot.no/2017/11/julekortchristmas-card.html",null,1511596448],
["11135017","Karine","http://www.ledelicatbouvreuil.fr/2017/11/heroboy-defi-72.html",null,1511596839],
["11135019","Sue","https://sue-hickey.blogspot.com/2017/11/my-besties-3d-and-more-anything-goes_20.html",null,1511596896],
["11135028","patty","http://pattyskreativseite.blogspot.de/2017/11/fur-meine-geliebte-stine-habe-ich-noch.html1/fur-meine-geliebte-stine-habe-ich-noch.html",null,1511599067],
["11135035","Epie","https://cards-by-epie.blogspot.nl/2017/11/kerst-week-47-en-een-verassing.html",null,1511601584],
["11135041","Shirley AC1","https://nannieflash.blogspot.co.uk/2017/11/challenge-208-animals-in-snow-pink-gem.html",null,1511602819],
["11135047","Julie Reed","http://pumpkinbellycards.blogspot.co.uk/2017/11/oh-christmas-tree.html",null,1511603948],
["11135162","Cicci with the Pen","https://ciccividpennan.blogspot.com/2017/11/copic-europa-candy-cane.html",null,1511619649],
["11135169","Debbie Dickson","https://decraftsblog.wordpress.com/2017/11/03/x-cut-cut-and-emboss-butterfly-folder/",null,0],
["11135170","Debbie","https://decraftsblog.wordpress.com/2017/11/25/texture/",null,1511620294],
["11135461","PaperPlotterLotta","http://paperplotterlottas-craftchaos.blogspot.de/2017/11/oddball-challenge-reminder-rainy-days.html",null,1511687870],
["11135464","Pippa","https://pippapblog.wordpress.com/2017/11/26/bambi/",null,1511688389],
["11135486","meg","https://bitsandpiecec.blogspot.co.uk/2017/11/robin.html",null,1511690865],
["11135524","Nick","https://nicksscrapshack.blogspot.se/2017/11/new-challenge-over-at-crafty-catz_26.html",null,1511698013],
["11135599","Helen H","http://helenscraftyshed.blogspot.co.uk/2017/11/snowman-and-birdie-friends.html",null,1511707915],
["11135656","Hazel","http://craftyhazelnut.blogspot.co.uk/2017/11/chnc-challenge-361.html",null,1511714357],
["11135667","Vilinke","http://vilinke123.blogspot.si/2017/11/vlakec-tomaz.html",null,0],
["11135670","Vilinke 2","http://vilinke123.blogspot.si/2017/11/vlakec-tomaz.html",null,1511715664],
["11135730","Tip Top","http://tiptoptoppers.blogspot.co.uk/2017/11/crimbo-crackers-challenge-146-anything.html",null,1511725945],
["11135734","Bisse","https://vasemmalkadella.blogspot.fi/2017/11/maratoonia-jatketaan.html",null,1511726406],
["11135757","Kleido","https://kleidosbastelstueble.wordpress.com/2017/11/26/weihnachtskarten-marathon/",null,1511731291],
["11135899","Scatty Jan","https://scrappyscatty.blogspot.co.uk/2017/11/shadow-box-hanger.html",null,1511772137],
["11135935","Lovely Linda","https://lovelylindascraftcentral.blogspot.com.au/2017/11/faith-art-as-for-me-and-my-house.html",null,1511780522],
["11135967","Creative Smiles - my little crafty world","https://creativesmiles2.blogspot.com/2017/11/house-mouse-challenge-anything-goes_27.html",null,1511786168],
["11136171","Anet","https://anetscrafting.blogspot.com.au/2017/11/mrs-claus-and-santa-owen-paper-nest.html",null,1511819205],
["11136246","Mindy Baxter","https://www.mycreativescoop.com/how-to-make-a-dress-sparkle-using-a-white-gel-pen/",null,1511846307],
["11136295","Nicolette","https://nicoletteskaarten.blogspot.nl/2017/11/baby-boy.html",null,1511861290],
["11136331","creativEle","https://creativele.blogspot.it/2017/11/always-forever-with-valentine-hand-in.html",null,1511869014],
["11136428","Silke","http://kartenkram.blogspot.de/2017/11/mini-leckereientute.html",null,1511883396],
["11136464","Bonnie Garby","http://maketime2craft.com/2017/11/seasons-greetings-card-2.html",null,1511890522],
["11136736","Janice","https://mycraftroommakes.blogspot.co.uk/2017/11/a-thank-you-card.html",null,1511944818],
["11137180","Heather Mills","https://wirewrapture.blogspot.com/2017/11/merry-and-bright.html",null,1512005972],
["11137246","Sheryl Hare","https://marchharecards.blogspot.co.uk/2017/11/goodmorning-we-have-newchallenge-over.html",null,1512030214],
["11137454","Anet","https://anetscrafting.blogspot.com.au/2017/12/christmas-shy-christmas-cards-all-year.html",null,1512094815],
["11137463","Karen C","http://busyinspirations.blogspot.com/2017/11/happy-birthday.html",null,1512097861],
["11137593","meg","https://bitsandpiecec.blogspot.co.uk/2017/12/twinkle-and-sparkle.html",null,1512132531],
["11137750","NanaConnie","http://mygrammysattic.blogspot.com/2017/12/vintage-family-christmas.html",null,1512154534],
["11137878","carol gill","http://crafty-stamper.blogspot.co.uk/2017/12/i-have-my-eye-on-you.html",null,1512169643],
["11137979","Bhumika","https://craftunleashed.blogspot.in/2017/12/shabby-layout_2.html",null,1512206013],
["11138220","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2017/12/butterflies-and-bird-cage-card.html",null,1512254740],
["11138336","Rosina","http://rosina-scrapcards.blogspot.nl/2017/12/verjaardagsletter.html",null,1512288782],
["11138355","meg","https://bitsandpiecec.blogspot.co.uk/2017/12/christmas-present.html",null,1512291214],
["11138588","Laine","https://dreamlaine.blogspot.co.uk/2017/12/processing-coloured-images.html",null,1512326396],
["11138590","Craftyjulie","https://craftyjulie57.blogspot.co.uk/2017/12/jaz.html",null,1512326009],
["11138618","Nick","https://nicksscrapshack.blogspot.se/2017/12/hello-sweeties-2-of-our-christmas-carol.html",null,1512332087],
["11138764","Nicolette","https://nicoletteskaarten.blogspot.nl/2017/12/voor-trijntje.html",null,1512375944],
["11139054","Vic","http://brightandbreezycrafts.blogspot.co.uk/2017/12/christmas-cards-are-coming.html",null,1512420723],
["11139188","Lovely Linda","https://lovelylindascraftcentral.blogspot.com.au/2017/12/spellbinders-beee-utiful-bee.html",null,1512441355],
["11139210","Gloria Shirr - 3rd","https://purpleglocreations.blogspot.com/2017/12/christmas-card-using-ching-chou-kuik.html",null,1512449824],
["11139231","Meighan Wheller","https://meighanwheller.blogspot.com.au/2017/12/bb-anything-goes-challenge.html",null,1512455885],
["11139304","Lozzy","http://ninspapercrafting.blogspot.co.uk/2017/12/more-mixed-media-challenge-anything.html",null,1512475066],
["11139363","Beatriz","https://beascrapbooking.blogspot.com.es/2017/12/reto-crafty-sentiments-desings-anything.html",null,0],
["11139364","Beatriz","http://beascrapbooking.blogspot.com.es/2017/12/reto-crafty-sentiments-desings-anything.html",null,0],
["11139837","Julia","https://theglitterchick.blogspot.co.uk/2017/12/digi-choosday-week-49.html",null,1512556445],
["11140330","Desire Fourie","http://desiref.blogspot.co.za/2017/12/holly-jolly-digistamps4joy-december.html",null,1512623093],
["11140632","Victoria R","https://victorias-crafting-creations.blogspot.co.uk/2017/12/abb-festive-greet-card.html?m=1",null,1512682222],
["11140982","RoRa","http://roraaurelia.blogspot.co.id/2017/12/braids-in-my-hair-from-conie-fong-art.html",null,1512746655],
["11141031","sweetpea","https://sweetpea-janscraftyspot.blogspot.co.uk/2017/12/surfing-winter.html",null,1512750510],
["11141127","Chriss","https://chrissandlou.blogspot.com/2017/12/boughs-wreath.html",null,1512762715],
["11141171","niki1","https://www.splitcoaststampers.com/gallery/photo/2840452?&cat=500&ppuser=205884",null,0],
["11141213","Kelly O","http://www.kellyscards.ca/dt-anything-goes-challenge/",null,1512785869],
["11141290","Larissa","https://car-d-elicious.blogspot.nl/2017/12/gerda-steiner-designs-coffee-lovers.html",null,1512814982],
["11141308","Mieke Duckers","https://miekesaddiction.blogspot.nl/Deer from Winter Cheer",null,1512818265],
["11141529","Scatty Jan","https://scrappyscatty.blogspot.co.uk/2017/12/thank-you-with-stampin-unicorns.html",null,1512847748],
["11141561","Marie Bingaman","http://anothercardmakingblog.blogspot.com/2017/12/just-regular-post.html",null,1512855860],
["11141606","AUNTY SUE","http://auntysuescraftcavern.blogspot.co.uk/2017/12/day-4-catch-bug-holiday-chaos.html",null,1512866316],
["11141707","litasha gandhi","http://vpslart.blogspot.in/2017/12/quilling.html",null,1512890966],
["11141734","Tip Top","http://tiptoptoppers.blogspot.co.uk/2017/12/pretty-petals.html",null,1512898745],
["11141786","Alysha","http://simply-angelic-crafts.blogspot.co.uk/2017/12/classic-dt-challengedigi-stamps-4-joy.html",null,1512909800],
["11141796","Melanie","http://creative-world-of-melanie.blogspot.de/2017/12/snowy-and-hedgy-xmas.html",null,1512911014],
["11141800","Einat","http://einat109.blogspot.co.il/2017/12/remember-this-day-tag.html",null,1512911638],
["11141803","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466.1073741829.722595467790055/1486476701401924/?type=3&theater",null,1512912190],
["11141954","Maryann Scrap","http://maryann-scrap.blogspot.fr/2017/12/carte-danniversaire-pour-mon-petit-frere.html",null,1512933103],
["11141968","Manuela","https://butterkipferl.blogspot.co.at/2017/12/post-it-buchlein.html",null,1512936157],
["11141991","Nick","https://nicksscrapshack.blogspot.se/2017/12/new-challenge-over-at-crafty-catz.html",null,1512938839],
["11142074","Pam D","https://itisfinisheddesigns.blogspot.com/2017/12/merry-christmas.html",null,1512952910],
["11142193","Marjeta B","http://ustvarjalnicaprihellokitty.blogspot.si/2017/12/smucarka.html",null,1512985688],
["11142248","Adrijana Knez ","http://janinustvarjalnivrt.blogspot.si/2017/12/skatlica-presenecenja-vodnjak-exploding.html",null,1512996564],
["11142301","Mindy Baxter","https://www.mycreativescoop.com/create-christmas-presents-freehand-using-copic-markers-and-mommy-lhey-stamps/",null,1513004344],
["11142326","Kinda Cute Cards","http://kindacutecards.blogspot.com/2017/12/christmas-card-with-santa-claus-sketch.html",null,1513007104],
["11142402","Narobe hisa - Natasa P.","https://narobehisa.blogspot.si/2017/12/snezinke-v-kredi.html",null,1513019680],
["11142443","AUNTY SUE","https://auntysuescraftcavern.blogspot.com/2017/12/catch-bug-day-5-holiday-chaos.html",null,1513024627],
["11142446","Pam D","https://itisfinisheddesigns.blogspot.com/2017/12/fireplace-scene.html",null,1513025577],
["11142491","Rebecca Gillard","http://cardsbybeckie.blogspot.co.uk/2017/12/nanna-grandpa-christmas-card.html",null,1513033522],
["11142578","Gloria Shirr - 2nd ","https://purpleglocreations.blogspot.com/2017/12/christmas-card-using-ching-chou-kuik_11.html",null,1513054942],
["11142651","Lou Sims","http://lulucardmaking.blogspot.co.uk/2017/12/heres-looking-at-you-grand-father.html",null,1513073846],
["11142733","Silke","http://kartenkram.blogspot.de/2017/12/weihnachten-in-pastellfarben.html",null,1513094807],
["11142826","Alex","http://alexkreativeseite.blogspot.de/2017/12/schneemann-im-schlitten.html",null,1513109100],
["11142853","Sanja Grdinić","http://kartolina.blogspot.hr/2017/12/oh-come-all-ye-faithful.html",null,1513111898],
["11142984","Rosina","http://rosina-scrapcards.blogspot.nl/2017/12/afgelopen-weekend-een-toffifeedoosje.html",null,1513151724],
["11143001","Galina","https://perunikadream.blogspot.bg/2017/12/50th-anniversary-sizzix.html",null,0],
["11143230","Bonnie Garby","http://maketime2craft.com/2017/12/really-reasonable-ribbon-december-blog-hop-2.html",null,1513180847],
["11143779","Alex","https://alexkreativeseite.blogspot.de/2017/12/reminder-12-bei-den-kreativtanten.html",null,1513319362],
["11143897","Beth Brovold","http://becontagiouscrafts.blogspot.ca/2017/12/fussy-and-fancy-challenge-202-christmas.html",null,1513344380],
["11143912","sparkling pink","https://sparklingpinktitta.blogspot.it/2017/12/un-piccolo-babbo-natale.html",null,1513346941],
["11143950","crafty","https://draper50.blogspot.com/2017/12/three-baubles.html",null,1513351104],
["11143983","Karen C","http://busyinspirations.blogspot.com/2017/12/christmas-card-collection.html",null,1513356395],
["11144000","Bernadet","https://cardsbybernadet.blogspot.nl/2017/12/all-dressed-up-challenge.html",null,1513358164],
["11144031","RoRa","http://roraaurelia.blogspot.co.id/2017/12/love-birds-from-ching-chou-kuik.html",null,1513363339],
["11144034","RoRa","http://roraaurelia.blogspot.co.id/2017/12/first-kiss-from-conie-fong-art.html",null,1513364147],
["11144091","Sanja Grdinić","https://kartolina.blogspot.hr/2017/12/deck-halls.html",null,1513373811],
["11144114","Craftyjulie","https://craftyjulie57.blogspot.co.uk/2017/12/petunia.html",null,1513378469],
["11144123","AUNTY SUE","http://auntysuescraftcavern.blogspot.co.uk/2017/12/santa-claus-is-coming-to-town-crafty.html",null,1513381960],
["11144142","Maxine D","http://kiwimeskreations.blogspot.co.nz/2017/12/christmas-smarkle.html",null,1513390906],
["11144202","Ann-Marie Johansson","https://systeryster-annemi.blogspot.com/2017/12/my-turn-to-try-to-inspire-you-on-behalf_15.html",null,1513413208],
["11144217","Kathyk","https://purpliciousprincessdiaries.blogspot.co.uk/2017/12/its-weekend.html",null,1513414833],
["11144227","pinky","https://pinky-pinkysworld.blogspot.co.uk/2017/12/oh-baubles.html",null,1513417508],
["11144486","Karen C","http://busyinspirations.blogspot.com/2017/12/today-i-found-that-i-won-top-3-over-at.html",null,1513464025],
["11144557","Craftdee Donna","https://craftdeedonna.blogspot.com.au/2017/12/koala-christmas.html",null,1513489762],
["11144671","AndreaBastelmaus","https://andreabastelmaus.blogspot.de/2017/12/frohe-weihnachten.html",null,1513516377],
["11144789","Jane","https://mistybluescreations.blogspot.com/2017/12/challenge-reminder.html",null,1513538312],
["11144809","Nick","https://nicksscrapshack.blogspot.se/2017/12/im-running-bit-behind.html",null,1513541818],
["11144902","Linda Simpson","https://lindasimpsoncraftypieceofheaven.blogspot.co.uk/2017/12/birthday-wishes.html",null,1513581344],
["11144977","Karen C","http://busyinspirations.blogspot.com/2017/12/red-and-green.html",null,1513602857],
["11145035","Mindy Baxter","https://www.mycreativescoop.com/how-to-color-mommy-lhey-unicorn-girl-stamp-how-to-color-mommy-lhey-unicorn-girl-stamp/",null,1513609012],
["11145111","Liliane Carvalho","https://www.facebook.com/scrapchosdalilica/photos/a.723261357723466.1073741829.722595467790055/1494185530631041/?type=3&theater",null,1513626137],
["11145117","Penny","http://lightwhimsy.blogspot.com/2017/12/seasons-greetings.html",null,1513628053],
["11145126","Jen L","http://jencraftsa.blogspot.co.za/2017/12/did-simeone-say-ho.html",null,1513628886],
["11145142","Jen L","https://jencraftsa.blogspot.co.za/2017/12/bugaboo-bingo-challenge.html",null,1513629665],
["11145160","Sanja Grdinić","https://kartolina.blogspot.hr/2017/12/hark-herald-angels-sing.html",null,1513631791],
["11145440","niki1","https://www.splitcoaststampers.com/gallery/photo/2842399?&cat=500&ppuser=205884",null,0],
["11145458","Gloria Shirr - 3rd","https://purpleglocreations.blogspot.com/2017/12/christmas-card-using-ching-chou-kuik_18.html",null,1513722906],
["11145629","Julia","https://theglitterchick.blogspot.co.uk/2017/12/stampin-unicorn-canvas.html",null,1513771024],
["11145644","TracyM 6773 (1)","https://tracyscraftyadventures.blogspot.com.au/2017/12/anything-goes-with-us-at-crafty-gals_20.html",null,1513772127],
["11145820","Zora","http://lofquisten.blogspot.se/2017/12/julgran-i-lager-pa-lager.html",null,1513788648],
["11146621","Mindy Baxter","https://www.mycreativescoop.com/free-christmas-puppy-digi-stamp/",null,1513998181],
["11146650","Anna","http://nonsolocard.blogspot.it/2017/12/g-come-rudolf.html",null,1514012309],
["11146767","Marilyn S","https://onestampingfool.blogspot.ca/2017/12/stampingbella-snapshots.html",null,1514037004],
["11146862","Rutscht","http://rutscht.blogspot.com/2017/12/life-is-good.html",null,1514059265],
["11146885","Marjeta","https://marjetinaustvarjalnica.blogspot.si/2017/12/angel-varuh.html",null,1514063420],
["11146926","Sanja Grdinić","https://kartolina.blogspot.hr/2017/12/bozic-za-pamcenje.html",null,1514072459],
["11146929","Maxine D","http://kiwimeskreations.blogspot.co.nz/2017/12/star-christmas.html",null,1514073353],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}