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("16Nov2015", "http://www.blenza.com/linkies/", "http://www.blenza.com/thumbs/", "p/pixiescraftyworkshop/MTZub3YyMDE1", "1");
blenza_setcolor("default");
blenza_setExpires("4 years ago");
blenza_setAlphasort("0");
blenza_unsetmeme("16Nov2015");
blenza_linkies("thumb","pixiescraftyworkshop","16Nov2015","933841899",3,
[
// MTZub3YyMDE1
["10688010","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2015/11/beautiful-blue.html",null,1448150474],
["10688071","Wanda","http://wanderfulcreations.blogspot.ca/2015/11/joy.html",null,1448167521],
["10688130","Valerija","http://moje-veselje.blogspot.si/2015/11/set-novoletnih.html",null,1448180279],
["10688140","Aquarius","http://aquarius-aquariusblog.blogspot.co.uk/2015/11/retro-flower.html",null,1448182638],
["10688143","Kath","http://myplainandsimple.blogspot.co.uk/2015/11/allsorts-challenge-week-338.html",null,1448183133],
["10688148","Hettie","http://hettiecraftcz.blogspot.co.uk/2015/11/funkie-junkie-christmas-jumpers.html",null,1448184236],
["10688159","Janice","http://mycraftroommakes.blogspot.co.uk/2015/11/female-birthday-card_22.html",null,1448185216],
["10688189","Jane Willis","http://onionsandpaper.blogspot.co.uk/2015/11/inspired-by-pinterest.html",null,1448189850],
["10688206","Cathy R","http://cathyscardspot.blogspot.com.au/2015/11/crackled-christmas-ornaments.html",null,1448193599],
["10688209","Valerija","http://moje-veselje.blogspot.si/2015/11/martinova.html",null,1448193810],
["10688271","BozenA","http://artcardbox.blogspot.com/2015/11/prezent.html",null,1448201650],
["10688316","Valerija","http://moje-veselje.blogspot.si/2015/11/daisy-z-zvonckom.html",null,1448205613],
["10688386","Liz Cavill","http://crafty-lizc.blogspot.co.uk/2015/11/santa-is-gashead.html",null,1448209519],
["10688551","scrAPpamondo (AliceP)","http://volidicarta.blogspot.it/2015/11/una-tag-natalizia-riciclando-un-negativo.html",null,1448226774],
["10688628","treebug","http://www.treebug.org/2015/11/bela-voscilnica.html",null,1448237659],
["10688740","Shaz in oz.x ","http://calligraphycards-shazinoz.blogspot.com.au/2015/11/more-snippets-cards-on-go.html",null,1448254438],
["10688741","Shaz in oz.x no 2 ","http://calligraphycards-shazinoz.blogspot.com.au/",null,1448254539],
["10688773","Kavita","http://stiryourcreativity.blogspot.in/2015/11/birthday-card.html",null,1448259824],
["10688781","Darnell","http://www.djkardkreations.com/2015/11/christmas-leftover-makes.html",null,1448260728],
["10688929","Barb Williams","http://farawaycrafts.blogspot.co.uk/2015/11/happy-birthday-cupcake.html",null,1448274338],
["10688981","Dr Sonia S V","http://cardsandschoolprojects.blogspot.in/2015/11/fairy-christmas-tag.html",null,1448277638],
["10689010","SARN","http://stampingforpleasure.blogspot.co.uk/2015/11/a-little-bit-of-doodling.html",null,1448281766],
["10689072","Em Fairley","http://www.creative-em.com/2015/11/thanksgiving-suite-part-1.html",null,1448283825],
["10689105","Mary Anne K.","http://lakesidestamping.blogspot.com/2015/11/holiday-duo.html",null,1448284480],
["10689167","kbrandy4","http://hazelshandmadecrafts.blogspot.co.uk/2015/11/tilda-edwin-xmas-bake-off.html",null,1448286878],
["10689216","Carol L","http://ourlittleinspirations.blogspot.com/2015/11/a-christmas-scene.html",null,1448288971],
["10689267","Jane\\'s Journal","http://jane-janesjournal.blogspot.co.uk/2015/11/the-christmas-lists-are-being-written.html",null,1448292765],
["10689304","Carole Dixon","http://cardandcake.blogspot.com/2015/11/pretty-in-pink.html",null,1448294552],
["10689532","Dr Sonia S V","http://cardsandschoolprojects.blogspot.in/2015/11/decoupaged-stones-tutorial.html",null,1448310575],
["10689546","Lynne in NI","http://rubydoobydoocrafts.blogspot.co.uk/2015/11/the-oddest-anniversary-card-ever.html",null,1448311863],
["10689586","scrAPpamondo (AliceP)","http://volidicarta.blogspot.it/2015/11/ancora-tags-per-natale.html",null,1448316282],
["10689692","Cathy R","http://cathyscardspot.blogspot.com.au/2015/11/floral-anniversary-tag.html",null,1448329479],
["10689763","Greta H","http://ggnursecreations.blogspot.com/2015/11/christmas-magic.html",null,1448336725],
["10690005","Jane Willis","http://onionsandpaper.blogspot.co.uk/2015/11/fun-in-snow-at-cardz-4-guyz.html",null,1448356541],
["10690097","Janice","http://mycraftroommakes.blogspot.co.uk/2015/11/sympathy-card.html",null,1448366528],
["10690259","Viv","http://vivsvisuals.blogspot.co.uk/2015/11/posh-frocks-and-bow-ties.html",null,1448375808],
["10690359","scrAPpamondo (AliceP)","http://volidicarta.blogspot.it/2015/11/una-tag-forma-di-calza.html",null,1448381236],
["10690393","linby","http://craftylinby.blogspot.co.uk/2015/11/lim-week-251-numbers.html",null,1448382914],
["10690558","Lynne in NI","http://rubydoobydoocrafts.blogspot.co.uk/2015/11/golf-captains-card.html",null,1448400101],
["10690657","treebug","http://www.treebug.org/2015/11/o-vinu-in-za-vino.html",null,1448408701],
["10690677","AJ","http://ajcreativeenergy.blogspot.com/2015/11/christmas-deer.html",null,1448409744],
["10690683","laurie","http://stampingupnorthwithlaurie.blogspot.com/2015/11/memory-box-holly-card.html",null,1448409940],
["10690759","Janis in ID","http://herpeacefulgarden.blogspot.com/2015/11/decorating-tree-frosty-festivities.html",null,1448413934],
["10690799","Crafty Couple (Dana)","http://craftycouple.blogspot.com/2015/11/nordic-skates.html",null,1448416550],
["10690804","Pat","http://colourfulcardcreations.blogspot.co.uk/2015/11/gelli-plate-autumn-leaves.html",null,1448417508],
["10690805","Shaz in Oz.x ","http://calligraphycards-shazinoz.blogspot.com.au/2015/11/woyww-bleached-images-on-cards.html",null,1448417627],
["10690813","Susan aka rainy","http://rainy.blogs.splitcoaststampers.com/2015/11/24/thankful/",null,1448419060],
["10691062","Kate P.","http://manualidades-mamapez5.blogspot.com.es/2015/11/using-new-border-dies-for-rudolph-day.html",null,1448441712],
["10691180","Sam / Whisper","http://whisperscards.blogspot.co.uk/2015/11/bedecked-antlers.html",null,1448451999],
["10691284","Susan","http://edenland.ca/?p=831",null,1448456401],
["10691320","Sandma","http://sandmacards.blogspot.co.uk/2015/11/traditional-christmas.html",null,1448457938],
["10691364","Em Fairley","http://www.creative-em.com/2015/11/thanksgiving-suite-part-2.html",null,1448459496],
["10691464","Jane\\'s Journal","http://jane-janesjournal.blogspot.co.uk/2015/11/a-taste-of-winter.html",null,1448462461],
["10691476","Donna","http://roominacupboard.blogspot.co.uk/2015/11/double-acetate-christmas-tag-pink.html",null,1448462761],
["10691592","Sue","http://susanscardcreations.blogspot.co.uk/2015/11/the-last-rudolph-day-of-2015-and-merry.html",null,1448466110],
["10691673","Liz Cavill #3","http://crafty-lizc.blogspot.co.uk/2015/11/crazy-robin.html",null,1448467983],
["10691706","Kath","http://handmadebykath.blogspot.co.uk/2015/11/november-rudolph-day.html",null,1448469650],
["10691726","Hettie","http://hettiecraftcz.blogspot.co.uk/2015/11/nbus-christmas-stampyippee-and-rudolph.html",null,1448470813],
["10692374","Janis in ID","http://herpeacefulgarden.blogspot.com/2015/11/simple-autumny-cards.html",null,1448510534],
["10692523","Megan","http://merrycardcorner.blogspot.com.au/2015/11/away-in-manger.html",null,1448520238],
["10692618","sparkling pink","http://sparklingpinktitta.blogspot.it/2015/11/casa-nuova.html",null,1448534313],
["10692656","treebug","http://www.treebug.org/2015/11/modra-zimska-pokrajina.html",null,1448540908],
["10692687","Vinita Jain","http://madewithlovencare.blogspot.in/2015/11/enjoy-xoxo.html",null,1448544274],
["10692780","Sandy J","http://stampingwriter.blogspot.com/2015/11/celebrating-leftovers.html",null,1448557624],
["10692783","Greta H","http://ggnursecreations.blogspot.com/2015/11/happy-thanksgiving.html",null,1448558045],
["10692840","KT Fit Kitty","http://ktdesigns2013.blogspot.ca/2015/11/deck-halls-birdbrain.html",null,1448564866],
["10692869","Alison C","http://cranberryandeggplant.blogspot.co.uk/2015/11/quadruple-butterflies.html",null,1448568275],
["10692939","Jean","http://wwwmycraftycornerblog.blogspot.co.uk/2015/11/last-rudolph-day-for-this-year.html",null,1448577828],
["10692976","Karen","http://karenscrafting.blogspot.co.uk/2015/11/a-sketchy.html",null,1448586368],
["10693269","Eemeli","http://eemelike.blogspot.fi/2015/11/dt-wags-n-whiskers-167.html",null,1448622467],
["10693277","Carol L","http://ourlittleinspirations.blogspot.com/2015/11/peeled-paint-christmas-trees.html",null,1448623491],
["10693301","Janes Journal","http://jane-janesjournal.blogspot.co.uk/2015/11/late-autumn-walking.html?m=1",null,1448626612],
["10693361","Eve","http://evemariemakes.blogspot.co.uk/2015/11/global-design-project-gdp012-take-2.html",null,1448631646],
["10693393","IKE","http://suzy-ikesworld.blogspot.gr/2015/11/calling-all-kitty-lovers.html",null,1448633613],
["10693425","kbrandy4","http://hazelshandmadecrafts.blogspot.co.uk/2015/11/baby-its-cold-outside.html",null,1448636572],
["10693567","Mrs A. ","http://itsanalienlife.blogspot.co.uk/2015/11/quadruple.html",null,1448647725],
["10693575","kanda ","http://kandacreativemoments.blogspot.co.uk/2015/11/mr-frosty.html",null,1448648344],
["10693620","Kimbo","http://kimboscardsandcats.blogspot.co.uk/2015/11/build-snowman-and-quiz-for-you.html",null,1448652606],
["10693709","Karen #2","http://karenscrafting.blogspot.co.uk/2015/11/christmas-with-spectrum-noir-1.html",null,1448659632],
["10693818","Maura","http://www.splitcoaststampers.com/gallery/photo/2683454?&cat=500&ppuser=146353",null,1448671177],
["10693998","Scrappymo! Yes please for the prize draw","http://scrapsoflifebyscrappymo.blogspot.ca/2015/11/christmas-card-club-robin-and-day-4-of.html",null,1448700094],
["10694011","April","http://www.paperlilyleaf.blogspot.co.uk/2015/11/52-cct-technique-challenge.html",null,1448702743],
["10694015","Hazel","http://craftyhazelnut.blogspot.co.uk/2015/11/using-die-cuts.html",null,1448703530],
[-2, null, null, null]
]);
blenza_dispExpires();
}
catch (blenza_error) {
}