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("16Dec2015", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "p/pixiescraftyworkshop/MTZkZWMyMDE1", "1");
blenza_setcolor("default");
blenza_setExpires("4 years ago");
blenza_setAlphasort("0");
blenza_unsetmeme("16Dec2015");
blenza_linkies("thumb","pixiescraftyworkshop","16Dec2015","1151793060",3,
[
// MTZkZWMyMDE1
["10713933","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2015/12/ruby-wedding-anniversary.html",null,1450570402],
["10713991","Carol L","http://ourlittleinspirations.blogspot.com/2015/12/birthday-card-matching-tag.html",null,1450582044],
["10714064","Janis in ID","http://herpeacefulgarden.blogspot.com/2015/12/retro-christmas-card.html",null,1450596233],
["10714111","Aquarius","http://aquarius-aquariusblog.blogspot.co.uk/2015/12/snippets-playground.html",null,1450605003],
["10714141","Donna","http://roominacupboard.blogspot.co.uk/2015/12/christmas-crackers-bird-on-branch-female.html",null,1450610499],
["10714149","IKE","http://suzy-ikesworld.blogspot.gr/2015/12/cut-and-shove.html",null,1450612027],
["10714159","Janes Journal","http://jane-janesjournal.blogspot.co.uk/2015/12/my-final-funkie-junkie-project.html",null,1450613501],
["10714169","Lucy Woods","http://littlelucyscards.blogspot.co.uk/2015/12/ho-ho-ho-christmas-jumper-card.html?m=1",null,1450614933],
["10714198","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2015/12/forever-friends.html",null,1450616965],
["10714224","scrAPpamondo (AliceP)","http://volidicarta.blogspot.it/2015/12/explosion-box-con-pianoforte.html",null,1450620345],
["10714261","SARN","http://stampingforpleasure.blogspot.co.uk/2015/12/4-years-of-snippets-playground.html",null,1450625002],
["10714283","My Card Attic: Hazel","http://www.mycardattic.co.uk/2015/12/last-post-challenges-for-2015-word-of.html",null,1450627167],
["10714285","Elizabeth","http://silverscrappers.blogspot.co.uk/2015/12/sunday-snippets.html",null,1450627273],
["10714306","Viv","http://vivsvisuals.blogspot.co.uk/2015/12/cas-snippets.html",null,1450630039],
["10714358","Helen","http://helenscrafthaven.blogspot.co.uk/2015/12/no-peekin-snowman.html",null,1450635514],
["10714408","Dr Sonia S V","http://cardsandschoolprojects.blogspot.in/2015/12/diy-mobile-tutorial.html",null,1450643678],
["10714425","Valerija","http://moje-veselje.blogspot.si/2015/12/stojeca-vintage-voscilnica.html",null,1450645304],
["10714430","karenladd","https://www.flickr.com/photos/33235863@N08/23791838971/in/dateposted-public/",null,1450646349],
["10714495","Greta H","http://ggnursecreations.blogspot.com/2015/12/sympathy-card.html",null,1450658610],
["10714545","laurie","http://stampingupnorthwithlaurie.blogspot.com/2015/12/noel.html",null,1450666772],
["10714665","karenladd","https://www.flickr.com/photos/33235863@N08/23801183581/in/dateposted-public/",null,1450686656],
["10714669","Kathyk","http://www.purpliciousprincessdiaries.blogspot.co.uk/2015/12/welcome-to-start-of-christmas-week-woo.html",null,1450687024],
["10714743","Carole Dixon","http://cardandcake.blogspot.co.uk/2015/12/mice-and-holly.html",null,1450699301],
["10714807","Vinita Jain","http://madewithlovencare.blogspot.in/2015/12/sweet-memories-and-giveaway-winner.html",null,1450704882],
["10714848","linby","http://craftylinby.blogspot.co.uk/2015/12/lim-week-255-and-256-homespun.html",null,1450708135],
["10715243","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2015/12/emma-and-snowball.html",null,1450736100],
["10715246","karenladd","https://www.flickr.com/photos/33235863@N08/23524960159/in/dateposted-public/",null,1450736275],
["10715250","Maxine D","http://kiwimeskreations.blogspot.co.nz/2015/12/another-nautical-birthday.html",null,1450736666],
["10715253","Lynne in NI","http://rubydoobydoocrafts.blogspot.co.uk/2015/12/phoebes-card.html",null,1450737153],
["10715279","Bonnie","http://bon2stamp.blogspot.com/2015/12/these-boots-were-made-for-snowballing.html",null,1450744351],
["10715281","Pat","http://colourfulcardcreations.blogspot.co.uk/2015/12/snowflakes-and-tartan-for-christmas.html",null,1450744467],
["10715371","JennyH","http://jennyhurleycards.blogspot.com.au/2015/12/poinsettia-present.html",null,1450764999],
["10715428","Aquarius","http://aquarius-aquariusblog.blogspot.co.uk/2015/12/blue-birthday.html",null,1450775457],
["10715453","Elly Booij","http://ellyscardcreatief.blogspot.nl/2015/12/zwart-wit.html",null,1450780686],
["10715479","Diane H","http://nelliesnest.blogspot.com/2015/12/silent-night.html",null,1450785293],
["10715495","Janes Journal","http://jane-janesjournal.blogspot.co.uk/2015/12/crackers-for-christmas-2015.html",null,1450789316],
["10715513","Em Fairley","http://www.creative-em.com/2015/12/hanging-ornaments-cards.html",null,1450791148],
["10715548","Barb Williams","http://farawaycrafts.blogspot.co.uk/2015/12/cuddly-buddly-snippets.html",null,1450793004],
["10715826","Dr Sonia S V","http://cardsandschoolprojects.blogspot.in/2015/12/snowman-craft.html",null,1450818172],
["10715832","AJ","http://ajcreativeenergy.blogspot.com/2015/12/happy-howlidays.html",null,1450819409],
["10715878","Liz Cavill #3","http://crafty-lizc.blogspot.co.uk/2015/12/snowmen-place-names.html",null,1450825763],
["10715934","Greta H (2)","http://ggnursecreations.blogspot.com/2015/12/first-card-for-next-year.html",null,1450830254],
["10716227","Kath","http://myplainandsimple.blogspot.co.uk/2015/12/merry-christmas-everyone.html",null,1450864576],
["10716246","Jane Willis","http://onionsandpaper.blogspot.co.uk/2015/12/back-to-snippets-box.html",null,1450867624],
["10716271","Helen #2","http://helenscrafthaven.blogspot.co.uk/2015/12/abc-christmas-challenge-z-is-for.html",null,1450869788],
["10716295","Carol L","http://ourlittleinspirations.blogspot.com/2015/12/dasher.html",null,1450872766],
["10716309","April","http://paperlilyleaf.blogspot.co.uk/2015/12/textured-tag.html",null,1450873875],
["10716311","Em Fairley","http://www.creative-em.com/2015/12/stamped-ornament-trio-cards.html",null,1450874110],
["10716321","Carole Dixon","http://cardandcake.blogspot.co.uk/2015/12/cake-anyone.html",null,1450874700],
["10716448","April","http://paperlilyleaf.blogspot.co.uk/2015/12/another-tag.html",null,1450883713],
["10716538","Janes Journal","http://jane-janesjournal.blogspot.co.uk/2015/12/away-in-manger.html",null,1450888027],
["10716773","Christine Smith","http://ramblingsandcraft.blogspot.co.uk/2015/12/merry-christmas-to-you.html",null,1450916576],
["10716789","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2015/12/die-cut-christmas-kitty.html",null,1450921353],
["10716841","Shaz in Oz.x no 1","http://calligraphycards-shazinoz.blogspot.com.au/2015/12/brayered-ccards.html",null,1450930127],
["10716842","Shaz in Oz.x no 2","http://calligraphycards-shazinoz.blogspot.com.au/",null,1450930255],
["10716952","Barb Williams","http://farawaycrafts.blogspot.co.uk/2015/12/happy-christmas-everyone.html",null,1450955302],
["10716978","Lindsey","http://lindsey-doodlings.blogspot.co.uk/2015/12/a-cracker-of-card.html",null,1450953164],
["10716996","Lucy Woods","http://littlelucyscards.blogspot.co.uk/2015/12/winter-scene-lc-designs-digi-project.html?m=1",null,1450957896],
["10717084","Elly Booij","http://ellyscardcreatief.blogspot.nl/2015/12/sneeuwpret.html",null,1450968796],
["10717125","Alison C","http://cranberryandeggplant.blogspot.co.uk/2015/12/pillow-boxes.html",null,1450976410],
["10717129","Sue","http://susanscardcreations.blogspot.co.uk/2015/12/last-of-christmas-cards.html",null,1450977016],
["10717132","Sue(no 2)","http://susanscardcreations.blogspot.co.uk/2015/12/last-of-christmas-cards.html",null,1450977334],
["10717134","Sue(no 3)","http://susanscardcreations.blogspot.co.uk/2015/12/last-of-christmas-cards.html",null,1450977398],
["10717155","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2015/12/christmas-card-to-doc.html",null,1450983854],
["10717165","Sandy J","http://stampingwriter.blogspot.com/2015/12/merry-christmas.html",null,1450987616],
["10717274","Pat (2)","http://colourfulcardcreations.blogspot.co.uk/2015/12/heartfelt-christmas-greetings.html",null,1451005416],
["10717276","Sandy J #2","http://stampingwriter.blogspot.com/2015/12/warm-wishes.html",null,1451006066],
["10717327","Darnell","http://www.djkardkreations.com/2015/12/merry-christmas-2015.html",null,1451024205],
["10717531","Vinita Jain","http://madewithlovencare.blogspot.in/2015/12/mixed-media-featuring-cherished-moments.html",null,1451061568],
["10717627","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2015/12/shaker-bauble-with-chippies.html",null,1451078043],
["10717637","treebug","http://www.treebug.org/2015/12/skatlice-za-kavico.html",null,1451081770],
["10717702","Mrs A.","http://www.itsanalienlife.blogspot.co.uk/2015/12/reindeer-and-sleigh.html",null,1451096259],
["10717764","LesleyG","http://lesleyscraftroom.blogspot.co.uk/2015/12/happy-christmas_25.html",null,1451127895],
["10717858","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2015/12/kitty-snow-globe.html",null,1451144960],
["10717884","Greta H (3)","http://ggnursecreations.blogspot.com/2015/12/papertrey-december-blog-hop-challenge.html",null,1451150719],
["10717917","Glennis F NZ","http://creatingcards-grf.blogspot.co.nz/2015/12/its-not-christmas.html",null,1451157964],
["10718091","SARN","http://stampingforpleasure.blogspot.co.uk/2015/12/happy-snoopy.html",null,1451203240],
["10718114","JennyH","http://jennyhurleycards.blogspot.com.au/2015/12/owl-calendar.html",null,1451212123],
["10718120","Aquarius","http://aquarius-aquariusblog.blogspot.co.uk/2015/12/pixie-snippets-208209.html",null,1451212615],
["10718162","Kathyk","http://www.purpliciousprincessdiaries.blogspot.co.uk/2015/12/welcome-to-my-usual-sunday-morning-post.html",null,1451217240],
["10718176","Helen #3","http://helenscrafthaven.blogspot.co.uk/2015/12/pile-it-on-challenge-christmas-or-winter_27.html",null,1451219713],
["10718187","Viv","http://vivsvisuals.blogspot.co.uk/2015/12/happy-sunday.html",null,1451221321],
["10718203","scrAPpamondo (AliceP)","http://volidicarta.blogspot.it/2015/12/card-portasoldi-maschile-per-natale.html",null,1451223531],
["10718213","Carol L","http://ourlittleinspirations.blogspot.com/2015/12/thankful.html",null,1451224594],
["10718362","Lynne in NI","http://rubydoobydoocrafts.blogspot.co.uk/2015/12/butterfly-birthday.html",null,1451248441],
["10718364","Cathy R","http://cathyscardspot.blogspot.com.au/2015/12/doggie-birthday.html",null,1451248821],
["10718388","Jackie T","http://tinyrosecr.blogspot.co.uk/2015/12/all-we-need-is-love.html",null,1451252954],
["10718401","Julie C.","http://cherrywingscards.blogspot.co.uk/2015/12/baby-its-cold-outside-merry-christmas.html",null,1451254797],
["10718408","Donna T.","http://lakefrontstampingcreations.blogspot.com/2015/12/brusho-shaker-card.html",null,1451256657],
["10718410","Donna T","http://lakefrontstampingcreations.blogspot.com/2015/12/brusho-shaker-card.html",null,1451257121],
["10718491","Dr Sonia S V","http://cardsandschoolprojects.blogspot.in/2015/12/pinecones-and-pine-leaves.html",null,1451273657],
["10718528","shartl","https://www.flickr.com/photos/75112453@N05/23722616700/in/dateposted-public/",null,1451283025],
["10718558","Valerija","http://moje-veselje.blogspot.si/2015/12/se-ena-z-ornamentom.html",null,1451289374],
["10718665","Eemeli","http://eemelike.blogspot.fi/2015/12/dt-crafting-from-heart-92.html",null,1451302030],
["10718671","SARN (3)","http://stampingforpleasure.blogspot.co.uk/2015/12/thank-you-cards.html",null,1451302733],
["10718717","kanda","http://kandacreativemoments.blogspot.co.uk/2015/12/baby-girl.html",null,1451306808],
["10718761","Alison C 2nd","http://cranberryandeggplant.blogspot.co.uk/2015/12/time-for-me.html",null,1451312688],
["10718825","Bonnie","http://bon2stamp.blogspot.com/2015/12/more-holly-with-penny-black.html",null,1451319843],
["10718917","Karen","http://karenscrafting.blogspot.co.uk/2015/12/mums-christmas-card.html",null,1451329037],
["10719005","Lynne in NI","http://rubydoobydoocrafts.blogspot.co.uk/2015/12/butterfly-birthday-2.html",null,1451340137],
["10719009","LesleyG","http://lesleyscraftroom.blogspot.co.uk/2015/12/cheesy-birthday.html",null,1451340876],
["10719073","Cornelia (fun stamping)","http://fun-stamping.blogspot.com/2015/12/stamp-connection-8.html",null,1451357121],
["10719074","Cornelia (fun stamping)","http://fun-stamping.blogspot.com/2015/12/snowman-card.html",null,1451357192],
["10719075","Cornelia (fun stamping)","http://fun-stamping.blogspot.com/2015/12/have-fin-tastic-day.html",null,1451357273],
["10719076","shartl","https://www.flickr.com/photos/75112453@N05/23928057172/in/dateposted-public/",null,1451357438],
["10719096","Cathy R #2","http://cathyscardspot.blogspot.com.au/2015/12/snowy-look-like.html",null,1451362584],
["10719134","Megan","http://merrycardcorner.blogspot.com.au/2015/12/some-extra-christmas-crackers.html",null,1451374069],
["10719192","My Craft Room Makes: Janice","http://mycraftroommakes.blogspot.co.uk/2015/12/male-birthday-card.html",null,1451382355],
["10719241","Eve","http://evemariemakes.blogspot.co.uk/2015/12/global-design-project-gdp016.html",null,1451393173],
["10719396","Elly Booij","http://ellyscardcreatief.blogspot.nl/2015/12/winter_29.html",null,1451405678],
["10719397","Kath","http://handmadebykath.blogspot.co.uk/2015/12/just-wanted-to-say.html",null,1451405987],
["10719780","Pat (3)","http://colourfulcardcreations.blogspot.co.uk/2015/12/shaker-anniversary.html",null,1451439280],
["10719816","Glennis F NZ","http://creatingcards-grf.blogspot.co.nz/2015/12/elfie.html",null,1451441118],
["10719869","shartl","https://www.flickr.com/photos/75112453@N05/24057932925/in/dateposted-public/",null,1451450176],
["10720045","Diane H","http://nelliesnest.blogspot.com/2015/12/wonderland.html",null,1451472465],
["10720175","Lucy Woods","http://littlelucyscards.blogspot.co.uk/2015/12/hi-everyone-hope-youre-all-well-and-had.html?m=1",null,1451484222],
["10720405","Nicky","http://stiggyscrafts.blogspot.co.uk/2015/12/moving-card.html",null,1451494356],
["10720460","Kath","http://handmadebykath.blogspot.co.uk/2015/12/x-for-xanthine.html",null,1451498656],
["10720477","Nicky","http://stiggyscrafts.blogspot.co.uk/2015/12/cancer-free.html",null,1451501066],
["10720553","scrAPpamondo (AliceP)","http://volidicarta.blogspot.it/2015/12/ricercando-la-semplicitauna-card.html",null,1451509621],
["10720610","laurie","http://stampingupnorthwithlaurie.blogspot.com/2015/12/hello.html",null,1451515771],
["10720633","Swissie","http://livfrische48.blogspot.ch/2015/12/rdstrupe-i-kristtornbusken.html",null,1451519371],
["10720834","Megan #2","http://merrycardcorner.blogspot.com.au/2015/12/happy-bird-day.html",null,1451554813],
["10720856","Julie C. #02","http://cherrywingscards.blogspot.co.uk/2015/12/happy-new-year-oh-happy-day.html",null,1451561580],
["10721024","Swissie","http://livfrische48.blogspot.ch/2015/12/happy-new-year.html",null,1451579451],
["10721030","kanda #2","http://kandacreativemoments.blogspot.co.uk/2015/12/another-baby-card.html",null,1451580085],
["10721060","Kath","http://handmadebykath.blogspot.co.uk/2015/12/more-xanthine.html",null,1451584406],
["10721133","Kath","http://myplainandsimple.blogspot.co.uk/2015/12/snippets-playground.html",null,1451597642],
["10721175","treebug","http://www.treebug.org/2015/12/se-dve-skatlici-in-srecno-2016.html",null,1451602695],
["10721229","Karen #3","http://karenscrafting.blogspot.co.uk/2015/12/my-last-2015-christmas-card.html",null,1451606902],
["10721306","Valerija","http://moje-veselje.blogspot.si/2015/12/za-svetlo-prihodnost.html",null,1451612024],
["10721412","LesleyG #3","http://lesleyscraftroom.blogspot.co.uk/2016/01/happy-new-year.html",null,1451628851],
["10721432","April","http://www.paperlilyleaf.blogspot.co.uk/2015/12/festive-gift-card-holder.html",null,1451637195],
["10721450","JennyH","http://jennyhurleycards.blogspot.com.au/2016/01/happy-birthday-to-you.html",null,1451641219],
["10721453","Janis in ID","http://herpeacefulgarden.blogspot.com/2016/01/merry-cat-mas-and-happy-new-year.html",null,1451642249],
["10721545","Viv","http://vivsvisuals.blogspot.co.uk/2016/01/2016.html",null,1451651636],
["10721584","CraftDee Donna","http://craftdeedonna.blogspot.com.au/2016/01/happy-new-year-and-new-chall-nge-at.html",null,1451655298],
["10721682","Em Fairley (3)","http://www.creative-em.com/2016/01/embossing-andor-colors-for-house-of.html",null,1451665414],
["10721956","Donna","http://roominacupboard.blogspot.co.uk/2016/01/faux-aperture-bird-on-branch-female.html",null,1451687158],
["10721966","Sandy J #3","http://stampingwriter.blogspot.com/2016/01/hapy-new-year.html",null,1451685466],
["10722059","Hettie","http://hettiecraftcz.blogspot.co.uk/2016/01/su-happy-birthday.html",null,1451691926],
["10722062","Christine Smith","http://ramblingsandcraft.blogspot.co.uk/2016/01/happy-new-year.html",null,1451692047],
["10722267","Swissie","http://livfrische48.blogspot.ch/2016/01/happy-new-year-ii.html",null,1451726845],
["10722269","Kath","http://myplainandsimple.blogspot.co.uk/2016/01/allsorts-challenge-week-344-whats-new.html",null,1451727047],
["10722293","Hazel","http://craftyhazelnut.blogspot.co.uk/2016/01/chnc-challenge-262-vintage-or-anything.html",null,1451730307],
["10722294","Hazel","http://craftyhazelnut.blogspot.co.uk/2016/01/chnc-challenge-262.html",null,1451730344],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}